File tree Expand file tree Collapse file tree 8 files changed +35
-23
lines changed
src/main/kotlin/dev/jaffaketchup/fmtc/demo Expand file tree Collapse file tree 8 files changed +35
-23
lines changed Original file line number Diff line number Diff line change 44# This file should be version controlled and should not be manually edited.
55
66version:
7- revision: "3e493a3e4d0a5c99fa7da51faae354e95a9a1abe "
8- channel: "beta "
7+ revision: "b45fa18946ecc2d9b4009952c636ba7e2ffbb787 "
8+ channel: "stable "
99
1010project_type: app
1111
1212# Tracks metadata for the flutter migrate command
1313migration:
1414 platforms:
1515 - platform: root
16- create_revision: 3e493a3e4d0a5c99fa7da51faae354e95a9a1abe
17- base_revision: 3e493a3e4d0a5c99fa7da51faae354e95a9a1abe
16+ create_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
17+ base_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
1818 - platform: android
19- create_revision: 3e493a3e4d0a5c99fa7da51faae354e95a9a1abe
20- base_revision: 3e493a3e4d0a5c99fa7da51faae354e95a9a1abe
19+ create_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
20+ base_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
21+ - platform: ios
22+ create_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
23+ base_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
24+ - platform: web
25+ create_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
26+ base_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
27+ - platform: windows
28+ create_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
29+ base_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
2130
2231 # User provided section
2332
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ gradle-wrapper.jar
55/gradlew.bat
66/local.properties
77GeneratedPluginRegistrant.java
8+ .cxx /
89
910# Remember to never publicly share your keystore.
1011# See https://flutter.dev/to/reference-keystore
Original file line number Diff line number Diff line change @@ -8,16 +8,15 @@ plugins {
88android {
99 namespace = " dev.jaffaketchup.fmtc.demo"
1010 compileSdk = flutter.compileSdkVersion
11- // ndkVersion = flutter.ndkVersion
12- ndkVersion = " 27.0.12077973"
11+ ndkVersion = flutter.ndkVersion
1312
1413 compileOptions {
15- sourceCompatibility = JavaVersion .VERSION_1_8
16- targetCompatibility = JavaVersion .VERSION_1_8
14+ sourceCompatibility = JavaVersion .VERSION_17
15+ targetCompatibility = JavaVersion .VERSION_17
1716 }
1817
1918 kotlinOptions {
20- jvmTarget = JavaVersion .VERSION_1_8 .toString()
19+ jvmTarget = JavaVersion .VERSION_17 .toString()
2120 }
2221
2322 defaultConfig {
File renamed without changes.
Original file line number Diff line number Diff line change @@ -5,7 +5,10 @@ allprojects {
55 }
66}
77
8- val newBuildDir: Directory = rootProject.layout.buildDirectory.dir(" ../../build" ).get()
8+ val newBuildDir: Directory =
9+ rootProject.layout.buildDirectory
10+ .dir(" ../../build" )
11+ .get()
912rootProject.layout.buildDirectory.value(newBuildDir)
1013
1114subprojects {
Original file line number Diff line number Diff line change 11org.gradle.jvmargs =-Xmx8G -XX:MaxMetaspaceSize =4G -XX:ReservedCodeCacheSize =512m -XX:+HeapDumpOnOutOfMemoryError
22android.useAndroidX =true
3- android.enableJetifier =true
Original file line number Diff line number Diff line change @@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
22distributionPath =wrapper/dists
33zipStoreBase =GRADLE_USER_HOME
44zipStorePath =wrapper/dists
5- distributionUrl =https\://services.gradle.org/distributions/gradle-8.10.2 -all.zip
5+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.14 -all.zip
Original file line number Diff line number Diff line change 11pluginManagement {
2- val flutterSdkPath = run {
3- val properties = java.util.Properties ()
4- file(" local.properties" ).inputStream().use { properties.load(it) }
5- val flutterSdkPath = properties.getProperty(" flutter.sdk" )
6- require(flutterSdkPath != null ) { " flutter.sdk not set in local.properties" }
7- flutterSdkPath
8- }
2+ val flutterSdkPath =
3+ run {
4+ val properties = java.util.Properties ()
5+ file(" local.properties" ).inputStream().use { properties.load(it) }
6+ val flutterSdkPath = properties.getProperty(" flutter.sdk" )
7+ require(flutterSdkPath != null ) { " flutter.sdk not set in local.properties" }
8+ flutterSdkPath
9+ }
910
1011 includeBuild(" $flutterSdkPath /packages/flutter_tools/gradle" )
1112
@@ -18,8 +19,8 @@ pluginManagement {
1819
1920plugins {
2021 id(" dev.flutter.flutter-plugin-loader" ) version " 1.0.0"
21- id(" com.android.application" ) version " 8.7.0 " apply false
22- id(" org.jetbrains.kotlin.android" ) version " 1.8.22 " apply false
22+ id(" com.android.application" ) version " 8.11.1 " apply false
23+ id(" org.jetbrains.kotlin.android" ) version " 2.2.20 " apply false
2324}
2425
2526include(" :app" )
You can’t perform that action at this time.
0 commit comments