74 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| import java.util.Properties
 | |
| import java.io.FileInputStream
 | |
| 
 | |
| plugins {
 | |
|     id("com.android.application")
 | |
|     // START: FlutterFire Configuration
 | |
|     id("com.google.gms.google-services")
 | |
|     id("com.google.firebase.crashlytics")
 | |
|     // END: FlutterFire Configuration
 | |
|     id("kotlin-android")
 | |
|     // The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
 | |
|     id("dev.flutter.flutter-gradle-plugin")
 | |
| }
 | |
| 
 | |
| val keystoreProperties = Properties()
 | |
| val keystorePropertiesFile = rootProject.file("key.properties")
 | |
| if (keystorePropertiesFile.exists()) {
 | |
|     keystoreProperties.load(FileInputStream(keystorePropertiesFile))
 | |
| }
 | |
| 
 | |
| android {
 | |
|     namespace = "dev.solsynth.solian"
 | |
|     compileSdk = flutter.compileSdkVersion
 | |
|     ndkVersion = "29.0.13113456"
 | |
| 
 | |
|     compileOptions {
 | |
|         sourceCompatibility = JavaVersion.VERSION_17
 | |
|         targetCompatibility = JavaVersion.VERSION_17
 | |
|     }
 | |
| 
 | |
|     kotlinOptions { jvmTarget = JavaVersion.VERSION_17.toString() }
 | |
| 
 | |
|     defaultConfig {
 | |
|         applicationId = "dev.solsynth.solian"
 | |
|         // You can update the following values to match your application needs.
 | |
|         // For more information, see: https://flutter.dev/to/review-gradle-config.
 | |
|         minSdk = 26
 | |
|         targetSdk = flutter.targetSdkVersion
 | |
|         versionCode = flutter.versionCode
 | |
|         versionName = flutter.versionName
 | |
|     }
 | |
| 
 | |
|     signingConfigs {
 | |
|         create("release") {
 | |
|             keyAlias = keystoreProperties["keyAlias"] as String
 | |
|             keyPassword = keystoreProperties["keyPassword"] as String
 | |
|             storeFile = keystoreProperties["storeFile"]?.let { file(it) }
 | |
|             storePassword = keystoreProperties["storePassword"] as String
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     buildTypes {
 | |
|         release {
 | |
|             signingConfig = signingConfigs.getByName("release")
 | |
| 
 | |
|             isMinifyEnabled = true
 | |
|             proguardFiles(
 | |
|                 getDefaultProguardFile("proguard-android-optimize.txt"),
 | |
|                 "proguard-rules.pro"
 | |
|             )
 | |
|         }
 | |
|     }
 | |
| }
 | |
| 
 | |
| dependencies {
 | |
|     implementation("com.google.android.material:material:1.12.0")
 | |
|     implementation("com.github.bumptech.glide:glide:4.16.0")
 | |
|     implementation("com.squareup.okhttp3:okhttp:5.1.0")
 | |
| }
 | |
| 
 | |
| flutter {
 | |
|     source = "../.."
 | |
| }
 |