Skip to content

Commit

Permalink
Merge pull request #160 from a-mabe/156-permissions
Browse files Browse the repository at this point in the history
Bump kotlin version, remove unused perms, set dependenciesInfo
  • Loading branch information
a-mabe authored Aug 10, 2024
2 parents cdcd749 + 2f114a5 commit 76cd6aa
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
7 changes: 7 additions & 0 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,13 @@ android {
multiDexEnabled true
}

dependenciesInfo {
// Disables dependency metadata when building APKs.
includeInApk = false
// Disables dependency metadata when building Android App Bundles.
includeInBundle = false
}

signingConfigs {
release {
keyAlias keystoreProperties['keyAlias']
Expand Down
2 changes: 0 additions & 2 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.codepup.workout_timer">
<uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_MEDIA_PLAYBACK" />
<application
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
buildscript {
ext.kotlin_version = '2.0.0'
ext.kotlin_version = '2.0.10'
repositories {
google()
mavenCentral()
Expand Down

0 comments on commit 76cd6aa

Please sign in to comment.