119 lines
3.3 KiB
Groovy
119 lines
3.3 KiB
Groovy
def localProperties = new Properties()
|
|
def localPropertiesFile = rootProject.file('local.properties')
|
|
if (localPropertiesFile.exists()) {
|
|
localPropertiesFile.withReader('UTF-8') { reader ->
|
|
localProperties.load(reader)
|
|
}
|
|
}
|
|
|
|
def flutterRoot = localProperties.getProperty('flutter.sdk')
|
|
if (flutterRoot == null) {
|
|
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
|
|
}
|
|
|
|
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
|
|
if (flutterVersionCode == null) {
|
|
flutterVersionCode = '1'
|
|
}
|
|
|
|
def flutterVersionName = localProperties.getProperty('flutter.versionName')
|
|
if (flutterVersionName == null) {
|
|
flutterVersionName = '1.0'
|
|
}
|
|
|
|
apply plugin: 'com.android.application'
|
|
// START: FlutterFire Configuration
|
|
apply plugin: 'com.google.gms.google-services'
|
|
// END: FlutterFire Configuration
|
|
apply plugin: 'kotlin-android'
|
|
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
|
|
|
|
def keystoreProperties = new Properties()
|
|
def keystorePropertiesFile = rootProject.file('key.properties')
|
|
if (keystorePropertiesFile.exists()) {
|
|
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
|
}
|
|
|
|
android {
|
|
namespace "com.didvan.didvanapp"
|
|
compileSdk 34
|
|
ndkVersion "25.1.8937393"
|
|
|
|
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).
|
|
applicationId "com.didvan.didvanapp"
|
|
minSdkVersion 24
|
|
//noinspection ExpiredTargetSdkVersion
|
|
targetSdkVersion 34
|
|
versionCode flutterVersionCode.toInteger()
|
|
versionName flutterVersionName
|
|
}
|
|
|
|
signingConfigs {
|
|
release {
|
|
keyAlias keystoreProperties['keyAlias']
|
|
keyPassword keystoreProperties['keyPassword']
|
|
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
|
|
storePassword keystoreProperties['storePassword']
|
|
}
|
|
}
|
|
buildTypes {
|
|
release {
|
|
signingConfig signingConfigs.release
|
|
minifyEnabled false
|
|
shrinkResources false
|
|
}
|
|
}
|
|
|
|
lintOptions {
|
|
disable 'InvalidPackage'
|
|
checkReleaseBuilds false
|
|
}
|
|
buildFeatures {
|
|
viewBinding true
|
|
}
|
|
|
|
splits {
|
|
//configure apks based on ABI
|
|
abi {
|
|
enable true
|
|
reset()
|
|
include "x86", "x86_64", "armeabi-v7a", "arm64-v8a"
|
|
universalApk true
|
|
|
|
}
|
|
// density {
|
|
// enable true
|
|
// reset()
|
|
// include "mdpi", "hdpi", "xhdpi", "xxhdpi", "xxxhdpi"
|
|
// }
|
|
}
|
|
}
|
|
|
|
flutter {
|
|
source '../..'
|
|
}
|
|
|
|
dependencies {
|
|
// implementation platform('com.google.firebase:firebase-bom:29.1.0')
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.6.10"
|
|
implementation 'com.google.code.gson:gson:2.10.1'
|
|
implementation 'com.squareup.picasso:picasso:2.8'
|
|
implementation "androidx.room:room-runtime:2.2.5"
|
|
implementation "androidx.sqlite:sqlite-framework:2.1.0"
|
|
implementation "androidx.sqlite:sqlite:2.1.0"
|
|
}
|