无法建立APK,firebase_admob产生错误

时间:2019-09-26 10:40:21

标签: flutter dart flutter-dependencies

我正在尝试构建apk,但是firebase admob出现了问题,如果我在没有firebase_admob的情况下运行,那么apk可以完美地运行并且没有任何错误地构建如何解决该问题?

我遇到此错误:

  

在这种情况下,任务':firebase_admob:verifyReleaseResources'的执行失败。

我正在使用firebase_admob: ^0.5.2的该版本,甚至尝试了一些最新版本,但问题仍然存在。

C:\Users\Waqas\AndroidStudioProjects\gtvsports1>flutter build apk
You are building a fat APK that includes binaries for android-arm, android-arm64.
If you are deploying the app to the Play Store, it's recommended to use app bundles or split the APK to reduce the APK size.
    To generate an app bundle, run:
        flutter build appbundle --target-platform android-arm,android-arm64
        Learn more on: https://developer.android.com/guide/app-bundle
    To split the APKs per ABI, run:
        flutter build apk --target-platform android-arm,android-arm64 --split-per-abi
        Learn more on:  https://developer.android.com/studio/build/configure-apk-splits#configure-abi-split
Initializing gradle...                                              1.3s
Resolving dependencies...                                           4.7s
Running Gradle task 'assembleRelease'...


FAILURE: Build failed with an exception.



* What went wrong:

Execution failed for task ':firebase_admob:verifyReleaseResources'.

> java.util.concurrent.ExecutionException: com.android.builder.internal.aapt.v2.Aapt2Exception: Android resource linking failed

  C:\Users\Waqas\AndroidStudioProjects\gtvsports1\build\firebase_admob\intermediates\res\merged\release\values\values.xml:304: error: resource android:attr/fontVariationSettings not foun
d.

  C:\Users\Waqas\AndroidStudioProjects\gtvsports1\build\firebase_admob\intermediates\res\merged\release\values\values.xml:305: error: resource android:attr/ttcIndex not found.

  error: failed linking references.





* Try:

Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.



* Get more help at https://help.gradle.org



BUILD FAILED in 3m 10s
Running Gradle task 'assembleRelease'...                          190.9s (!)
Gradle task assembleRelease failed with exit code 1

3 个答案:

答案 0 :(得分:3)

我遇到了类似的错误。但我建议您制作Appbundle,这是上载应用程序的最佳选择。使用Google Play商店签名注册并上载运行flutter build appbundle签名。我为此解决了。

答案 1 :(得分:1)

似乎您尚未将项目迁移到AndroidX,您所需要做的就是在您的IDE中使用

Refactor > Migrate to AndroidX

此后

File > Invalidate Caches and Restart

答案 2 :(得分:0)

您是否在Android / app / build.gradle中添加了依赖项?

dependencies {
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test:runner:1.1.0'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0'
    api 'com.google.firebase:firebase-core:16.0.9'
    api 'com.google.firebase:firebase-ads:16.0.1'
}