1234567891011121314151617181920212223242526 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 28
- defaultConfig {
- minSdkVersion 14
- targetSdkVersion 28
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- testImplementation 'junit:junit:4.12'
- api 'com.umeng.umsdk:common:2.0.2'
- implementation 'com.umeng.umsdk:utdid:1.1.5.3'
- implementation 'com.umeng.umsdk:push:6.0.1'
- }
|