我正在嘗試將我的項目中的.jar
庫添加到/libs
文件夾中。這裏是我的grade.build
:Android Studio在Gradle編譯後無法找到庫類
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.4'
}
}
apply plugin: 'android'
dependencies {
compile files('libs/android-support-v4.jar', 'libs/java-api-wrapper-1.2.0-all.jar')
}
android {
compileSdkVersion 17
buildToolsVersion "17.0.0"
defaultConfig {
minSdkVersion 15
targetSdkVersion 16
}
}
之後我再補充一點,我建我的項目,並沒有錯誤。但是,當我嘗試使用這個類在我的代碼private ApiWrapper wrapper
,我得到一個錯誤:
Gradle: error: cannot find symbol class ApiWrapper
我不能完全找到錯誤所在。我的grade.build
不好,或者我應該以其他方式構建它?
你有任何的子項目,或只是一個主要項目的gradle?我在其中一個子項目中遇到了類似的錯誤... –