反応し、ネイティブバージョン0.51.0反応ネイティブ-fbsdkは 'com.android.support:appcompat-v7:25.0.0'
反応するネイティブ・fbsdkバージョン0.6.3をコンパイルしていないと私はバージョンを試してみました0.6.0
プロジェクトの実行前に反応し、ネイティブfbsdk をインストールし、私はhttps://developers.facebook.com/docs/react-native/configure-android-current
内のすべての手順を実行します。これは、このI反応-ネイティブfbsdk/build.gradleを
apply plugin: 'com.android.library'
android {
compileSdkVersion 25
buildToolsVersion "25.0.3"
defaultConfig {
minSdkVersion 16
targetSdkVersion 25
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile 'com.android.support:appcompat:25.0.0'
compile 'com.android.support:design:25.0.0'
compile 'com.facebook.react:react-native:+' // support react-native-v0.22-rc+
compile('com.facebook.android:facebook-android-sdk:4.+')
}
ですSアプリ/ build.gradle
dependencies {
compile project(':react-native-fbsdk')
compile fileTree(dir: "libs", include: ["*.jar"])
compile "com.android.support:appcompat-v7:23.0.1"
compile "com.facebook.react:react-native:+" // From node_modules
}
とエラーが...私はそれを修正するための正しい方法を見つけることないよながら、私はこの回避策をやっている
Error:Error:Failed to resolve: com.android.support:appcompat-v7:27.0.1
Error:Error:Failed to resolve: com.android.support:appcompat:25.0.0
Error:Error:Failed to resolve: com.android.support:customtabs:27.0.1
Error:Error:Failed to resolve: com.android.support:cardview-v7:27.0.1
Error:Error:Failed to resolve: com.android.support:support-v4:27.0.1
Error:Error:Failed to resolve: com.android.support:support-core-utils:27.0.1
Error:Error:Failed to resolve: com.android.support:support-annotations:27.0.1
Error:Error:Failed to resolve: com.android.support:appcompat-v7:27.0.1
Error:Error:line (19)Failed to resolve: com.android.support:appcompat:25.0.0
Error:Error:Failed to resolve: com.android.support:customtabs:27.0.1
Error:Error:Failed to resolve: com.android.support:cardview-v7:27.0.1
Error:Error:Failed to resolve: com.android.support:support-v4:27.0.1
Error:Error:Failed to resolve: com.android.support:support-core-utils:27.0.1
しようとするbuild.gradleであなたの
com.android.support:appcompat
を変更して制限するのに役立ちますresolutionStrategy
を追加maven.google.com
2用allprojectsセクションに新しい
maven
の行を追加します。あなたのandroid SDKマネージャから 'Support Repository'を更新してください。 https://developer.android.com/studio/intro/update.html – punksta最新バージョンは既にインストールされています –