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 4
4
# This file should be version controlled and should not be manually edited.
5
5
6
6
version:
7
- revision: "a14f74ff3a1cbd521163c5f03d68113d50af93d3 "
7
+ revision: "35c388afb57ef061d06a39b537336c87e0e3d1b1 "
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: 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
21
21
22
22
# User provided section
23
23
Original file line number Diff line number Diff line change @@ -5,9 +5,10 @@ gradle-wrapper.jar
5
5
/gradlew.bat
6
6
/local.properties
7
7
GeneratedPluginRegistrant.java
8
+ .cxx /
8
9
9
10
# 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
11
12
key.properties
12
13
** /* .keystore
13
14
** /* .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 7
7
android : name =" .MainActivity"
8
8
android : exported =" true"
9
9
android : launchMode =" singleTop"
10
+ android : taskAffinity =" "
10
11
android : theme =" @style/LaunchTheme"
11
12
android : configChanges =" orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
12
13
android : hardwareAccelerated =" true"
30
31
android : name =" flutterEmbedding"
31
32
android : value =" 2" />
32
33
</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 >
33
45
</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
2
2
android.useAndroidX =true
3
3
android.enableJetifier =true
You can’t perform that action at this time.
0 commit comments