无法编译它,也无法在我的库中查看。
错误
gradle failed resolve `com.theartofdev.edmodo:android-image-cropper:+” Compilation fails.
字符串
build.gradle
编码
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.example.backuppc.breathanalyzer"
minSdkVersion 23
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
型
依赖项
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:support-v4:23.4.0'
compile 'com.android.support:design:23.4.0'
compile 'com.android.support:recyclerview-v7:23.4.0'
compile 'com.android.support:cardview-v7:23.4.0'
compile 'com.theartofdev.edmodo:android-image-cropper:+'
}
型
2条答案
按热度按时间htrmnn0y1#
请更换
字符串
使用最新版本
型
请确保依赖项为最新版本。您可以在这里获得最新版本:https://bintray.com/package/files/arthurhub/maven/Android-Image-Cropper?order=asc&sort=name&basePath=com%2Ftheartofdev%2Fedmodo%2Fandroid-image-cropper&tab=files
希望这对你有帮助。
hec6srdp2#
如果您在Android Studio Flamingo或以上版本,您可以通过添加以下内容来解决此错误
jcenter()
作为仓库依赖项(使用jcenter发布),在文件中
settings.gradle
请使用以下代码段:
字符串