File tree Expand file tree Collapse file tree 10 files changed +42
-39
lines changed Expand file tree Collapse file tree 10 files changed +42
-39
lines changed Original file line number Diff line number Diff line change 4
4
# This file should be version controlled.
5
5
6
6
version:
7
- revision: f72efea43c3013323d1b95cff571f3c1caa37583
7
+ revision: f468f3366c26a5092eb964a230ce7892fda8f2f8
8
8
channel: stable
9
9
10
10
project_type: app
@@ -13,14 +13,11 @@ project_type: app
13
13
migration:
14
14
platforms:
15
15
- platform: root
16
- create_revision: f72efea43c3013323d1b95cff571f3c1caa37583
17
- base_revision: f72efea43c3013323d1b95cff571f3c1caa37583
18
- - platform: macos
19
- create_revision: f72efea43c3013323d1b95cff571f3c1caa37583
20
- base_revision: f72efea43c3013323d1b95cff571f3c1caa37583
21
- - platform: linux
22
- create_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
23
- base_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
16
+ create_revision: f468f3366c26a5092eb964a230ce7892fda8f2f8
17
+ base_revision: f468f3366c26a5092eb964a230ce7892fda8f2f8
18
+ - platform: android
19
+ create_revision: f468f3366c26a5092eb964a230ce7892fda8f2f8
20
+ base_revision: f468f3366c26a5092eb964a230ce7892fda8f2f8
24
21
25
22
# User provided section
26
23
Original file line number Diff line number Diff line change @@ -9,3 +9,5 @@ GeneratedPluginRegistrant.java
9
9
# Remember to never publicly share your keystore.
10
10
# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
11
11
key.properties
12
+ ** /* .keystore
13
+ ** /* .jks
Original file line number Diff line number Diff line change @@ -26,7 +26,18 @@ apply plugin: 'kotlin-android'
26
26
apply from : " $flutterRoot /packages/flutter_tools/gradle/flutter.gradle"
27
27
28
28
android {
29
- compileSdkVersion 31
29
+ namespace " dev.danvickmiller.flutterformbuilder.example"
30
+ compileSdkVersion 33
31
+ ndkVersion flutter. ndkVersion
32
+
33
+ compileOptions {
34
+ sourceCompatibility JavaVersion . VERSION_1_8
35
+ targetCompatibility JavaVersion . VERSION_1_8
36
+ }
37
+
38
+ kotlinOptions {
39
+ jvmTarget = ' 1.8'
40
+ }
30
41
31
42
sourceSets {
32
43
main. java. srcDirs + = ' src/main/kotlin'
@@ -35,8 +46,10 @@ android {
35
46
defaultConfig {
36
47
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
37
48
applicationId " dev.danvickmiller.flutterformbuilder.example"
49
+ // You can update the following values to match your application needs.
50
+ // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
38
51
minSdkVersion 16
39
- targetSdkVersion 30
52
+ targetSdkVersion 33
40
53
versionCode flutterVersionCode. toInteger()
41
54
versionName flutterVersionName
42
55
}
Original file line number Diff line number Diff line change 1
- <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
2
- package = " dev.danvickmiller.flutterformbuilder.example " >
3
- <!-- Flutter needs it to communicate with the running application
1
+ <manifest xmlns : android =" http://schemas.android.com/apk/res/android" >
2
+ <!-- The INTERNET permission is required for development. Specifically,
3
+ the Flutter tool needs it to communicate with the running application
4
4
to allow setting breakpoints, to provide hot reload, etc.
5
5
-->
6
6
<uses-permission android : name =" android.permission.INTERNET" />
Original file line number Diff line number Diff line change 1
- <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
2
- package = " dev.danvickmiller.flutterformbuilder.example " >
3
- < application
4
- android : label = " FormBuilder Example "
1
+ <manifest xmlns : android =" http://schemas.android.com/apk/res/android" >
2
+ < application
3
+ android : label = " example "
4
+ android : name = " ${applicationName} "
5
5
android : icon =" @mipmap/ic_launcher" >
6
6
<activity
7
7
android : name =" .MainActivity"
8
+ android : exported =" true"
8
9
android : launchMode =" singleTop"
9
10
android : theme =" @style/LaunchTheme"
10
11
android : configChanges =" orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
18
19
android : name =" io.flutter.embedding.android.NormalTheme"
19
20
android : resource =" @style/NormalTheme"
20
21
/>
21
- <!-- Displays an Android View that continues showing the launch screen
22
- Drawable until Flutter paints its first frame, then this splash
23
- screen fades out. A splash screen is useful to avoid any visual
24
- gap between the end of Android's launch screen and the painting of
25
- Flutter's first frame. -->
26
- <meta-data
27
- android : name =" io.flutter.embedding.android.SplashScreenDrawable"
28
- android : resource =" @drawable/launch_background"
29
- />
30
22
<intent-filter >
31
23
<action android : name =" android.intent.action.MAIN" />
32
24
<category android : name =" android.intent.category.LAUNCHER" />
Original file line number Diff line number Diff line change 3
3
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is on -->
4
4
<style name =" LaunchTheme" parent =" @android:style/Theme.Black.NoTitleBar" >
5
5
<!-- Show a splash screen on the activity. Automatically removed when
6
- Flutter draws its first frame -->
6
+ the Flutter engine draws its first frame -->
7
7
<item name =" android:windowBackground" >@drawable/launch_background</item >
8
8
</style >
9
9
<!-- Theme applied to the Android Window as soon as the process has started.
10
10
This theme determines the color of the Android Window while your
11
11
Flutter UI initializes, as well as behind your Flutter UI while its
12
12
running.
13
-
13
+
14
14
This Theme is only used starting with V2 of Flutter's Android embedding. -->
15
15
<style name =" NormalTheme" parent =" @android:style/Theme.Black.NoTitleBar" >
16
16
<item name =" android:windowBackground" >?android:colorBackground</item >
Original file line number Diff line number Diff line change 3
3
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->
4
4
<style name =" LaunchTheme" parent =" @android:style/Theme.Light.NoTitleBar" >
5
5
<!-- Show a splash screen on the activity. Automatically removed when
6
- Flutter draws its first frame -->
6
+ the Flutter engine draws its first frame -->
7
7
<item name =" android:windowBackground" >@drawable/launch_background</item >
8
8
</style >
9
9
<!-- Theme applied to the Android Window as soon as the process has started.
10
10
This theme determines the color of the Android Window while your
11
11
Flutter UI initializes, as well as behind your Flutter UI while its
12
12
running.
13
-
13
+
14
14
This Theme is only used starting with V2 of Flutter's Android embedding. -->
15
15
<style name =" NormalTheme" parent =" @android:style/Theme.Light.NoTitleBar" >
16
16
<item name =" android:windowBackground" >?android:colorBackground</item >
Original file line number Diff line number Diff line change 1
- <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
2
- package = " dev.danvickmiller.flutterformbuilder.example " >
3
- <!-- Flutter needs it to communicate with the running application
1
+ <manifest xmlns : android =" http://schemas.android.com/apk/res/android" >
2
+ <!-- The INTERNET permission is required for development. Specifically,
3
+ the Flutter tool needs it to communicate with the running application
4
4
to allow setting breakpoints, to provide hot reload, etc.
5
5
-->
6
6
<uses-permission android : name =" android.permission.INTERNET" />
Original file line number Diff line number Diff line change 1
1
buildscript {
2
- ext. kotlin_version = ' 1.6 .10'
2
+ ext. kotlin_version = ' 1.7 .10'
3
3
repositories {
4
4
google()
5
5
mavenCentral()
6
6
}
7
7
8
8
dependencies {
9
- classpath ' com.android.tools.build:gradle:4.1 .0'
9
+ classpath ' com.android.tools.build:gradle:7.3 .0'
10
10
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
11
11
}
12
12
}
@@ -24,6 +24,6 @@ subprojects {
24
24
project. evaluationDependsOn(' :app' )
25
25
}
26
26
27
- task clean ( type : Delete ) {
27
+ tasks . register( " clean " , Delete ) {
28
28
delete rootProject. buildDir
29
29
}
Original file line number Diff line number Diff line change 1
- # Fri Jun 23 08:50:38 CEST 2017
2
1
distributionBase =GRADLE_USER_HOME
3
2
distributionPath =wrapper/dists
4
3
zipStoreBase =GRADLE_USER_HOME
5
4
zipStorePath =wrapper/dists
6
- distributionUrl =https\://services.gradle.org/distributions/gradle-6.7 -all.zip
5
+ distributionUrl =https\://services.gradle.org/distributions/gradle-7.5 -all.zip
You can’t perform that action at this time.
0 commit comments