2019-06-30 04:01:25 +02:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 28
|
|
|
|
defaultConfig {
|
2019-08-10 21:15:25 +02:00
|
|
|
applicationId "com.termux.x11"
|
2019-11-10 13:26:33 +01:00
|
|
|
minSdkVersion 24
|
2021-10-03 12:33:10 +02:00
|
|
|
//noinspection OldTargetApi
|
2019-06-30 04:01:25 +02:00
|
|
|
targetSdkVersion 28
|
2021-10-03 12:33:10 +02:00
|
|
|
versionCode 9
|
|
|
|
versionName "1.02.06"
|
2019-06-30 04:01:25 +02:00
|
|
|
}
|
2020-03-16 12:51:59 +01:00
|
|
|
|
|
|
|
signingConfigs {
|
|
|
|
debug {
|
|
|
|
storeFile file('dev_keystore.jks')
|
|
|
|
keyAlias 'alias'
|
|
|
|
storePassword 'xrj45yWGLbsO7W0v'
|
|
|
|
keyPassword 'xrj45yWGLbsO7W0v'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-30 04:01:25 +02:00
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
2020-03-16 12:51:59 +01:00
|
|
|
|
|
|
|
debug {
|
|
|
|
signingConfig signingConfigs.debug
|
|
|
|
}
|
2019-06-30 04:01:25 +02:00
|
|
|
}
|
2020-03-16 12:51:59 +01:00
|
|
|
|
2021-10-03 12:33:10 +02:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
|
2019-06-30 04:01:25 +02:00
|
|
|
externalNativeBuild {
|
|
|
|
ndkBuild {
|
|
|
|
path "src/main/jni/Android.mk"
|
|
|
|
}
|
|
|
|
}
|
2020-03-16 12:51:59 +01:00
|
|
|
|
2019-07-08 17:22:08 +02:00
|
|
|
sourceSets {
|
|
|
|
main {
|
|
|
|
jniLibs.srcDirs 'src/main/jni/prebuilt'
|
|
|
|
}
|
|
|
|
}
|
2019-06-30 04:01:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
2021-07-27 18:15:22 +02:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.3.1'
|
2022-01-14 01:21:20 +01:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
|
2021-10-03 12:33:10 +02:00
|
|
|
implementation project(path: ':common')
|
2021-07-24 09:36:12 +02:00
|
|
|
testImplementation 'junit:junit:4.13.2'
|
2021-07-28 03:57:55 +02:00
|
|
|
androidTestImplementation 'androidx.test:runner:1.4.0'
|
2021-07-27 18:15:26 +02:00
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
|
2021-11-04 01:23:31 +01:00
|
|
|
implementation 'androidx.annotation:annotation:1.3.0'
|
2021-07-27 04:39:12 +02:00
|
|
|
implementation 'androidx.drawerlayout:drawerlayout:1.1.1'
|
2019-06-30 04:01:25 +02:00
|
|
|
}
|