| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
./generate_webapk_template.sh MyApp com.example.myapp https://yourwebsite.com
cp validate_icons.sh MyApp/
cp -r sample_icons/* MyApp/app/src/main/res/
cd MyApp
git init && git add . && git commit -m "Initial commit"
# push to GitHub, Actions will build automaticallyThen just replace the PNGs inside app/src/main/res/mipmap-*/ic_launcher.png with your real icon at the same 5 sizes — everything else is already wired.
Just copy validate_icons.sh into the repo root and add this to .github/workflows/build.yml before your Gradle build step:
- name: Validate icons
run: |
chmod +x ./validate_icons.sh
./validate_icons.sh| Back | FazBrowse Home | New Git URL |