apply plugin: 'com.android.application' android { compileSdkVersion 28 defaultConfig { applicationId "com.termux.x11" minSdkVersion 24 targetSdkVersion 28 versionCode 4 versionName "1.02.01" } signingConfigs { debug { storeFile file('dev_keystore.jks') keyAlias 'alias' storePassword 'xrj45yWGLbsO7W0v' keyPassword 'xrj45yWGLbsO7W0v' } } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } debug { signingConfig signingConfigs.debug } } externalNativeBuild { ndkBuild { path "src/main/jni/Android.mk" } } sourceSets { main { jniLibs.srcDirs 'src/main/jni/prebuilt' } } } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'androidx.appcompat:appcompat:1.3.1' implementation 'androidx.constraintlayout:constraintlayout:1.1.2' testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test:runner:1.0.2' androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' implementation 'androidx.annotation:annotation:1.2.0' implementation 'androidx.drawerlayout:drawerlayout:1.1.1' }