мой npx реактивный запуск- android сборка не удалась - PullRequest
0 голосов
/ 10 января 2020

Мой коллега недавно добавил react-native-camera в мой проект. Я объединил код, и когда я запускаю npx react-native run-android, моя сборка завершается неудачно с:

FAILURE: Build failed with an exception.

* What went wrong:
Could not determine the dependencies of task ':app:preDebugBuild'.
> Could not resolve all task dependencies for configuration ':app:debugRuntimeClasspath'.
   > Could not resolve project :react-native-camera.
     Required by:
         project :app
      > Cannot choose between the following variants of project :react-native-camera:
          - generalDebugRuntimeElements
          - mlkitDebugRuntimeElements
        All of them match the consumer attributes:
          - Variant 'generalDebugRuntimeElements' capability Rombot:react-native-camera:unspecified:
              - Unmatched attributes:
                  - Found com.android.build.api.attributes.VariantAttr 'generalDebug' but wasn't required.
                  - Found react-native-camera 'general' but wasn't required.
              - Compatible attributes:
                  - Required com.android.build.api.attributes.BuildTypeAttr 'debug' and found compatible value 'debug'.
                  - Required com.android.build.gradle.internal.dependency.AndroidTypeAttr 'Aar' and found compatible value 'Aar'.
                  - Required org.gradle.usage 'java-runtime' and found compatible value 'java-runtime'.
          - Variant 'mlkitDebugRuntimeElements' capability Rombot:react-native-camera:unspecified:
              - Unmatched attributes:
                  - Found com.android.build.api.attributes.VariantAttr 'mlkitDebug' but wasn't required.
                  - Found react-native-camera 'mlkit' but wasn't required.
              - Compatible attributes:
                  - Required com.android.build.api.attributes.BuildTypeAttr 'debug' and found compatible value 'debug'.
                  - Required com.android.build.gradle.internal.dependency.AndroidTypeAttr 'Aar' and found compatible value 'Aar'.
                  - Required org.gradle.usage 'java-runtime' and found compatible value 'java-runtime'.

Я пытался удалить свои модули узла и затем выполнить npm install, но все равно получаю ту же ошибку. Любая помощь будет отличной. Заранее спасибо.

Ответы [ 2 ]

0 голосов
/ 10 января 2020

Удалите зависимость React-Native-Camera и установите снова и. Запустите

cd android

./gradlew clean

и снова запустите приложение

0 голосов
/ 10 января 2020

Иногда auto-link функция из react-native-cli не срабатывает.

Попробуйте связать библиотеку вручную. Выполните следующие действия ....

  1. npm install --save react-native-camera@git+https://git@github.com/react-native-community/react-native-camera.git
  2. react-native link react-native-camera
  3. npx react-native run-android
...