-
-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Gallery: Strip all files permission for google play release (does not…
… pass review) Signed-off-by: IacobIonut01 <[email protected]>
- Loading branch information
1 parent
0654424
commit c8513ae
Showing
7 changed files
with
39 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -97,7 +97,9 @@ jobs: | |
run: git config --global user.email "[email protected]" && | ||
git config --global user.name "IacobIonut01" && | ||
git fetch https://github.com/IacobIonut01/Gallery.git main_play && | ||
git cherry-pick e63cd751baa1dc733222d5a3ce135cb7bc52868b | ||
git cherry-pick e63cd751baa1dc733222d5a3ce135cb7bc52868b && | ||
chmod +x ./strip_allfiles_permission.sh && ./strip_allfiles_permission.sh && | ||
echo ALL_FILES_ACCESS=false > ./app.properties | ||
- name: Build Google Play Bundle | ||
run: ./gradlew bundleGplay | ||
env: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
/build | ||
/release | ||
/release | ||
*.jks |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
sed -n '/<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE"\/>/!p' app/src/main/AndroidManifest.xml > app/src/main/AndroidManifest2.xml | ||
mv app/src/main/AndroidManifest2.xml app/src/main/AndroidManifest.xml |