improve README.md
This commit is contained in:
parent
f694b3a607
commit
09444ce35a
1 changed files with 40 additions and 0 deletions
40
README.md
40
README.md
|
@ -39,3 +39,43 @@ It does so via:
|
|||
adb install -r app/result/app.apk
|
||||
```
|
||||
|
||||
## files and purpose
|
||||
|
||||
Upon `clone` of this repo the `app` folder is setup with these files:
|
||||
```
|
||||
# The (GNU) Makefile which...
|
||||
app/Makefile
|
||||
# ... has recipes that call scripts in folder....
|
||||
app/.Makefile.scripts
|
||||
# .. which creates an `app-config.sh`, a file to keep
|
||||
# the configuration (app name,lable,api-levels,permissions etc)...
|
||||
app/.Makefile.scripts/make--app-config.sh
|
||||
# .. which creates an `AndroidManifest.xml`
|
||||
app/.Makefile.scripts/make--AndroidManifest.xml
|
||||
# .. which creates an `AppActivity.java` file (which just setup a Webview and loads `assets/index.html`)
|
||||
app/.Makefile.scripts/make--AppActivity.java.sh
|
||||
# .. which installs the necessary Android SDK in the correct versions
|
||||
app/.Makefile.scripts/make--android-sdk.sh
|
||||
app/assets
|
||||
# the index.html file
|
||||
app/assets/index.html
|
||||
app/res
|
||||
app/res/drawable
|
||||
# the icon of the app
|
||||
app/res/drawable/appicon.xml
|
||||
```
|
||||
|
||||
Upon further `./build-android-app.sh` execution more folders will appear
|
||||
```
|
||||
# a folder in which the Android-sdk stuff (installed via sdkmanager) is stored
|
||||
android-sdk
|
||||
# folders used during build...
|
||||
# ... for temporary files
|
||||
bin/
|
||||
obj/
|
||||
result/
|
||||
# app configuration resulting from text whiptail menu
|
||||
app-config.sh
|
||||
# the Manifest file as resulted from data from app-config.sh
|
||||
AndroidManifest.xml
|
||||
```
|
||||
|
|
Loading…
Add table
Reference in a new issue