12345678910111213141516171819202122232425262728293031 |
- plugins {
- id 'com.android.library'
- }
- android {
- namespace 'com.norman.webviewup.lib'
- defaultConfig {
- compileSdk 35
- minSdkVersion 21
- targetSdkVersion 33
- consumerProguardFiles "consumer-rules.pro"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- }
- dependencies {
- implementation 'androidx.appcompat:appcompat:1.6.1'
- }
- apply from: "../publish.gradle"
|