Could not find androidx.navigation:safe-args-gradle-plugin:1.0.0-alpha01

限于喜欢 提交于 2019-12-09 05:09:11

问题


I want to use Navigation Architecture Components.

But I got a problem with importing safeargs

Sync message:

Could not find androidx.navigation:safe-args-gradle-plugin:1.0.0-alpha01. Searched in the following locations:
https://dl.google.com/dl/android/maven2/androidx/navigation/safe-args-gradle-plugin/1.0.0-alpha01/safe-args-gradle-plugin-1.0.0-alpha01.pom
https://dl.google.com/dl/android/maven2/androidx/navigation/safe-args-gradle-plugin/1.0.0-alpha01/safe-args-gradle-plugin-1.0.0-alpha01.jar
https://jcenter.bintray.com/androidx/navigation/safe-args-gradle-plugin/1.0.0-alpha01/safe-args-gradle-plugin-1.0.0-alpha01.pom
https://jcenter.bintray.com/androidx/navigation/safe-args-gradle-plugin/1.0.0-alpha01/safe-args-gradle-plugin-1.0.0-alpha01.jar
Required by:
project :

I followed Adding Components to your Project but does not solved my problem.

Project: build.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.1.2'
        classpath "androidx.navigation:safe-args-gradle-plugin:1.0.0-alpha01"

        // 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
}

Module: build.gradle

apply plugin: 'com.android.application'
apply plugin: 'androidx.navigation.safeargs'

android {
    compileSdkVersion 27
    defaultConfig {
        applicationId "com.mangoslab.navigation"
        minSdkVersion 21
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
        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:27.1.1'
    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'

    def nav_version = "1.0.0-alpha01"

    implementation "android.arch.navigation:navigation-fragment:${nav_version}" // use -ktx for Kotlin
    implementation "android.arch.navigation:navigation-ui:${nav_version}" // use -ktx for Kotlin

    // optional - Test helpers
    androidTestImplementation "android.arch.navigation:navigation-testing:${nav_version}" // use -ktx for Kotlin
}

回答1:


Try to add

classpath "android.arch.navigation:navigation-safe-args-gradle-plugin:1.0.0-alpha01" 

instead of

classpath "androidx.navigation:safe-args-gradle-plugin:1.0.0-alpha01"



回答2:


check packages from Google maven repository
http://joxi.ru/GrqxKRgiQn1OZA




回答3:


Accepted answer didn't work for me. But when I used alpha 5 it worked

Project build.gradle:

classpath "android.arch.navigation:navigation-safe-args-gradle-plugin:1.0.0-alpha05"



回答4:


Now you can use the following classpath in order to use safe-args with AndroidX

classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.1.0-alpha02"

For more details you can check here




回答5:


all of the above did not work for me. I only needed to put apply plugin: "androidx.navigation.safeargs.kotlin" after apply plugin: 'kotlin-android' apply plugin: 'kotlin-kapt' apply plugin: 'kotlin-android-extensions'




回答6:


I solved this problem by replacing

classpath "android.arch.navigation:navigation-safe-args-gradle-plugin:$version_navigation" 

in project level build where version_navigation = "2.1.0" with

classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$version_navigation"



回答7:


In my case I had to add this plugin :

apply plugin: "androidx.navigation.safeargs.kotlin"

at the bottom and worked perfectly.




回答8:


I simply followed the androidx navigation release documentation Jetpack libraries Navigation Framework

In app level build.gradle file inside the dependencies block I've added

def nav_version = "2.1.0"
implementation "androidx.navigation:navigation-fragment-ktx:$nav_version"
implementation "androidx.navigation:navigation-ui-ktx:$nav_version"
implementation "androidx.navigation:navigation-runtime:$nav_version"

also you need to add the following at the top of the file

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
apply plugin: "androidx.navigation.safeargs.kotlin"

Within the project top level build.gradle file include the following classpath

    classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.1.0"


来源:https://stackoverflow.com/questions/50284338/could-not-find-androidx-navigationsafe-args-gradle-plugin1-0-0-alpha01

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!