Skip to content

Commit

Permalink
Merge pull request #380 from onaio/upgrade-max-sdk-version
Browse files Browse the repository at this point in the history
Set max SDK version for storage permissions to 32.
  • Loading branch information
dubdabasoduba authored Oct 16, 2024
2 parents e5e4489 + 4a40fb1 commit ddc4dfb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ buildscript {
apply plugin: 'realm-android'
apply plugin: 'maven-publish'

version '0.10.7-SNAPSHOT'
version '0.10.8-SNAPSHOT'

project.version = this.version

Expand Down Expand Up @@ -122,7 +122,7 @@ dependencies { configuration ->
// Comment the line below when creating releases - The line is for development of the library & utils
implementation (project(":utils")) {
// Uncomment the line below when creating releases
//implementation('io.ona.kujaku:utils:0.10.7-SNAPSHOT') {
//implementation('io.ona.kujaku:utils:0.10.8-SNAPSHOT') {
transitive = true;
exclude group: 'com.mapbox.mapboxsdk', module: 'mapbox-android-sdk'
exclude group: 'com.android.support', module: 'support-v4'
Expand Down
2 changes: 1 addition & 1 deletion library/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" android:maxSdkVersion="32"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="28" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="32" />
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
Expand Down
2 changes: 1 addition & 1 deletion utils/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
apply plugin: 'maven-publish'
apply plugin: 'jacoco'

version '0.10.7-SNAPSHOT'
version '0.10.8-SNAPSHOT'
project.version = this.version


Expand Down

0 comments on commit ddc4dfb

Please sign in to comment.