plugins { id 'com.android.library' id 'kotlin-android' } android { namespace 'com.kunzisoft.encrypt' compileSdkVersion 34 ndkVersion "21.4.7075529" defaultConfig { minSdkVersion 15 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" }