12345678910111213141516171819202122232425262728 |
- apply plugin: 'java'
- repositories {
- google()
- jcenter()
- maven { url 'https://developer.huawei.com/repo/' }
- }
- dependencies {
- implementation 'com.huawei.hms:base:6.3.0.301'
- implementation 'com.huawei.hms:hwid:6.4.0.300'
- implementation 'com.huawei.hms:iap:6.3.0.300'
- implementation 'com.huawei.hms:game:6.2.0.301'
- implementation 'com.huawei.hms:hianalytics:6.4.1.302'
- implementation 'com.huawei.hms:ads-identifier:3.4.39.302'
- implementation 'com.huawei.hms:ads-installreferrer:3.4.39.302'
- // compile ('com.android.support:support-v4:28.0.0')
- }
- task copyToLibs(type: Copy) {
- from configurations.runtimeClasspath
- into 'libs'
- }
|