KryptEY/app/build.gradle

30 lines
873 B
Groovy
Raw Normal View History

2023-05-14 07:04:47 -04:00
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'
}
}
}
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"
}