Showing
3 changed files
with
5 additions
and
4 deletions
@@ -26,7 +26,7 @@ apply plugin: 'kotlin-android' | @@ -26,7 +26,7 @@ apply plugin: 'kotlin-android' | ||
26 | apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" | 26 | apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" |
27 | 27 | ||
28 | android { | 28 | android { |
29 | - compileSdkVersion 30 | 29 | + compileSdkVersion 31 |
30 | 30 | ||
31 | sourceSets { | 31 | sourceSets { |
32 | main.java.srcDirs += 'src/main/kotlin' | 32 | main.java.srcDirs += 'src/main/kotlin' |
@@ -36,7 +36,7 @@ android { | @@ -36,7 +36,7 @@ android { | ||
36 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). | 36 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). |
37 | applicationId "com.example.example" | 37 | applicationId "com.example.example" |
38 | minSdkVersion 16 | 38 | minSdkVersion 16 |
39 | - targetSdkVersion 30 | 39 | + targetSdkVersion 31 |
40 | versionCode flutterVersionCode.toInteger() | 40 | versionCode flutterVersionCode.toInteger() |
41 | versionName flutterVersionName | 41 | versionName flutterVersionName |
42 | } | 42 | } |
@@ -9,7 +9,8 @@ | @@ -9,7 +9,8 @@ | ||
9 | android:theme="@style/LaunchTheme" | 9 | android:theme="@style/LaunchTheme" |
10 | android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" | 10 | android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" |
11 | android:hardwareAccelerated="true" | 11 | android:hardwareAccelerated="true" |
12 | - android:windowSoftInputMode="adjustResize"> | 12 | + android:windowSoftInputMode="adjustResize" |
13 | + android:exported="true"> | ||
13 | <!-- Specifies an Android theme to apply to this Activity as soon as | 14 | <!-- Specifies an Android theme to apply to this Activity as soon as |
14 | the Android process has started. This theme is visible to the user | 15 | the Android process has started. This theme is visible to the user |
15 | while the Flutter UI initializes. After that, this theme continues | 16 | while the Flutter UI initializes. After that, this theme continues |
-
Please register or login to post a comment