File tree Expand file tree Collapse file tree 10 files changed +60
-36
lines changed Expand file tree Collapse file tree 10 files changed +60
-36
lines changed Original file line number Diff line number Diff line change 1
1
# This file tracks properties of this Flutter project.
2
2
# Used by Flutter tool to assess capabilities and perform upgrades etc.
3
3
#
4
- # This file should be version controlled and should not be manually edited .
4
+ # This file should be version controlled.
5
5
6
6
version:
7
- revision: adc687823a831bbebe28bdccfac1a628ca621513
7
+ revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
8
8
channel: stable
9
9
10
10
project_type: app
11
+
12
+ # Tracks metadata for the flutter migrate command
13
+ migration:
14
+ platforms:
15
+ - platform: root
16
+ create_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
17
+ base_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
18
+ - platform: android
19
+ create_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
20
+ base_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
21
+
22
+ # User provided section
23
+
24
+ # List of Local paths (relative to this file) that should be
25
+ # ignored by the migrate tool.
26
+ #
27
+ # Files that are not part of the templates will be ignored by default.
28
+ unmanaged_files:
29
+ - 'lib/main.dart'
30
+ - 'ios/Runner.xcodeproj/project.pbxproj'
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.danvickmiler.formbuilderextrafields.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.danvickmiler.formbuilderextrafields.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.danvickmiler.formbuilderextrafields.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.danvickmiler.formbuilderextrafields.example " >
3
- < application
4
- android : label = " Extra Fields 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.danvickmiler.formbuilderextrafields.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
- jcenter ()
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
}
13
13
14
14
allprojects {
15
15
repositories {
16
16
google()
17
- jcenter ()
17
+ mavenCentral ()
18
18
}
19
19
}
20
20
21
21
rootProject. buildDir = ' ../build'
22
22
subprojects {
23
23
project. buildDir = " ${ rootProject.buildDir} /${ project.name} "
24
- }
25
- subprojects {
26
24
project. evaluationDependsOn(' :app' )
27
25
}
28
26
29
- task clean ( type : Delete ) {
27
+ tasks . register( " clean " , Delete ) {
30
28
delete rootProject. buildDir
31
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