build.gradle 678 B

12345678910111213141516171819202122232425262728
  1. apply plugin: 'java'
  2. repositories {
  3. google()
  4. jcenter()
  5. maven { url 'https://developer.huawei.com/repo/' }
  6. }
  7. dependencies {
  8. implementation 'com.huawei.hms:base:6.3.0.301'
  9. implementation 'com.huawei.hms:hwid:6.4.0.300'
  10. implementation 'com.huawei.hms:iap:6.3.0.300'
  11. implementation 'com.huawei.hms:game:6.2.0.301'
  12. implementation 'com.huawei.hms:hianalytics:6.4.1.302'
  13. implementation 'com.huawei.hms:ads-identifier:3.4.39.302'
  14. implementation 'com.huawei.hms:ads-installreferrer:3.4.39.302'
  15. // compile ('com.android.support:support-v4:28.0.0')
  16. }
  17. task copyToLibs(type: Copy) {
  18. from configurations.runtimeClasspath
  19. into 'libs'
  20. }