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 715B

123456789101112131415161718192021222324
  1. apply plugin: 'com.android.library'
  2. apply from: "../config.gradle"
  3. android {
  4. defaultConfig {
  5. // 混淆配置
  6. consumerProguardFiles 'proguard-umeng.pro'
  7. // 清单占位符
  8. manifestPlaceholders = [
  9. // 友盟 AppKey
  10. "UMENG_APPKEY" : "5cb16d93570df399fd0014e2",
  11. // QQ AppId
  12. "QQ_APPID" : "101828096",
  13. // QQ AppKey
  14. "QQ_APPKEY" : "9dfd3300c3aa3c4596a07796c64914b2",
  15. // 微信 AppId
  16. "WX_APPID" : "wxdc1e388c3822c80b",
  17. // 微信 AppKey
  18. "WX_APPKEY" : "3baf1193c85774b3fd9d18447d76cab0"
  19. ]
  20. }
  21. }