41 lines
829 B
Groovy
41 lines
829 B
Groovy
plugins {
|
|
id 'com.android.application'
|
|
}
|
|
|
|
android {
|
|
namespace 'com.arkj.app'
|
|
compileSdk 34
|
|
|
|
defaultConfig {
|
|
applicationId com.arkj.app
|
|
minSdk 24
|
|
targetSdk 34
|
|
versionCode 1
|
|
versionName 1.0
|
|
}
|
|
|
|
signingConfigs {
|
|
release {
|
|
storeFile file('/root/.android/release.keystore')
|
|
storePassword System.getProperty('KEYSTORE_PASSWORD')
|
|
keyAlias System.getProperty('KEY_ALIAS')
|
|
keyPassword System.getProperty('KEY_PASSWORD')
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
signingConfig signingConfigs.release
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
}
|