Added AndroidManifest to gitignore

This commit is contained in:
M 2022-01-12 17:04:10 +02:00
parent 91ed52003b
commit 5e172f982f
4 changed files with 7 additions and 0 deletions

1
.gitignore vendored
View file

@ -130,3 +130,4 @@ assets/images/app_logo.png
/pubspec.yaml /pubspec.yaml
/pubspec.lock /pubspec.lock
/android/app.properties /android/app.properties
/android/app/src/main/AndroidManifest.xml

View file

@ -8,4 +8,5 @@ fi
./app_properties.sh ./app_properties.sh
./app_icon.sh ./app_icon.sh
./pubspec_gen.sh ./pubspec_gen.sh
./manifest.sh
./inject_app_details.sh ./inject_app_details.sh

5
scripts/android/manifest.sh Executable file
View file

@ -0,0 +1,5 @@
#!/bin/bash
cd ../..
cp -rf ./android/app/src/main/AndroidManifestBase.xml ./android/app/src/main/AndroidManifest.xml
cd scripts/android