Gradleが依存関係を見つけることができないという問題があります(Androidサポートライブラリ)。Gradleが依存関係を見つけることができません(Androidサポートライブラリ)
私のbuild.gradleは、次のようになります。
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.4'
}
}
apply plugin: 'android'
dependencies {
compile files('libs/FlurryAgent.jar')
compile group: 'com.google.android', name: 'support-v4', version: 'r7'
compile files('libs/YouTubeAndroidPlayerApi.jar')
}
android {
compileSdkVersion 17
buildToolsVersion "17"
defaultConfig {
minSdkVersion 11
targetSdkVersion 17
}
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
resources.srcDirs = ['src']
aidl.srcDirs = ['src']
renderscript.srcDirs = ['src']
res.srcDirs = ['res']
assets.srcDirs = ['assets']
}
instrumentTest.setRoot('tests')
}
}
私が構築(コマンドライン上で、何のIDEません)私は、次のメッセージが出ます:
FAILURE: Build failed with an exception.
* What went wrong:
A problem occurred configuring root project 'AndroidCalculator'.
> Failed to notify project evaluation listener.
> Could not resolve all dependencies for configuration ':compile'.
> Could not find com.google.android:support-v4:r7.
Required by:
:AndroidCalculator:unspecified
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
BUILD FAILED
私が追加することはできません午前なぜこのようなAndroidサポートライブラリですか?
どのように回避策については、この問題は、設定された依存関係によっては? コンパイルしたファイル(「path_to_your_sdk /エクストラ/アンドロイド/サポート/ V4 /アンドロイド・サポート・v4.jar」、 – kingori