Ionic cordova,需要为元素 <activity#com.gae.scaffolder.plugin.FCMPluginActivity> 明确指定 android:exported
我正在将我的 android-targetSdkVersion 更新为 32。我针对此更新对我的项目做了一些更改,但出现错误,我找不到任何解决方案。
当我尝试通过以下方式构建我的项目时:
ionic cordova build android
我的项目响应:
FCMPlugin: Support for Gradle v4 or lower is deprecated. Please upgrade to a newer version. Task :app:mergeDebugResources FAILED
Task :app:processDebugMainManifest FAILED {project}/platforms/android/app/src/main/AndroidManifest.xml:64:9-69:20 Error: android:exported needs to be explicitly specified for element <activity#com.gae.scaffolder.plugin.FCMPluginActivity>. Apps targeting Android 12 and higher are required to specify an explicit value for
android:exported
when the corresponding component has an intent filter defined. See https://developer.android.com/guide/topics/manifest/activity-element#exported for details. {project}/platforms/android/app/src/main/AndroidManifest.xml:40:9-44:19 Error: android:exported needs to be explicitly specified for element <service#com.gae.scaffolder.plugin.MyFirebaseMessagingService>. Apps targeting Android 12 and higher are required to specify an explicit value forandroid:exported
when the corresponding component has an intent filter defined. See https://developer.android.com/guide/topics/manifest/activity-element#exported for details. {project}/platforms/android/app/src/main/AndroidManifest.xml:52:9-56:20 Error: android:exported needs to be explicitly specified for element <receiver#nl.xservices.plugins.ShareChooserPendingIntent>. Apps targeting Android 12 and higher are required to specify an explicit value forandroid:exported
when the corresponding component has an intent filter defined. See https://developer.android.com/guide/topics/manifest/activity-element#exported for details.See http://g.co/androidstudio/manifest-merger for more information about the manifest merger.
FAILURE: Build completed with 2 failures.
1: Task failed with an exception.
What went wrong: Execution failed for task ':app:mergeDebugResources'. A failure occurred while executing com.android.build.gradle.internal.res.ResourceCompilerRunnable Resource compilation failed (Failed to compile resource file: {project}/platforms/android/app/src/main/res/xml/config.xml: . Cause: com.ctc.wstx.exc.WstxParsingException: Undeclared namespace prefix "android" (for attribute "exported") at [row,col {unknown-source}]: [99,44]). Check logs for more details.
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. ==============================================================================
2: Task failed with an exception.
What went wrong: Execution failed for task ':app:processDebugMainManifest'. Manifest merger failed with multiple errors, see logs
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
Deprecated Gradle features were used in this build, making it incompatible with Gradle 8.0.
You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins.
See https://docs.gradle.org/7.4.2/userguide/command_line_interface.html#sec:command_line_warnings
BUILD FAILED in 34s 16 actionable tasks: 2 executed, 14 up-to-date Command failed with exit code 1: {project}/platforms/android/gradlew cdvBuildDebug -b {project}/platforms/android/build.gradle Waiting for the debugger to disconnect...
如果尝试转到我的 /plugins 文件夹,请搜索插件并将其添加到它的 plugin.xml 中
android:exported="true"
但是,它仍然没有在我的 AndroidManifest.xml 中生成“android:exported="true"”...
有人遇到过这个问题吗?提前感谢您的帮助。
您是否在 plugin.xml 中的活动和服务标签中添加了“android:exported="true"”? 如果您已在两个标签中添加了此项,请尝试删除并添加 android 平台。
我遇到了同样的问题,并用两种方法修复了它
第一种方法:
导航到 plugins/cordova-plugin-fcm-with-dependecy-updated/plugin.xml 然后添加 android:exported="true" 如下所示..
<activity android:exported="true" ... </activity>
.
.
.
<service android:exported="true" ... </service>
第二种方法:
我分叉了这个插件并修复了问题,因此您可以尝试从 此链接
ionic cordova plugin add cordova-plugin-fcm-with-dependecy-updated-12
希望它会有所帮助 :)