Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Android 13+ #1865

Merged
merged 2 commits into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,18 @@ android {
enabled = true
}

flavorDimensions "version"
productFlavors {
standard {
dimension "version"
applicationIdSuffix ""
versionNameSuffix ""
}
gplay {
dimension "version"
applicationIdSuffix ".android"
versionNameSuffix "-android"
}
// beta {
// applicationId "com.money.manager.ex.beta"
// versionName "latestBeta"
Expand Down
12 changes: 6 additions & 6 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE"
tools:ignore="ScopedStorage" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<!-- sync authenticator -->
<!--<uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS" />-->
Expand All @@ -33,16 +34,15 @@
<!--<uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />-->
<!--<uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" />-->

<!-- SMS Interface -->
<!--<uses-permission android:name="android.permission.RECEIVE_SMS" />-->
<!--<uses-permission android:name="android.permission.READ_SMS" />-->

<!-- Fingerprint Interface -->
<uses-permission android:name="android.permission.USE_FINGERPRINT" />
<uses-permission android:name="android.permission.USE_BIOMETRIC" />

<!-- for compatibility of Job Scheduler with Android versions prior to 8. -->
<uses-permission android:name="android.permission.WAKE_LOCK" />

<!-- new post notification management -->
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />

<supports-screens
android:largeScreens="true"
android:xlargeScreens="true" />
Expand Down
Loading