plugins { id 'com.android.application' id 'org.jetbrains.kotlin.android' } android { compileSdk 33 ndkVersion '25.1.8937393' defaultConfig { applicationId = 'com.mindbox.mudx' minSdkVersion 26 targetSdkVersion 33 ndk { //noinspection ChromeOsAbiSupport abiFilters 'arm64-v8a' } } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } packagingOptions{ doNotStrip "**/*.so" } namespace 'com.mindbox.mudx' } dependencies {}