apply plugin: 'com.android.application' android { compileSdkVersion 24 buildToolsVersion "24.0.1" dependencies { compile 'com.android.support:support-annotations:24.2.0' compile "com.android.support:support-v4:24.2.0" } defaultConfig { applicationId "com.termux" minSdkVersion 21 targetSdkVersion 24 versionCode 42 versionName "0.42" ndk { abiFilters 'x86', 'x86_64', 'armeabi-v7a', 'arm64-v8a' } } buildTypes { release { minifyEnabled true shrinkResources true proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } externalNativeBuild { cmake { path "CMakeLists.txt" } } } dependencies { testCompile 'junit:junit:4.12' }