2023-09-08 11:50:21 +02:00
|
|
|
plugins {
|
|
|
|
id "com.android.application"
|
|
|
|
id "kotlin-android"
|
|
|
|
id "dev.flutter.flutter-gradle-plugin"
|
|
|
|
}
|
|
|
|
|
|
|
|
def localProperties = new Properties()
|
|
|
|
def localPropertiesFile = rootProject.file('local.properties')
|
|
|
|
if (localPropertiesFile.exists()) {
|
|
|
|
localPropertiesFile.withReader('UTF-8') { reader ->
|
|
|
|
localProperties.load(reader)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
|
|
|
|
if (flutterVersionCode == null) {
|
|
|
|
flutterVersionCode = '1'
|
|
|
|
}
|
|
|
|
|
|
|
|
def flutterVersionName = localProperties.getProperty('flutter.versionName')
|
|
|
|
if (flutterVersionName == null) {
|
|
|
|
flutterVersionName = '1.0'
|
|
|
|
}
|
|
|
|
|
2023-09-08 12:02:31 +02:00
|
|
|
def keystoreProperties = new Properties()
|
|
|
|
def keystorePropertiesFile = rootProject.file('key.properties')
|
|
|
|
if (keystorePropertiesFile.exists()) {
|
|
|
|
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
|
|
|
}
|
|
|
|
|
2023-09-08 11:50:21 +02:00
|
|
|
android {
|
|
|
|
namespace "cafe.caras.prasule"
|
2023-11-21 20:23:14 +01:00
|
|
|
compileSdkVersion 34
|
2023-09-08 11:50:21 +02:00
|
|
|
ndkVersion flutter.ndkVersion
|
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = '1.8'
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
|
|
}
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
|
2024-07-18 18:31:19 +02:00
|
|
|
applicationId "wtf.caras.prasule"
|
2023-09-08 11:50:21 +02:00
|
|
|
// You can update the following values to match your application needs.
|
|
|
|
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
|
2024-01-22 14:41:16 +01:00
|
|
|
minSdkVersion 21
|
2024-07-16 20:34:41 +02:00
|
|
|
targetSdkVersion 34
|
2023-09-08 11:50:21 +02:00
|
|
|
versionCode flutterVersionCode.toInteger()
|
|
|
|
versionName flutterVersionName
|
|
|
|
}
|
|
|
|
|
2023-09-08 12:02:31 +02:00
|
|
|
signingConfigs {
|
|
|
|
release {
|
|
|
|
keyAlias keystoreProperties['keyAlias']
|
|
|
|
keyPassword keystoreProperties['keyPassword']
|
|
|
|
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
|
|
|
|
storePassword keystoreProperties['storePassword']
|
|
|
|
}
|
|
|
|
}
|
2023-09-08 11:50:21 +02:00
|
|
|
buildTypes {
|
|
|
|
release {
|
2023-09-08 12:02:31 +02:00
|
|
|
signingConfig signingConfigs.release
|
2023-09-08 11:50:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
flutter {
|
|
|
|
source '../..'
|
|
|
|
}
|
|
|
|
|
2024-01-22 14:41:16 +01:00
|
|
|
dependencies {
|
|
|
|
implementation 'com.android.support:multidex:1.0.3'
|
|
|
|
}
|