flutter项目添加huawei agconnect后构建失败

Flutter project fails to build after adding huawei agconnect

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

FAILURE: Build failed with an exception.

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

Android resource linking failed C:\Users\denbo.gradle\caches\transforms-2\files-2.1f7fef5146433a886db0a4b7a0dabd3c\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">

我能够构建我的应用程序。