File tree Expand file tree Collapse file tree 13 files changed +117
-121
lines changed
com/flutterformbuilderecosystem/example
dev/danvickmiller/flutterformbuilder/example Expand file tree Collapse file tree 13 files changed +117
-121
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: "a14f74ff3a1cbd521163c5f03d68113d50af93d3 "
7+ revision: "35c388afb57ef061d06a39b537336c87e0e3d1b1 "
88 channel: "stable"
99
1010project_type: app
@@ -13,11 +13,11 @@ project_type: app
1313migration:
1414 platforms:
1515 - platform: root
16- create_revision: a14f74ff3a1cbd521163c5f03d68113d50af93d3
17- base_revision: a14f74ff3a1cbd521163c5f03d68113d50af93d3
18- - platform: web
19- create_revision: a14f74ff3a1cbd521163c5f03d68113d50af93d3
20- base_revision: a14f74ff3a1cbd521163c5f03d68113d50af93d3
16+ create_revision: 35c388afb57ef061d06a39b537336c87e0e3d1b1
17+ base_revision: 35c388afb57ef061d06a39b537336c87e0e3d1b1
18+ - platform: android
19+ create_revision: 35c388afb57ef061d06a39b537336c87e0e3d1b1
20+ base_revision: 35c388afb57ef061d06a39b537336c87e0e3d1b1
2121
2222 # User provided section
2323
Original file line number Diff line number Diff line change @@ -5,9 +5,10 @@ gradle-wrapper.jar
55/gradlew.bat
66/local.properties
77GeneratedPluginRegistrant.java
8+ .cxx /
89
910# Remember to never publicly share your keystore.
10- # See https://flutter.dev/docs/deployment/android# reference-the- keystore-from-the-app
11+ # See https://flutter.dev/to/ reference-keystore
1112key.properties
1213** /* .keystore
1314** /* .jks
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ plugins {
2+ id(" com.android.application" )
3+ id(" kotlin-android" )
4+ // The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
5+ id(" dev.flutter.flutter-gradle-plugin" )
6+ }
7+
8+ android {
9+ namespace = " com.flutterformbuilderecosystem.example"
10+ compileSdk = 35
11+ ndkVersion = flutter.ndkVersion
12+
13+ compileOptions {
14+ sourceCompatibility = JavaVersion .VERSION_11
15+ targetCompatibility = JavaVersion .VERSION_11
16+ }
17+
18+ kotlinOptions {
19+ jvmTarget = JavaVersion .VERSION_11 .toString()
20+ }
21+
22+ defaultConfig {
23+ // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
24+ applicationId = " com.flutterformbuilderecosystem.example"
25+ // You can update the following values to match your application needs.
26+ // For more information, see: https://flutter.dev/to/review-gradle-config.
27+ minSdk = flutter.minSdkVersion
28+ targetSdk = 35
29+ versionCode = flutter.versionCode
30+ versionName = flutter.versionName
31+ }
32+
33+ buildTypes {
34+ release {
35+ // TODO: Add your own signing config for the release build.
36+ // Signing with the debug keys for now, so `flutter run --release` works.
37+ signingConfig = signingConfigs.getByName(" debug" )
38+ }
39+ }
40+ }
41+
42+ flutter {
43+ source = " ../.."
44+ }
Original file line number Diff line number Diff line change 77 android : name =" .MainActivity"
88 android : exported =" true"
99 android : launchMode =" singleTop"
10+ android : taskAffinity =" "
1011 android : theme =" @style/LaunchTheme"
1112 android : configChanges =" orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
1213 android : hardwareAccelerated =" true"
3031 android : name =" flutterEmbedding"
3132 android : value =" 2" />
3233 </application >
34+ <!-- Required to query activities that can process text, see:
35+ https://developer.android.com/training/package-visibility and
36+ https://developer.android.com/reference/android/content/Intent#ACTION_PROCESS_TEXT.
37+
38+ In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. -->
39+ <queries >
40+ <intent >
41+ <action android : name =" android.intent.action.PROCESS_TEXT" />
42+ <data android : mimeType =" text/plain" />
43+ </intent >
44+ </queries >
3345</manifest >
Original file line number Diff line number Diff line change 1+ package com.flutterformbuilderecosystem.example
2+
3+ import io.flutter.embedding.android.FlutterActivity
4+
5+ class MainActivity : FlutterActivity ()
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ allprojects {
2+ repositories {
3+ google()
4+ mavenCentral()
5+ }
6+ }
7+
8+ val newBuildDir: Directory = rootProject.layout.buildDirectory.dir(" ../../build" ).get()
9+ rootProject.layout.buildDirectory.value(newBuildDir)
10+
11+ subprojects {
12+ val newSubprojectBuildDir: Directory = newBuildDir.dir(project.name)
13+ project.layout.buildDirectory.value(newSubprojectBuildDir)
14+ }
15+ subprojects {
16+ project.evaluationDependsOn(" :app" )
17+ }
18+
19+ tasks.register<Delete >(" clean" ) {
20+ delete(rootProject.layout.buildDirectory)
21+ }
Original file line number Diff line number Diff line change 1- org.gradle.jvmargs =-Xmx1536M
1+ org.gradle.jvmargs =-Xmx8G -XX: MaxMetaspaceSize =4G -XX: ReservedCodeCacheSize =512m -XX:+HeapDumpOnOutOfMemoryError
22android.useAndroidX =true
33android.enableJetifier =true
You can’t perform that action at this time.
0 commit comments