Skip to content

Commit 690252c

Browse files
committed
Update targetSdkVersion to 36 and minSdkVersion to 21
1 parent d3027b3 commit 690252c

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

android/hello_sdl_android/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 34
4+
compileSdkVersion 36
55
defaultConfig {
66
applicationId "com.sdl.hellosdlandroid"
7-
minSdkVersion 16
8-
targetSdkVersion 34
7+
minSdkVersion 21
8+
targetSdkVersion 36
99
versionCode 1
1010
versionName "1.0"
1111
resValue "string", "app_name", "Hello Sdl Android"

android/sdl_android/build.gradle

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
apply plugin: 'com.android.library'
22

33
android {
4-
compileSdkVersion 34
4+
compileSdkVersion 36
55
defaultConfig {
6-
minSdkVersion 16
7-
targetSdkVersion 34
8-
versionCode 26
9-
versionName new File(projectDir.path, ('/../../VERSION')).text.trim()
6+
minSdkVersion 21
7+
targetSdkVersion 36
108
buildConfigField "String", "VERSION_NAME", '\"' + versionName + '\"'
119
resValue "string", "SDL_LIB_VERSION", '\"' + versionName + '\"'
1210
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'

android/sdl_android/src/androidTest/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
22

3-
<uses-sdk android:minSdkVersion="16" />
3+
<uses-sdk android:minSdkVersion="21" />
44
<uses-permission android:name="android.permission.BLUETOOTH" />
55
<!-- Required to pair Bluetooth devices -->
66
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />

0 commit comments

Comments
 (0)