web-dev-qa-db-ja.com

タスクの実行に失敗しました ':app:mergedebugnativeLibs'。 React Native.

「NPX React-Native Run-Android」が発生したときにReact-Native-PDFをインストールしましたが、これを下回るようなエラーを表示しました

* What went wrong:
Execution failed for task ':app:mergeDebugNativeLibs'.
> A failure occurred while executing com.Android.build.gradle.internal.tasks.Workers$ActionFacade
   > More than one file was found with OS independent path 'lib/x86/libc++_shared.so'
 _

誰もが私を助けることができますCAN Package React-Native-PDF

ive

3
zainal abidin

私は「Android/app/build.gradle」のMinsDKversionを21に変更しました。

defaultConfig {
        // TODO: Specify your own unique Application ID (https://developer.Android.com/studio/build/application-id.html).
        applicationId "com.example.custom_epub_view"
        minSdkVersion 21
        targetSdkVersion 29
        versionCode flutterVersionCode.toInteger()
        versionName flutterVersionName
    }
 _