Android Studio を使用して Android アプリケーションを作成しようとしています。したがって、私はそれに応じてすべてを設定します(私の知る限り)。
私のbuild.gardle(CampusAppフォルダー内)は次のようになります。
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.6.+'
}
}
apply plugin: 'android'
repositories {
mavenCentral()
}
android {
compileSdkVersion 18
buildToolsVersion "18.0.0"
defaultConfig {
minSdkVersion 8
targetSdkVersion 19
}
}
dependencies {
compile 'com.android.support:support-v4:13.0.0'
compile fileTree(dir: 'libs', include: '*.jar')
compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar'
compile 'com.google.android.gms:play-services:3.1.36'
}
実行しようとすると:
./gradlew clean && ./gradlew build
それは私に言う多くのエラーを与えます
「エラー: パッケージ XXXX が存在しません」
/Users/foo/git/CampusAppProject/CampusApp/src/main/java/de/unitrier/caching/DiskLruImageCache.java:7: error: package com.android.volley.toolbox does not exist
import com.android.volley.toolbox.ImageLoader;
[...]
100 errors
:CampusApp:compileDebug FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':CampusApp:compileDebug'.
> Compilation failed; see the compiler error output for details.
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
BUILD FAILED
マイ ワークスペース ディレクトリは次のようになります。
何か案が?
[編集] 見つからないのはボレーだけではありません。libフォルダーにあるすべてのjarファイルのようです