KeePassDX/crypto/build.gradle
2023-06-17 19:01:35 +02:00

47 lines
1,020 B
Groovy

plugins {
id 'com.android.library'
id 'kotlin-android'
}
android {
namespace 'com.kunzisoft.encrypt'
compileSdkVersion 33
buildToolsVersion "33.0.2"
ndkVersion "21.4.7075529"
defaultConfig {
minSdkVersion 15
targetSdkVersion 33
multiDexEnabled true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
externalNativeBuild {
cmake {
path "src/main/jni/CMakeLists.txt"
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
}
dependencies {
// Crypto
implementation 'org.bouncycastle:bcprov-jdk15on:1.70'
testImplementation "androidx.test:runner:$android_test_version"
}