我根据这个文档设置了我的风味构建项目(谷歌和华为) - 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 = 60054
和status.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 应该包含在脚本中。
我在这里错过了什么吗?你的建议是什么,或者我还应该研究什么?谢谢。