📦 Package Rename: com.sage.sage → com.github.mystiatech.sage ✅ Changes: - Updated applicationId in build.gradle.kts - Updated namespace in build.gradle.kts - Moved MainActivity.kt to new package structure - Updated google-services.json placeholder - Updated FIREBASE_SETUP.md with correct package name - Updated README_FIREBASE.md with correct package name 🎯 Reason: - GitHub-based package names don't require domain ownership - Standard convention: com.github.username.appname - Ready for Firebase setup without needing website registration 📋 Firebase Setup: When setting up Firebase, use package name: com.github.mystiatech.sage ✅ Build Status: - APK builds successfully (63.3MB) - All tests passing - Ready for Firebase configuration 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
45 lines
1.3 KiB
Plaintext
45 lines
1.3 KiB
Plaintext
plugins {
|
|
id("com.android.application")
|
|
id("kotlin-android")
|
|
// The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
|
|
id("dev.flutter.flutter-gradle-plugin")
|
|
id("com.google.gms.google-services")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.github.mystiatech.sage"
|
|
compileSdk = flutter.compileSdkVersion
|
|
ndkVersion = flutter.ndkVersion
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = JavaVersion.VERSION_11.toString()
|
|
}
|
|
|
|
defaultConfig {
|
|
applicationId = "com.github.mystiatech.sage"
|
|
// You can update the following values to match your application needs.
|
|
// For more information, see: https://flutter.dev/to/review-gradle-config.
|
|
minSdk = flutter.minSdkVersion // Firebase requires minSdk 21
|
|
targetSdk = flutter.targetSdkVersion
|
|
versionCode = flutter.versionCode
|
|
versionName = flutter.versionName
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
// TODO: Add your own signing config for the release build.
|
|
// Signing with the debug keys for now, so `flutter run --release` works.
|
|
signingConfig = signingConfigs.getByName("debug")
|
|
}
|
|
}
|
|
}
|
|
|
|
flutter {
|
|
source = "../.."
|
|
}
|