Initial commit: Minimal Flutter timer with push notifications

This commit is contained in:
Developer
2026-01-09 00:20:38 +08:00
commit 2a2f718a4b
26 changed files with 1050 additions and 0 deletions

26
android/settings.gradle Normal file
View 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')