Skip to content

Commit 28fd1b5

Browse files
alemartSiegeLord
authored andcommitted
Android: update the targetSdk to 33
1 parent d5535f4 commit 28fd1b5

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

android/gradle_project/allegro/build.gradle

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

33
android {
4-
compileSdkVersion 26
4+
compileSdkVersion 33
55
defaultConfig {
66
minSdkVersion 15
7-
targetSdkVersion 26
7+
targetSdkVersion 33
88
versionCode 1
99
versionName "1.0"
1010
}

android/gradle_project/app/build.gradle

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

33
android {
4-
compileSdkVersion 26
4+
compileSdkVersion 33
55
defaultConfig {
66
applicationId "org.liballeg.${APP_ID}"
77
minSdkVersion 15
8-
targetSdkVersion 26
8+
targetSdkVersion 33
99
versionCode 1
1010
versionName "1.0"
1111
}

android/gradle_project/app/src/main/AndroidManifest.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@
33
package="org.liballeg.app"
44
android:versionCode="1"
55
android:versionName="1.0">
6-
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
6+
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
77
<application android:label="${APP_ID}">
88
<activity android:name=".MainActivity"
99
android:launchMode="singleTask"
1010
android:screenOrientation="unspecified"
11-
android:configChanges="screenLayout|uiMode|orientation|screenSize">
11+
android:configChanges="screenLayout|uiMode|orientation|screenSize"
12+
android:exported="true">
1213
<intent-filter>
1314
<action android:name="android.intent.action.MAIN" />
1415
<category android:name="android.intent.category.LAUNCHER" />

0 commit comments

Comments
 (0)