crispa-android/app/build.gradle

99 lines
3.3 KiB
Groovy
Raw Normal View History

2019-08-20 12:36:59 +00:00
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
def acraSecretsPropertiesFile = rootProject.file("acra.properties")
def acraSecretsProperties = new Properties()
acraSecretsProperties.load(new FileInputStream(acraSecretsPropertiesFile))
2019-08-20 12:36:59 +00:00
android {
2022-11-25 13:57:52 +00:00
compileSdkVersion 33
2019-08-20 12:36:59 +00:00
defaultConfig {
applicationId "io.github.chronosx88.yggdrasil"
minSdkVersion 15
2022-11-25 13:57:52 +00:00
targetSdkVersion 33
2021-06-19 14:54:10 +00:00
versionCode 40
2022-11-25 13:57:52 +00:00
versionName "2.1.4"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2020-10-14 13:05:06 +00:00
setProperty("archivesBaseName", project.getParent().name+"-"+versionName)
buildConfigField("String", "ACRA_BACKEND_URL", acraSecretsProperties['ACRA_BACKEND_URL'])
buildConfigField("String", "ACRA_LOGIN", acraSecretsProperties['ACRA_LOGIN'])
buildConfigField("String", "ACRA_PASSWORD", acraSecretsProperties['ACRA_PASSWORD'])
multiDexEnabled true
2019-08-20 12:36:59 +00:00
}
2020-06-09 11:05:12 +00:00
signingConfigs {
2020-06-09 11:19:30 +00:00
release {
storeFile file(KEYSTORE_FILE_PATH)
2020-06-09 11:05:12 +00:00
storePassword System.getenv("KEYSTORE_PASSWORD")
keyAlias System.getenv("KEY_ALIAS")
keyPassword System.getenv("KEY_PASSWORD")
}
}
2019-08-20 12:36:59 +00:00
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
2020-06-09 11:21:53 +00:00
signingConfig signingConfigs.release
2019-08-20 12:36:59 +00:00
}
}
ndkVersion "21.2.6472646"
2020-06-20 20:40:56 +00:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
2020-08-07 06:52:59 +00:00
lintOptions {
checkReleaseBuilds false
// Or, if you prefer, you can continue to check for errors in release builds,
// but continue the build even when errors are found:
abortOnError false
}
2020-12-06 14:51:20 +00:00
packagingOptions {
exclude 'META-INF/LICENSE'
exclude 'META-INF/NOTICE'
}
2021-05-11 09:16:36 +00:00
buildFeatures {
viewBinding true
}
2019-08-20 12:36:59 +00:00
}
2020-08-03 13:10:29 +00:00
task ndkBuild(type: Exec) {
def rootDir = project.rootDir
workingDir = new File(rootDir,"yggdrasil")
commandLine 'make'
}
gradle.projectsEvaluated {
tasks.compileDebugKotlin.dependsOn(ndkBuild)
}
2019-08-20 12:36:59 +00:00
dependencies {
2021-06-14 21:13:05 +00:00
implementation 'ch.acra:acra-http:5.9.6'
implementation 'ch.acra:acra-dialog:5.9.6'
2019-08-20 12:36:59 +00:00
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation project(path: ':yggdrasil')
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.preference:preference-ktx:1.2.0'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2'
implementation 'com.google.android.material:material:1.8.0-alpha03'
implementation 'com.google.code.gson:gson:2.9.0'
2020-06-20 20:40:56 +00:00
implementation 'com.hbb20:ccp:2.4.0'
2020-12-06 14:51:20 +00:00
implementation 'com.vincentbrison.openlibraries.android:dualcache:3.1.1'
implementation 'com.vincentbrison.openlibraries.android:dualcache-jsonserializer:3.1.1'
implementation 'com.android.support:multidex:1.0.3'
2022-05-16 11:42:18 +00:00
implementation 'androidx.work:work-runtime-ktx:2.7.1'
testImplementation 'junit:junit:4.13.2'
2021-09-08 12:20:08 +00:00
androidTestImplementation 'androidx.test:runner:1.4.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}