File tree Expand file tree Collapse file tree 4 files changed +1754
-4
lines changed Expand file tree Collapse file tree 4 files changed +1754
-4
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,4 @@ lib/scripts/node_modules
5757lib /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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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"
You can’t perform that action at this time.
0 commit comments