You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build.gradle 579B

123456789101112131415161718192021
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion rootProject.ext.compileSdkVersion
  4. buildToolsVersion rootProject.ext.buildToolsVersion
  5. resourcePrefix "umeng_"
  6. defaultConfig {
  7. minSdkVersion 8
  8. targetSdkVersion rootProject.ext.targetSdkVersion
  9. // 混淆配置
  10. consumerProguardFiles 'proguard-umeng.pro'
  11. }
  12. }
  13. dependencies {
  14. // 依赖 libs 目录下所有 Jar 包
  15. implementation fileTree(include: ['*.jar'], dir: 'libs')
  16. implementation 'androidx.appcompat:appcompat:1.1.0-alpha04'
  17. }