Skip to content

Commit 3d55303

Browse files
committed
feat(example): support for Android 34
1 parent e7af722 commit 3d55303

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

example/android/app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ apply plugin: 'kotlin-android'
2626
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
2727

2828
android {
29-
compileSdkVersion 33
29+
compileSdkVersion 34
3030

3131
sourceSets {
3232
main.java.srcDirs += 'src/main/kotlin'
@@ -35,7 +35,7 @@ android {
3535
defaultConfig {
3636
applicationId "video.api.flutter.uploader.example"
3737
minSdkVersion 21
38-
targetSdkVersion 30
38+
targetSdkVersion 34
3939
versionCode flutterVersionCode.toInteger()
4040
versionName flutterVersionName
4141
}

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

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<activity
88
android:name=".MainActivity"
99
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
10+
android:exported="true"
1011
android:hardwareAccelerated="true"
1112
android:launchMode="singleTop"
1213
android:theme="@style/LaunchTheme"

0 commit comments

Comments
 (0)