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.

123456789101112131415161718192021222324252627282930313233343536373839
  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' : 'wxd35706cc9f46114c',
  17. // 微信 AppKey
  18. 'WX_APPKEY' : '0c8c7cf831dd135a32b3e395ea459b5a'
  19. ]
  20. }
  21. }
  22. dependencies {
  23. // 友盟基础组件:https://bintray.com/umsdk/release/common
  24. implementation 'com.umeng.umsdk:common:2.2.5'
  25. // 友盟统计:https://bintray.com/umsdk/release/analytics
  26. implementation 'com.umeng.umsdk:analytics:8.1.6'
  27. // 友盟社会化:https://bintray.com/umsdk/release/share-core
  28. //implementation 'com.umeng.umsdk:share-core:6.9.8'
  29. // QQ SDK:https://bintray.com/umsdk/release/share-qq
  30. //implementation 'com.umeng.umsdk:share-qq:6.9.8'
  31. // 微信 SDK:https://bintray.com/umsdk/release/share-wx
  32. //implementation 'com.umeng.umsdk:share-wx:6.9.8'
  33. }