2017-07-11 7 views
1

最近、反応ネイティブプロジェクトにライブラリを追加しました。この依存関係を追加する前に、プロジェクトは正常に実行されていました。私はTRYIがreact-native run-androidを通じて、今それを実行しようとすると、しかし、私はこのエラーを取得する:新しい依存関係React native - gradle clean - すべての依存関係を解決できませんでした

File C:\Users\user\.android\repositories.cfg could not be loaded. 

FAILURE: Build failed with an exception. 

* What went wrong: 
A problem occurred configuring project ':app'. 
> Could not resolve all dependencies for configuration ':app:_debugApkCopy'. 
    > Could not find com.onesignal:OneSignal:23.0.1. 
    Required by: 
     project :app 
    > Could not find com.onesignal:OneSignal:23.0.1. 
    Required by: 
     project :app > project :react-native-onesignal 

* Try: 
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. 

BUILD FAILED 

Total time: 1 mins 57.711 secs 
Could not install the app on the device, read the error above for details. 
Make sure you have an Android emulator running or a device connected and have 
set up your Android development environment: 
https://facebook.github.io/react-native/docs/android-setup.html 

編集:アンドロイドエミュレータはもちろん、ランニングです。 som研究をした後、私はnpmをアンインストールしてインストールすることができ、成功することはできないと考えました。 build.gradleではonesignal_app_idとcompile 'com.onesignal:OneSignal:23.0.1'を依存関係の下に指定しました。私はこのエラーを引き起こしたgradle cleanを試みました:

FAILURE: Build failed with an exception. 

* What went wrong: 
A problem occurred configuring project ':app'. 
> Could not resolve all dependencies for configuration ':app:_debugApk'. 
    > A problem occurred configuring project ':react-native-onesignal'. 
     > Failed to notify project evaluation listener. 
     > com.android.build.gradle.tasks.factory.AndroidJavaCompile.setDependencyCacheDir(Ljava/io/File;)V 

* Try: 
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. 

BUILD FAILED in 1s 

答えて

0

私はCordovaに同様の問題がありました。

グラデーションのバージョンを2.2.3から2.3.3に変更して修正しました。このためoneliner以下

sed -i -E 's/com.android.tools.build:gradle:2.2.[0-9]+/com.android.tools.build:gradle:2.3.3/g' build.gradle 
関連する問題