Skip to content

Commit 0d412cd

Browse files
added imp files
1 parent b562340 commit 0d412cd

File tree

4 files changed

+1754
-4
lines changed

4 files changed

+1754
-4
lines changed

.gitignore

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,4 @@ lib/scripts/node_modules
5757
lib/scripts/package-lock.json
5858

5959
# Other potential generated files
60-
lib/scripts/package.jsonandroid/app/build.gradle
61-
android/gradle/wrapper/gradle-wrapper.properties
62-
android/settings.gradle
63-
pubspec.lock
60+
lib/scripts/package.json
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
zipStoreBase=GRADLE_USER_HOME
4+
zipStorePath=wrapper/dists
5+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-all.zip

android/settings.gradle

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
pluginManagement {
2+
def flutterSdkPath = {
3+
def properties = new Properties()
4+
file("local.properties").withInputStream { properties.load(it) }
5+
def flutterSdkPath = properties.getProperty("flutter.sdk")
6+
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
7+
return flutterSdkPath
8+
}
9+
settings.ext.flutterSdkPath = flutterSdkPath()
10+
11+
includeBuild("${settings.ext.flutterSdkPath}/packages/flutter_tools/gradle")
12+
13+
repositories {
14+
google()
15+
mavenCentral()
16+
gradlePluginPortal()
17+
}
18+
}
19+
20+
plugins {
21+
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
22+
id "com.android.application" version "8.2.1" apply false
23+
// START: FlutterFire Configuration
24+
id "com.google.gms.google-services" version "4.3.15" apply false
25+
// END: FlutterFire Configuration
26+
id "org.jetbrains.kotlin.android" version "2.0.10" apply false
27+
}
28+
29+
include ":app"

0 commit comments

Comments
 (0)