12345678910111213141516171819202122232425262728293031323334353637383940 |
- apply plugin: 'com.android.library'
- android {
- compileSdk 32
- defaultConfig {
- minSdkVersion 18
- targetSdkVersion 32
- versionCode 20241221
- versionName '2.0.24.1221'
- consumerProguardFiles 'proguard-rules.pro'
- buildConfigField 'boolean', 'MEDIA_DEBUG', 'false'
- }
- buildTypes {
- debug {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'library.pro'
- }
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'library.pro'
- }
- }
- compileOptions {
- sourceCompatibility = '1.8'
- targetCompatibility = '1.8'
- }
- }
- dependencies {
- implementation fileTree(include: ['*.jar'], dir: 'libs')
- implementation 'androidx.appcompat:appcompat:1.3.0'
- //implementation "com.android.support:appcompat-v7:26.1.0"
- //implementation "com.android.support:support-v4:26.1.0"
- }
|