build.gradle 592 B

1234567891011121314151617181920212223242526
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 28
  4. defaultConfig {
  5. minSdkVersion 14
  6. targetSdkVersion 28
  7. }
  8. buildTypes {
  9. release {
  10. minifyEnabled false
  11. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  12. }
  13. }
  14. }
  15. dependencies {
  16. implementation fileTree(dir: 'libs', include: ['*.jar'])
  17. testImplementation 'junit:junit:4.12'
  18. api 'com.umeng.umsdk:common:2.0.2'
  19. implementation 'com.umeng.umsdk:utdid:1.1.5.3'
  20. implementation 'com.umeng.umsdk:push:6.0.1'
  21. }