Skip to content

Commit

Permalink
Increase target version to API 33
Browse files Browse the repository at this point in the history
  • Loading branch information
jlduragos committed Nov 10, 2023
1 parent 227d969 commit 417fff7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ androidGitVersion {
}

android {
compileSdkVersion 32
compileSdkVersion 33
buildToolsVersion "30.0.3"

defaultConfig {
applicationId "org.newlogic.smartscanner"
minSdkVersion 21
targetSdkVersion 32
targetSdkVersion 33
versionName androidGitVersion.name()
versionCode androidGitVersion.code()

Expand Down
2 changes: 2 additions & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
android:maxSdkVersion="28"
tools:ignore="ScopedStorage" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"
android:maxSdkVersion="28"
tools:ignore="CoarseFineLocation" />

<uses-feature
Expand Down
4 changes: 2 additions & 2 deletions core-lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ apply plugin: 'kotlin-android'
apply plugin: 'kotlin-parcelize'

android {
compileSdkVersion 32
compileSdkVersion 33
buildToolsVersion "30.0.3"

defaultConfig {
minSdkVersion 21
targetSdkVersion 32
targetSdkVersion 33
versionName androidGitVersion.name()
versionCode androidGitVersion.code()

Expand Down

0 comments on commit 417fff7

Please sign in to comment.