gpt4 book ai didi

android - Flutter项目添加华为agconnect后构建失败

转载 作者:行者123 更新时间:2023-12-04 11:38:56 25 4
gpt4 key购买 nike

添加“com.huawei.agconnect”插件后,我的 flutter 项目无法构建:

FAILURE: Build failed with an exception.

What went wrong: Execution failed for task':app:processDebugResources'. failure occurred while executingcom.android.build.gradle.internal.tasks.Workers$ActionFacade

Android resource linking failedC:\Users\denbo.gradle\caches\transforms-2\files-2.1\2f7fef5146433a886db0a4b7a0dabd3c\push-5.1.1.301\AndroidManifest.xml:9:5-11:55:AAPT: error: resource attr/??? (aka com.example.app:attr/???) not found.



我的 android/build.gradle
buildscript {
ext.kotlin_version = '1.3.61'
repositories {
google()
jcenter()
maven { url 'https://developer.huawei.com/repo/' }
}

dependencies {
classpath 'com.android.tools.build:gradle:3.5.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.google.gms:google-services:4.2.0'
classpath 'com.huawei.agconnect:agcp:1.4.2.301'
}
}

allprojects {
repositories {
google()
jcenter()
maven { url 'https://developer.huawei.com/repo/' }
}
}
android/app/build.gradle
//stuff
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
apply plugin: 'com.google.gms.google-services'
apply plugin: 'com.huawei.agconnect'

最佳答案

问题是我在 AndroidManifest 中将西里尔字符作为我的应用程序的标签。

<application
android:name="io.flutter.app.FlutterApplication"
android:label="АБВГ"
android:icon="@mipmap/launcher_icon">
将其更改为
<application
android:name="io.flutter.app.FlutterApplication"
android:label="ABCD"
android:icon="@mipmap/launcher_icon">
我能够构建我的应用程序。

关于android - Flutter项目添加华为agconnect后构建失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69045870/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com