mirror of
https://github.com/amnesica/KryptEY.git
synced 2024-10-01 01:05:58 -04:00
34 lines
1002 B
Groovy
34 lines
1002 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 33
|
|
buildToolsVersion '33.0.0'
|
|
defaultConfig {
|
|
applicationId "com.amnesica.kryptey"
|
|
minSdkVersion 26
|
|
targetSdkVersion 33
|
|
versionCode 24
|
|
versionName "0.1.5"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
debuggable false
|
|
renderscriptDebuggable false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_11
|
|
targetCompatibility JavaVersion.VERSION_11
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.signal:libsignal-android:0.21.1'
|
|
implementation 'com.fasterxml.jackson.core:jackson-databind:2.14.1'
|
|
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.14.1'
|
|
implementation 'com.google.protobuf:protobuf-javalite:3.21.12'
|
|
testImplementation "junit:junit:4.13.2"
|
|
}
|