我尝试使用来自https://github.com/bright/slf4android的slf4android依赖,但是在gradle同步方面存在问题。
Build.gardle(项目)
buildscript {
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.0.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
Build.gardle(App)
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "24.0.0 rc2"
defaultConfig {
applicationId "com.example.vinod.myapplication"
minSdkVersion 21
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
buildscript {
repositories {
maven { url "http://jitpack.io" }
}
dependencies {
compile('com.gitghub.bright:slf4android:0.1.0'){
transitive = true
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.3.0'
compile 'com.android.support:design:23.3.0'
compile('com.gitghub.bright:slf4android:0.1.0'){
transitive = true
}
}
我收到的错误:
defaultConfig {
applicationId "com.example.vinod.myapplication"
minSdkVersion 21
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
我对Android编码很新,不知道我错过了什么。请帮忙。
答案 0 :(得分:1)
url“http://jitpack.io”应该在项目级build.gradle中而不是在模块级别。
将项目级构建gradle的allProjects更改为:
allprojects {
repositories {
jcenter()
maven {url "https://jitpack.io"}
}
}
从app build.gradle中删除jitpack网址并同步你的项目。
答案 1 :(得分:0)
尝试用此替换Build.Gradle(App),然后构建:
apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'
group='com.github.bright'
android {
compileSdkVersion 23
buildToolsVersion '23.0.2'
defaultConfig {
minSdkVersion 9
targetSdkVersion 23
versionCode 14
versionName "1.0"
}
packagingOptions {
exclude 'LICENSE.txt'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/LICENSE'
exclude 'META-INF/NOTICE'
}
}
dependencies {
compile 'org.slf4j:slf4j-api:1.7.7'
androidTestCompile 'org.hamcrest:hamcrest-all:1.3'
androidTestCompile('junit:junit:4.11') {
exclude module: 'hamcrest-core'
}
androidTestCompile 'org.easytesting:fest-util:1.2.5'
testCompile 'org.hamcrest:hamcrest-all:1.3'
testCompile('junit:junit:4.11') {
exclude module: 'hamcrest-core'
}
testCompile 'org.easytesting:fest-util:1.2.5'
testCompile('org.robolectric:robolectric:3.0') {
exclude module: 'classworlds'
exclude module: 'commons-logging'
exclude module: 'httpclient'
exclude module: 'maven-artifact'
exclude module: 'maven-artifact-manager'
exclude module: 'maven-error-diagnostics'
exclude module: 'maven-model'
exclude module: 'maven-project'
exclude module: 'maven-settings'
exclude module: 'plexus-container-default'
exclude module: 'plexus-interpolation'
exclude module: 'plexus-utils'
exclude module: 'wagon-file'
exclude module: 'wagon-http-lightweight'
exclude module: 'wagon-provider-api'
}
}