gpt4 book ai didi

android - ShowcaseView 解析失败

转载 作者:行者123 更新时间:2023-11-30 02:05:07 25 4
gpt4 key购买 nike

我正在尝试使用来自:https://github.com/amlcurran/ShowcaseView 的 ShowcaseView

所以我将这一行添加到 gradle.build 中:

compile com.github.amlcurran.showcaseview:library:5.0.0

但是我得到了这个错误:

Error:(26, 13) Failed to resolve: com.github.amlcurran.showcaseview:library:5.0.0

有人知道如何解决这个问题吗?

Gradle 文件:

apply plugin: 'com.android.application'

android {
compileSdkVersion 21
buildToolsVersion "21.1.2"

defaultConfig {
applicationId "com.example.test.squares"
minSdkVersion 15
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.1.1'
compile 'com.github.blackfizz:eazegraph:1.2.2@aar'
compile 'com.nineoldandroids:library:2.4.0'
compile 'com.github.amlcurran.showcaseview:library:5.0.0'
compile 'com.github.lecho:hellocharts-library:1.5.5@aar'
}


buildscript {
repositories {
jcenter()
}
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 {
jcenter()
}
}

最佳答案

你应该添加:

repositories {
mavenCentral()
}

到你的 app/build.gradle:

apply plugin: 'com.android.application'

android {
compileSdkVersion 21
buildToolsVersion "21.1.2"

defaultConfig {
applicationId "com.example.test.squares"
minSdkVersion 15
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

repositories {
mavenCentral()
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.1.1'
compile 'com.github.blackfizz:eazegraph:1.2.2@aar'
compile 'com.nineoldandroids:library:2.4.0'
compile 'com.github.amlcurran.showcaseview:library:5.0.0'
compile 'com.github.lecho:hellocharts-library:1.5.5@aar'
}

关于android - ShowcaseView 解析失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30798845/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com