1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- 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")
- }
|