android - 如何在Androidx上使用Picasso库

标签 android gradle

我有一岁的代码,我已经非常努力地工作了,该代码在某些地方使用了 picasso 库来下载图像并使用它们。今天,我尝试改进代码,迁移到 androidx 并将 Gradle 升级到最新版本,但是当我评论 Picasso库的实现时,似乎不再同步 gradle文件了。同步再次变为平滑

Google建议迁移到androidx,以便能够提供最新的android版本,最新的播放服务和jetpack库。问题是什么?以及如何解决?

这是我的Gradle应用程序级别文件:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 29
    buildToolsVersion "29.0.2"

    defaultConfig {
        applicationId "com.ramikabbani.sheikhsouk"
        minSdkVersion 19
        targetSdkVersion 29
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }

}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])

    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test.ext:junit:1.1.1'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'

    // Picasso
    implementation 'com.squareup.picasso:picasso:2.71828'

    // Glide
    implementation 'com.github.bumptech.glide:glide:4.9.0'

    implementation 'com.google.android.material:material:1.1.0'
//

}

这是我的顶级项目gradle文件:
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

    repositories {
        google()
        jcenter()

    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.6.1'


        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        google()
        jcenter()

    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

这是旧项目应用程序级别的gradle文件:
应用插件:“com.android.application”
    android {
        compileSdkVersion 29
        defaultConfig {
            applicationId "com.dalilukom.dalilukom"
            minSdkVersion 19
            targetSdkVersion 29
            versionCode 21
            versionName "1.21"
            testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        }
        buildTypes {
            release {
                minifyEnabled false
                proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            }
        }
    }

    dependencies {
        implementation fileTree(dir: 'libs', include: ['*.jar'])
        implementation 'com.android.support:appcompat-v7:26.1.0'
        implementation 'com.android.support.constraint:constraint-layout:1.1.3'
        implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.16'
        implementation 'com.squareup.picasso:picasso:2.71828'
        implementation 'com.github.bumptech.glide:glide:3.8.0'
        //implementation 'com.android.volley:volley:1.1.1'
        implementation 'com.android.support:design:26.1.0'
        implementation 'com.android.support:support-v4:26.1.0'
    //    implementation 'com.amitshekhar.android:android-networking:1.0.2'
    //    implementation 'com.android.support:design:26.1.0'
    //    implementation 'com.android.support:appcompat-v7:27.1.1'
    //    implementation 'com.android.support:design:27.1.1'
    //implementation 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}

这也是旧项目的顶级gradle文件:
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.6.1'


        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

最佳答案

只需迁移到androidx并在成绩文件上获取androidx的Picasso依赖关系即可。你应该没事的

关于android - 如何在Androidx上使用Picasso库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61418425/

相关文章:

Android:运行繁重的后台任务时 OpenGL 渲染暂停

java - 如何将字符串传递给 Android 中的布局?

android - 为 PocketSphinxAndroidDemo 设置 SWIG Builder 时得到 "Error running Integrated External Tool Builder"

java - Android:Toast 中的字符串连接不起作用

gradle - 如何使用 Kotlin 和 Tornado FX 设置 Gluon 应用程序

gradle - JavaExec Gradle任务的默认最大堆大小

eclipse - 从未知根目录的子项目运行gradle任务

Android parcelable - 写入可空长

java - Java 10 中的 Gradle javadoc 任务失败

Android Studio 与 Protobuf 集成