plugins { id 'com.android.application' } android { compileSdkVersion 30 defaultConfig { applicationId "com.norman.webviewup.demo" minSdkVersion 21 targetSdkVersion 30 versionCode 1 versionName "1.0" ndk { abiFilters "armeabi-v7a","x86" // abiFilters "arm64-v8a", "armeabi-v7a" } } buildTypes { release { minifyEnabled true shrinkResources true proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } debug { debuggable true minifyEnabled false } } sourceSets { main { jniLibs.srcDirs = ["libs"] } } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } } dependencies { implementation 'androidx.appcompat:appcompat:1.3.0' implementation project(":core") }