1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- plugins {
- id 'com.android.library'
- id 'kotlin-android'
- }
- android {
- compileSdk rootProject.ext.android.compileSdk
- buildToolsVersion rootProject.ext.android.buildToolsVersion
- defaultConfig {
- minSdk rootProject.ext.android.minSdk
- targetSdk rootProject.ext.android.targetSdk
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles 'proguard-rules.pro'
- }
- }
- buildFeatures {
- buildConfig false
- }
- lintOptions {
- abortOnError false
- }
- compileOptions {
- kotlinOptions.freeCompilerArgs += ['-module-name', "cn.yyxx.eyuangame.channel.huawei"]
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- kotlinOptions {
- jvmTarget = "1.8"
- }
- }
- dependencies {
- api "com.huawei.agconnect:agconnect-auth:1.6.3.300"
- api 'com.huawei.hms:hwid:6.3.0.301'
- api 'com.huawei.hms:iap:6.3.0.300'
- api 'com.huawei.hms:game:6.1.0.301'
- api "com.huawei.agconnect:agconnect-auth-huawei:1.6.3.300"
- }
|