Files
KeePassDX/crypto/build.gradle
Dev-ClayP 43f7e08548 Update build.gradle
changed minsdk to 19
2025-07-09 10:40:13 -04:00

47 lines
888 B
Groovy

plugins {
id 'com.android.library'
id 'kotlin-android'
}
android {
namespace 'com.kunzisoft.encrypt'
compileSdkVersion 34
ndkVersion "21.4.7075529"
defaultConfig {
minSdkVersion 19
targetSdkVersion 34
multiDexEnabled true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
}
}
externalNativeBuild {
cmake {
path "src/main/jni/CMakeLists.txt"
}
}
compileOptions {
targetCompatibility JavaVersion.VERSION_17
sourceCompatibility JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = "17"
}
}
dependencies {
// Crypto
implementation 'org.bouncycastle:bcprov-jdk15on:1.70'
testImplementation "androidx.test:runner:$android_test_version"
}