我正在使用Android Studio构建一个包含所有当前更新的Android应用。我正在尝试使用在https://github.com/siyamed/android-satellite-menu的GitHub上托管的Android Satellite菜单。
我按照确切的说明' jitpack.io'提供了有关如何向项目添加库但我在尝试构建项目时收到以下错误消息,表示无法解析库。
我已经阅读了很多关于类似问题的其他帖子,但他们的解决方案并不适合我。这是我在build.gradle文件中的代码。
Root build.gradle
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
//mavenCentral()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
app build.gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "xxxxxxxx.xxxxxx"
minSdkVersion 18
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.2.1'
compile 'com.google.android.gms:play-services:8.4.0'
compile 'com.android.support:design:23.2.1'
compile 'com.google.code.gson:gson:2.6.2'
compile 'com.github.siyamed:android-satellite-menu:-SNAPSHOT'
}
我还尝试使用除-SNAPSHOT以外的各种版本号,但发生了同样的错误。
提前感谢您的帮助!