Я пытался начать работу с response-native-navigation v2, но сталкивался с ошибками одна за другой.Ниже приведена ошибка
Что пошло не так: не удалось определить зависимости задачи ': app: compileDebugJavaWithJavac'.
Не удалось разрешить все зависимости задачи для конфигурации ': app: debugCompileClasspath».Не удалось разрешить проект: response-native-navigation.Требуется: project: app. Невозможно выбрать одну из следующих конфигураций проекта :act-native-navigation: - reactNative56DebugApiElements - reactNative57DebugApiElements - reactNative57WixForkDebugApiElements. Все они соответствуют атрибутам потребителя:значение не указано.- Обнаружен RNN.reactNativeVersion 'activNative56', но не требуется.- Обязательный com.android.build.api.attributes.BuildTypeAttr 'debug' и найдено совместимое значение 'debug'.- Требуется com.android.build.gradle.internal.dependency.AndroidTypeAttr 'Aar' и найдено совместимое значение 'Aar'.- Обнаружен com.android.build.gradle.internal.dependency.VariantAttr 'ReactionNative56Debug', но не требуется.- Требуется org.gradle.usage 'java-api' и найдено совместимое значение 'java-api'.- Конфигурация 'responseNative57DebugApiElements': - Обязательный RNN.reactNaltiveVersion 'responseNative56', но значение не указано.- Обнаружен RNN.reactNativeVersion 'responseNative57', но не требуется.- Обязательный com.android.build.api.attributes.BuildTypeAttr 'debug' и найдено совместимое значение 'debug'.- Требуется com.android.build.gradle.internal.dependency.AndroidTypeAttr 'Aar' и найдено совместимое значение 'Aar'.- Обнаружен com.android.build.gradle.internal.dependency.VariantAttr 'ReactionNative57Debug', но не требуется.- Требуется org.gradle.usage 'java-api' и найдено совместимое значение 'java-api'.- Конфигурация'actNative57WixForkDebugApiElements ': - Обязательный RNN.reactNaltiveVersion'actNative56', но значение не указано.- Обнаружен RNN.reactNativeVersion 'ReactionNative57WixFork', но не требуется.- Обязательный com.android.build.api.attributes.BuildTypeAttr 'debug' и найдено совместимое значение 'debug'.- Требуется com.android.build.gradle.internal.dependency.AndroidTypeAttr 'Aar' и найдено совместимое значение 'Aar'.- Найден com.android.build.gradle.internal.dependency.VariantAttr 'ReactionNative57WixForkDebug', но не требуется.- Требуется org.gradle.usage 'java-api' и найдено совместимое значение 'java-api'.
Мой android / build.gradle
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
mavenLocal()
mavenCentral()
jcenter()
maven {
url 'https://maven.google.com'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
mavenCentral()
jcenter()
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url "$rootDir/../node_modules/react-native/android"
}
maven { url 'https://jitpack.io' }
}
}
ext {
buildToolsVersion = "27.0.3"
minSdkVersion = 19
compileSdkVersion = 26
targetSdkVersion = 26
supportLibVersion = "26.1.0"
}
subprojects { subproject ->
afterEvaluate {
if ((subproject.plugins.hasPlugin('android') || subproject.plugins.hasPlugin('android-library'))) {
android {
variantFilter { variant ->
def names = variant.flavors*.name
if (names.contains("reactNative51") || names.contains("reactNative55")) {
setIgnore(true)
}
}
}
}
}
}
app / build.gradle
apply plugin: "com.android.application"
import com.android.build.OutputFile
project.ext.react = [
entryFile: "index.js"
]
apply from: "../../node_modules/react-native/react.gradle"
/**
* Set this to true to create two separate APKs instead of one:
* - An APK that only works on ARM devices
* - An APK that only works on x86 devices
* The advantage is the size of the APK is reduced by about 4MB.
* Upload all the APKs to the Play Store and people will download
* the correct one based on the CPU architecture of their device.
*/
def enableSeparateBuildPerCPUArchitecture = false
/**
* Run Proguard to shrink the Java bytecode in release builds.
*/
def enableProguardInReleaseBuilds = false
android {
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion
dexOptions {
javaMaxHeapSize "2048M"
}
defaultConfig {
applicationId "com.turb"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
versionName "1.0"
missingDimensionStrategy "RNN.reactNaltiveVersion", "reactNative56"
ndk {
abiFilters "armeabi-v7a", "x86"
}
multiDexEnabled true
}
splits {
abi {
reset()
enable enableSeparateBuildPerCPUArchitecture
universalApk false // If true, also generate a universal APK
include "armeabi-v7a", "x86"
}
}
buildTypes {
release {
minifyEnabled enableProguardInReleaseBuilds
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
}
}
// applicationVariants are e.g. debug, release
applicationVariants.all { variant ->
variant.outputs.each { output ->
// For each separate APK per architecture, set a unique version code as described here:
// http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits
def versionCodes = ["armeabi-v7a":1, "x86":2]
def abi = output.getFilter(OutputFile.ABI)
if (abi != null) { // null for the universal-debug, universal-release variants
output.versionCodeOverride =
versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
}
}
}
}
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}"
implementation "com.facebook.react:react-native:+" // From node_modules
implementation project(':react-native-navigation')
}
// Run this once to be able to run the application with BUCK
// puts all compile dependencies into folder libs for BUCK to use
task copyDownloadableDepsToLibs(type: Copy) {
from configurations.compile
into 'libs'
}
settings.gradle
rootProject.name = 'turb'
include ':app'
include ':react-native-navigation'
project(':react-native-navigation').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-navigation/lib/android/app/')
Я потратил два дня на эти ошибки, но из-за этой конкретной ошибки не смог найти справку в Интернете.Любая помощь будет принята с благодарностью,