簡體   English   中英

無法解決:com.github.ViksaaSkool:AwesomeSplash:v1.0.0

[英]Failed to resolve: com.github.ViksaaSkool:AwesomeSplash:v1.0.0

我正在嘗試制作一個動畫的初始屏幕,但是在同步項目時遇到錯誤(標題中)。 gradleFile中的代碼是:

    allprojects {
            repositories {
                jcenter()
                maven { url "https://jitpack.io" }
           }
    }

依賴關系如下:

    dependencies {
        compile fileTree(dir: 'libs', include: ['*.jar'])
        androidTestCompile('com.android.support.test.espresso:espresso- 
        core:2.2.2', {
           exclude group: 'com.android.support', module: 'support 
           annotations'
         })
        compile 'com.android.support:appcompat-v7:25.3.1'
        compile 'com.android.support.constraint:constraint-layout:1.0.2'
        testCompile 'junit:junit:4.12'
        compile 'com.github.VikaaSkool:AwesomeSplash:v1.0.0'
        }

你有:

compile 'com.github.VikaaSkool:AwesomeSplash:v1.0.0'

代替 :

compile 'com.github.ViksaaSkool:AwesomeSplash:v1.0.0'

注意Vi kaa Skool代替Vi ksaa Skool

另外,考慮使用實現而不是編譯,因為它將很快被棄用

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM