File tree Expand file tree Collapse file tree 9 files changed +29
-25
lines changed Expand file tree Collapse file tree 9 files changed +29
-25
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: 84a1e904f44f9b0e9c4510138010edcc653163f8
8
8
channel: stable
9
9
10
10
project_type: app
@@ -13,11 +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
16
+ create_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
17
+ base_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
18
+ - platform: android
19
+ create_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
20
+ base_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
21
21
22
22
# User provided section
23
23
Original file line number Diff line number Diff line change @@ -26,7 +26,9 @@ apply plugin: 'kotlin-android'
26
26
apply from : " $flutterRoot /packages/flutter_tools/gradle/flutter.gradle"
27
27
28
28
android {
29
- compileSdkVersion 33
29
+ namespace " dev.formbuilderfilepicker.example"
30
+ compileSdkVersion flutter. compileSdkVersion
31
+ ndkVersion flutter. ndkVersion
30
32
31
33
compileOptions {
32
34
sourceCompatibility JavaVersion . VERSION_1_8
@@ -44,8 +46,10 @@ android {
44
46
defaultConfig {
45
47
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
46
48
applicationId " dev.formbuilderfilepicker.example"
47
- minSdkVersion 16
48
- targetSdkVersion 33
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.
51
+ minSdkVersion flutter. minSdkVersion
52
+ targetSdkVersion flutter. targetSdkVersion
49
53
versionCode flutterVersionCode. toInteger()
50
54
versionName flutterVersionName
51
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.formbuilderfilepicker.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.formbuilderfilepicker.example" >
3
- <application
1
+ <manifest xmlns : android =" http://schemas.android.com/apk/res/android" >
2
+ <application
4
3
android : label =" example"
5
4
android : name =" ${applicationName}"
6
5
android : icon =" @mipmap/ic_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.
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.
Original file line number Diff line number Diff line change 1
- <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
2
- package = " dev.formbuilderfilepicker.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:7.1.2 '
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
}
@@ -21,9 +21,11 @@ allprojects {
21
21
rootProject. buildDir = ' ../build'
22
22
subprojects {
23
23
project. buildDir = " ${ rootProject.buildDir} /${ project.name} "
24
+ }
25
+ subprojects {
24
26
project. evaluationDependsOn(' :app' )
25
27
}
26
28
27
- task clean ( type : Delete ) {
29
+ tasks . register( " clean " , Delete ) {
28
30
delete rootProject. buildDir
29
31
}
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-7.4 -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