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_1_8 sourceCompatibility JavaVersion.VERSION_1_8 } kotlinOptions { jvmTarget = "1.8" } } dependencies { // Crypto implementation 'org.bouncycastle:bcpkix-jdk18on:1.78.1' testImplementation "androidx.test:runner:$android_test_version" }