3
0
Fork 0
trifid_mobile/android/app/build.gradle

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

90 lines
2.6 KiB
Groovy
Raw Normal View History

2020-07-27 20:43:58 +00:00
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'
apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
android {
compileSdkVersion flutter.compileSdkVersion
ndkVersion flutter.ndkVersion
2020-07-27 20:43:58 +00:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
2020-07-27 20:43:58 +00:00
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
2020-07-27 20:43:58 +00:00
}
defaultConfig {
applicationId "net.defined.mobile_nebula"
minSdkVersion 23 //flutter.minSdkVersion
targetSdkVersion 31 //flutter.targetSdkVersion
2020-07-27 20:43:58 +00:00
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}
signingConfigs {
release {
2022-10-03 20:30:39 +00:00
keyAlias 'key'
storeFile System.getenv('GOOGLE_PLAY_KEYSTORE_PATH') ? file(System.getenv('GOOGLE_PLAY_KEYSTORE_PATH')) : null
keyPassword System.getenv('GOOGLE_PLAY_KEYSTORE_PASSWORD')
storePassword System.getenv('GOOGLE_PLAY_KEYSTORE_PASSWORD')
2020-07-27 20:43:58 +00:00
}
}
buildTypes {
release {
2022-10-03 20:30:39 +00:00
signingConfig signingConfigs.release
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
resValue 'string', 'app_name', '"Nebula"'
}
debug {
resValue 'string', 'app_name', '"Nebula-DEBUG"'
applicationIdSuffix '.debug'
2020-07-27 20:43:58 +00:00
}
}
}
flutter {
source '../..'
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVersion"
implementation "androidx.security:security-crypto:1.0.0"
implementation "androidx.work:work-runtime-ktx:$workVersion"
2020-07-27 20:43:58 +00:00
implementation 'com.google.code.gson:gson:2.8.6'
implementation "com.google.guava:guava:31.0.1-android"
implementation project(':mobileNebula')
2022-10-03 20:30:39 +00:00
}