group 'com.example.argon2_ffi' version '1.0-SNAPSHOT' buildscript { ext.kotlin_version = '1.3.50' repositories { google() jcenter() } dependencies { classpath 'com.android.tools.build:gradle:3.5.0' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" } } rootProject.allprojects { repositories { google() jcenter() } } apply plugin: 'com.android.library' apply plugin: 'kotlin-android' android { compileSdkVersion 28 ndkVersion System.getProperty("design.codeux.ndkVersion", "21.0.6113669") sourceSets { main.java.srcDirs += 'src/main/kotlin' } defaultConfig { minSdkVersion 16 testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } lintOptions { disable 'InvalidPackage' } externalNativeBuild { // Encapsulates your CMake build configurations. cmake { version "3.10.2" // f-droid uses 3.7, let's hope it works this way. //version "3.6.0+" // Provides a relative path to your CMake build script. path "CMakeLists.txt" } } } dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" }