Skip to content

Commit

Permalink
Merge branch 'refs/heads/accrescent'
Browse files Browse the repository at this point in the history
  • Loading branch information
moneytoo committed Sep 11, 2024
2 parents 02384d2 + 6de9429 commit 3ef9bed
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ android {
amazon {
dimension "distribution"
}
accrescent {
dimension "distribution"
}
full {
dimension "feature"
}
Expand All @@ -50,7 +53,7 @@ android {
}
variantFilter { variant ->
def names = variant.flavors*.name
if ((names.contains("legacy") || names.contains("lite")) && names.contains("amazon")) {
if ((names.contains("legacy") || names.contains("lite")) && (names.contains("amazon") || names.contains("accrescent"))) {
setIgnore(true)
}
}
Expand Down
7 changes: 7 additions & 0 deletions app/src/accrescent/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">

<uses-permission android:name="android.permission.WRITE_SETTINGS" tools:node="remove" />

</manifest>

0 comments on commit 3ef9bed

Please sign in to comment.