This commit is contained in:
Dwi Swandhana
2026-07-22 16:33:42 +07:00
parent e04d43dfdf
commit 213270ede1
11 changed files with 889 additions and 37 deletions

No files matched your search

+24 -5
View File
@@ -1,11 +1,21 @@
import java.util.Properties
plugins {
id("com.android.application")
// The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
id("dev.flutter.flutter-gradle-plugin")
}
val keystoreProperties =
Properties().apply {
val keystorePropertiesFile = rootProject.file("key.properties")
if (keystorePropertiesFile.exists()) {
keystorePropertiesFile.inputStream().use { load(it) }
}
}
android {
namespace = "com.example.mylis"
namespace = "com.duidev.mylis"
compileSdk = flutter.compileSdkVersion
ndkVersion = flutter.ndkVersion
@@ -16,7 +26,7 @@ android {
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId = "com.example.mylis"
applicationId = "com.duidev.mylis"
// 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
@@ -25,11 +35,20 @@ android {
versionName = flutter.versionName
}
signingConfigs {
create("release") {
keyAlias = keystoreProperties["keyAlias"] as String?
keyPassword = keystoreProperties["keyPassword"] as String?
storeFile = (keystoreProperties["storeFile"] as String?)?.let {
file(it)
}
storePassword = keystoreProperties["storePassword"] as String?
}
}
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")
signingConfig = signingConfigs.getByName("release")
}
}
}
+29
View File
@@ -0,0 +1,29 @@
{
"project_info": {
"project_number": "732589737888",
"project_id": "mylis-a4983",
"storage_bucket": "mylis-a4983.firebasestorage.app"
},
"client": [
{
"client_info": {
"mobilesdk_app_id": "1:732589737888:android:3f782e07e62ace55a446c5",
"android_client_info": {
"package_name": "com.duidev.mylis"
}
},
"oauth_client": [],
"api_key": [
{
"current_key": "AIzaSyAibwJgxVnkVOOIGsjbf2SpW_isJOFTtAg"
}
],
"services": {
"appinvite_service": {
"other_platform_oauth_client": []
}
}
}
],
"configuration_version": "1"
}
@@ -1,4 +1,4 @@
package com.example.mylis
package com.duidev.mylis
import io.flutter.embedding.android.FlutterActivity
File diff suppressed because one or more lines are too long