30/09/2018, 17:12
Lỗi khi import thư viện vào project android
Giúp mình với! Mình có import import thư viện library-1.0.5-sources.jar vào project của mình, khi rebuild project thì có hiển thị lỗi sau:
*Error:A problem occurred configuring project ':app'.*
*Cannot evaluate module library-1.0.5-sources : **Configuration with name 'default' not found**.*
Cấu trúc thư mục của mình như sau:
app/
- build.gradle/
...
libs/
- library-1.0.5-sources
build.gradle
settings.gradle
gradle.properties
Code trong settings.gradle:
include ‘:app’
include ‘:libs:library-1.0.5-sources’
Code trong build.gradle:
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.1.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
mavenCentral()
}
}
Còn đây là code trong app/build.gradle:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.1.1'
compile 'com.etsy.android.grid:library:1.0.5'
compile files('libs/library-1.0.5-sources.jar')
compile project(':libs:library-1.0.5-sources')
}
Bài liên quan