当我尝试使用./gradlew bundleRelease构建apk文件时出现此错误
失败:构建失败,并出现异常。
- 出了什么问题:任务':app:bundleReleaseResources'的执行失败。
执行com.android.build.gradle.internal.tasks.Workers $ ActionFacade时发生故障 Android资源链接失败 C:\ Users \ Yoan \ React Native \ new \ app \ android \ app \ build \ intermediates \ bundle_manifest \ release \ processReleaseManifest \ bundle-manifest \ AndroidManifest.xml:13: AAPT:错误:资源mipmap / ic_launcher(又名 com.hotelmaids:mipmap / ic_launcher)。
C:\Users\Yoan\React Native\new\app\android\app\build\intermediates\bundle_manifest\release\processReleaseManifest\bundle-manifest\AndroidManifest.xml:13:
AAPT:错误:资源mipmap / ic_launcher_round(又名 com.hotelmaids:mipmap / ic_launcher_round)。
我删除那些文件夹。我发现某个地方的人和控制台说它们是重复的,而我还有另一个错误
答案 0 :(得分:1)
在构建APK前运行以下命令:
react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res --verbose
,然后删除原始+ drawable- ..文件夹。
不要删除mipmap文件夹!