Skip to content

Commit

Permalink
Target SDK 33 in example module (#25)
Browse files Browse the repository at this point in the history
* Target SDK 33 in example module

* Add Coarse Location permission in Example AndroidManifest
  • Loading branch information
ArnasSmicius authored Aug 22, 2023
1 parent 4b70a0d commit e9c6138
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions buildSrc/src/main/kotlin/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ object Versions {
const val VIEW_BINDING_DELEGATE = "1.5.9"

const val COMPILE_SDK_VERSION = 33
const val TARGET_SDK_VERSION = 33
const val MIN_SDK_VERSION = 21

private const val MAJOR = 0
Expand Down
1 change: 1 addition & 0 deletions example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ android {
defaultConfig {
applicationId = "com.vinted.coper.example"
minSdk = Versions.MIN_SDK_VERSION
targetSdk = Versions.TARGET_SDK_VERSION

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
1 change: 1 addition & 0 deletions example/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
android:required="false" />

<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

<application
Expand Down

0 comments on commit e9c6138

Please sign in to comment.