Added AndroidManifest to gitignore

M committed Jan 12, 2022 at 17:04 UTC 5e172f982f62aead34934d5485db44eaf1223c23
4 files changed +7
.gitignore
+1
@@ -130,3 +130,4 @@ assets/images/app_logo.png
130 /pubspec.yaml
131 /pubspec.lock
132 /android/app.properties
133 +/android/app/src/main/AndroidManifest.xml
android/app/src/main/AndroidManifestBase.xml renamed
scripts/android/app_config.sh
+1
@@ -8,4 +8,5 @@ fi
8 ./app_properties.sh
9 ./app_icon.sh
10 ./pubspec_gen.sh
11 +./manifest.sh
12 ./inject_app_details.sh
\ No newline at end of file
scripts/android/manifest.sh new
+5
@@ -0,0 +1,5 @@
1 +#!/bin/bash
2 +
3 +cd ../..
4 +cp -rf ./android/app/src/main/AndroidManifestBase.xml ./android/app/src/main/AndroidManifest.xml
5 +cd scripts/android
\ No newline at end of file