mirror of
https://github.com/yggdrasil-network/crispa-android.git
synced 2024-11-08 19:41:01 +00:00
69 lines
2.1 KiB
Groovy
69 lines
2.1 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
android {
|
|
compileSdkVersion 29
|
|
defaultConfig {
|
|
applicationId "io.github.chronosx88.yggdrasil"
|
|
minSdkVersion 21
|
|
targetSdkVersion 29
|
|
versionCode 3
|
|
versionName "1.3"
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
project.ext.set("archivesBaseName", project.getParent().name+"-"+versionName)
|
|
}
|
|
signingConfigs {
|
|
release {
|
|
storeFile file(KEYSTORE_FILE_PATH)
|
|
storePassword System.getenv("KEYSTORE_PASSWORD")
|
|
keyAlias System.getenv("KEY_ALIAS")
|
|
keyPassword System.getenv("KEY_PASSWORD")
|
|
}
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
signingConfig signingConfigs.release
|
|
}
|
|
}
|
|
ndkVersion "21.2.6472646"
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = '1.8'
|
|
}
|
|
}
|
|
|
|
task ndkBuild(type: Exec) {
|
|
def rootDir = project.rootDir
|
|
workingDir = new File(rootDir,"yggdrasil")
|
|
commandLine 'make'
|
|
}
|
|
|
|
gradle.projectsEvaluated {
|
|
tasks.compileDebugKotlin.dependsOn(ndkBuild)
|
|
}
|
|
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation project(path: ':yggdrasil')
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.1.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
|
implementation "androidx.preference:preference-ktx:1.1.1"
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.7'
|
|
implementation 'com.google.android.material:material:1.3.0-alpha01'
|
|
implementation 'com.google.code.gson:gson:2.8.6'
|
|
implementation 'com.hbb20:ccp:2.4.0'
|
|
|
|
testImplementation 'junit:junit:4.12'
|
|
androidTestImplementation 'androidx.test:runner:1.2.0'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
|
|
} |