代码之家  ›  专栏  ›  技术社区  ›  Ajay Kulkarni

未能解析:com.github.q42:AndroidScrollingImageView:1.3.2错误

  •  1
  • Ajay Kulkarni  · 技术社区  · 6 年前

    我正在使用android studio 3.1.2,我的应用程序gradle如下:

    apply plugin: 'com.android.application'
    
    android {
        compileSdkVersion 27
        defaultConfig {
            applicationId "com.ajay.pocketassistance"
            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'
        implementation 'com.android.support.constraint:constraint-layout:1.1.0'
        implementation 'com.android.support:support-v4:27.1.1'
        implementation 'com.android.support:design: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'
    
        implementation 'com.jakewharton:butterknife:8.5.1'
        annotationProcessor 'com.jakewharton:butterknife-compiler:8.5.1'
        implementation 'com.andkulikov:transitionseverywhere:1.7.4'
        implementation 'com.github.bumptech.glide:glide:4.7.1'
        implementation 'net.yslibrary.keyboardvisibilityevent:keyboardvisibilityevent:2.1.0'
        implementation 'com.github.Q42:AndroidScrollingImageView:1.3.2'
    
    }  
    

    我的毕业设计如下:

    // 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 'com.github.dcendents:android-maven-gradle-plugin:1.3'
    
    
            // 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.github.q42:AndroidScrollingImageView:1.3.2

    我查过了 github repo 找不到任何解决方案

    1 回复  |  直到 6 年前
        1
  •  2
  •   Sheikh Hasib    6 年前

    在你的 项目级 build.gradle :

    添加以下内容:

    repositories {
        maven { url "https://jitpack.io" }
    }
    

    希望你的问题能得到解决。

    为了更好地理解,请查看屏幕截图:

    enter image description here