android 如何解决“分级失败解决”?

68de4m5k  于 2023-08-01  发布在  Android
关注(0)|答案(2)|浏览(157)

无法编译它,也无法在我的库中查看。

错误

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:+'

}

htrmnn0y

htrmnn0y1#

请更换

compile 'com.theartofdev.edmodo:android-image-cropper:+'

字符串
使用最新版本

compile 'com.theartofdev.edmodo:android-image-cropper:2.8.0'


请确保依赖项为最新版本。您可以在这里获得最新版本:https://bintray.com/package/files/arthurhub/maven/Android-Image-Cropper?order=asc&sort=name&basePath=com%2Ftheartofdev%2Fedmodo%2Fandroid-image-cropper&tab=files
希望这对你有帮助。

hec6srdp

hec6srdp2#

如果您在Android Studio Flamingo或以上版本,您可以通过添加以下内容来解决此错误
jcenter()
作为仓库依赖项(使用jcenter发布),在文件中
settings.gradle
请使用以下代码段:

repositories {
        google()
        mavenCentral()
        gradlePluginPortal()
        jcenter() 
    }

字符串

相关问题