Initial commit: Minimal Flutter timer with push notifications
This commit is contained in:
26
android/settings.gradle
Normal file
26
android/settings.gradle
Normal file
@@ -0,0 +1,26 @@
|
||||
pluginManagement {
|
||||
def flutterSdkPath = System.env.FLUTTER_SDK ?: System.properties['flutter.sdk']
|
||||
assert flutterSdkPath != null, "FLUTTER_SDK not set. Run: export FLUTTER_SDK=/path/to/flutter"
|
||||
|
||||
includeBuild("$flutterSdkPath/packages/flutter_tools/gradle")
|
||||
|
||||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
gradlePluginPortal()
|
||||
}
|
||||
}
|
||||
|
||||
dependencyResolutionManagement {
|
||||
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
|
||||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
maven {
|
||||
url "https://storage.googleapis.com/download.flutter.io"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
rootProject.name = 'minimal_timer'
|
||||
include(':app')
|
||||
Reference in New Issue
Block a user