1

我根据这个文档设置了我的风味构建项目(谷歌和华为) - https://developer.huawei.com/consumer/en/doc/development/AppGallery-connect-Guides/agc-config-flavor

这是我的构建脚本。我已经尝试在发布版本中包含签名而没有任何更改。

应用程序构建.gradle:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 28

    defaultConfig {
        applicationId "com.myapp.testapp"
    }

    flavorDimensions "platform"
    productFlavors {
        huawei {
            versionCode 1712
            versionName "1.7.12"
            targetSdkVersion 29
            minSdkVersion 26
            buildTypes {
                resValue("string", "ad_app_id", "103959507")
                release {
                    resValue("string", "ad_id", "g87ta7hatb")
                    minifyEnabled true
                    proguardFiles 'proguard.cfg'
                    debuggable = true
                }
                debug {
                    resValue("string", "ad_id", "testf9tx29xur5")
                    debuggable = true
                }
            }
        }
    }
    lintOptions {
        checkReleaseBuilds false
        // Or, if you prefer, you can continue to check for errors in release builds,
        // but continue the build even when errors are found:
        abortOnError false
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    buildToolsVersion '29.0.2'
}

dependencies {
    implementation 'androidx.legacy:legacy-support-v4:1.0.0'
    implementation 'androidx.recyclerview:recyclerview:1.1.0'
    implementation 'androidx.cardview:cardview:1.0.0'
    implementation 'com.google.android.material:material:1.2.1'
    implementation 'androidx.arch.core:core-runtime:2.1.0'
    implementation 'androidx.arch.core:core-common:2.1.0'

    huaweiImplementation 'com.huawei.hms:ads-lite:13.4.32.300'
    huaweiImplementation 'com.huawei.agconnect:agconnect-apms:1.3.1.300'
    huaweiImplementation 'com.huawei.agconnect:agconnect-core:1.4.1.300'
    huaweiImplementation 'com.huawei.agconnect:agconnect-crash:1.4.1.300'
    huaweiImplementation 'com.huawei.hms:iap:5.0.1.300'
}

apply plugin: 'com.huawei.agconnect'

项目构建.gradle

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
    repositories {
        google()
        jcenter()
        maven {
            url 'https://developer.huawei.com/repo/'
        }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:4.0.1'
        classpath 'com.huawei.agconnect:agcp:1.3.0.300'
    }
}

allprojects {
    repositories {
        jcenter()
        google()
        maven {
            url 'https://developer.huawei.com/repo/'
        }
    }
}

环境因60054: url is null. gradle build 也在获取文件位置: --W- The variant: huaweiRelease, Use the json file: /Users/xxx/Documents/myappGoogle/app/src/release/agconnect-services.json

我已经尝试了风味标签,并尝试将 json 文件放在风味目录中,如此处所述 - https://forums.developer.huawei.com/forumPortal/en/topicview?tid=0201313999391430187&fid=0101187876626530001。到目前为止,当放置在 app 目录、src/debug(release) 目录以及 src/flavor 目录中时,该文件已被拾取。我可以在构建日志中清楚地看到构建脚本找到了正确的文件。

对我来说也很奇怪的是文档: https ://developer.huawei.com/consumer/en/doc/development/HMS-References/iap-ExceptionHandlingAndGeneralErrorCodes-v4 说60054 is iap is not supported in this country,但实际代码正在返回60054: url is null

返回的错误代码iapApiException.getStatus() 是返回status.statusCode = 60054status.getStatusMessage = "url is null"。这isEnvReady与上述文档相矛盾,在该文档中,状态代码 60054 应该在OrderStatusCode.ORDER_ACCOUNT_AREA_NOT_SUPPORTED 哪里,好像这实际上是一个 url 错误,我希望错误 60001 OrderStatusCode.ORDER_STATE_PARAM_ERROR 或类似的东西。

由于此文档,我正在考虑合并问题的可能性: https ://developer.huawei.com/consumer/en/doc/development/HMS-Guides/Environment_installation 我怀疑的原因是我的 AndroidManifest 显然缺少appid 应该包含在脚本中。

我在这里错过了什么吗?你的建议是什么,或者我还应该研究什么?谢谢。

4

2 回答 2

0

这不是风味构建的问题,而是在测试中使用美国华为 ID 的问题。正确的解决方案是开发者应创建另一个非美国华为帐号,然后登录手机。打开App Gallery App后,将国家的设置更改为支持IAP的国家(例如英国)。移除美国 SIM 卡,然后在使用 VPN 连接到更改后的国家/地区后使用 IAP 服务。

于 2020-10-09T23:03:23.913 回答
0

1.请检查您是否已将agconnect-services.json文件复制到各个构建类型的文件夹中。2.请检查您是否有修改配置文件以适应多种口味。

有关详细信息,请参阅文档

当某个国家或地区支持HUAWEI IAP但出现服务错误时,可能会返回60054的结果码。在这种情况下:

  1. 请提供您的 appid 以查看信息。
  2. 请提供完整的日志:adb logcat >xxx.log以获取它。
于 2020-10-08T10:41:58.337 回答