不编译Svg图像加载器的库文件

时间:2018-06-05 07:43:43

标签: android svg android-gradle

我在项目中编译了这个依赖项:

compile 'com.github.ar-android:AndroidSvgLoader:1.0.1'

未正确同步并提供以下错误:

  

无法解决':app @ debug / compileClasspath':可能的依赖关系   不解析com.github.ar-android:AndroidSvgLoader:1.0.1。

     

无法解析依赖关系   ':app @ debug / compileClasspath':无法解决   com.github.ar-安卓:AndroidSvgLoader:1.0.1。无法解决   app @ debugAndroidTest / compileClasspath的依赖关系':不能   解析com.github.ar-android:AndroidSvgLoader:1.0.1。

     

无法解析依赖关系   app @ debugAndroidTest / compileClasspath&#3无法解析   com.github.ar-机器人:AndroidSvgLoader:1.0.1

我也写依赖

    allprojects {
          repositories {
          google()
          jcenter()
           maven { url 'https://jitpack.io'; }
  // but still not working....
    }
    }

Gradle Files:

项目文件

buildscript {

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


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

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

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

App Gradle File

     apply plugin: 'com.android.application'

 android {
 compileSdkVersion 26
  defaultConfig {
    applicationId "edru.techxpose.co.recycleviewdemo"
    minSdkVersion 15
    targetSdkVersion 26
    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(include: ['*.jar'], dir: 'libs')

implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
testImplementation 'junit:junit:4.12'


implementation 'com.github.ar-android:AndroidSvgLoader:1.0.1'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
  androidTestImplementation 'com.android.support.test.espresso:espresso- 
 core:3.0.2'
implementation 'com.android.support:recyclerview-v7:26.1.0'
implementation 'com.android.volley:volley:1.1.0'
implementation 'com.android.support:cardview-v7:26.1.0'
implementation 'com.squareup.picasso:picasso:2.5.2'
implementation 'com.caverock:androidsvg:1.2.1'

implementation files('libs/svg-android-2.0.5.jar')
  }

1 个答案:

答案 0 :(得分:1)

试试这段代码:

项目文件:

buildscript {

    repositories {
        maven { url 'https://jitpack.io' }
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.1.2'


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

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

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

App Gradle File

     apply plugin: 'com.android.application'

 android {
 compileSdkVersion 26
  defaultConfig {
    applicationId "edru.techxpose.co.recycleviewdemo"
    minSdkVersion 15
    targetSdkVersion 26
    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(include: ['*.jar'], dir: 'libs')

implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
testImplementation 'junit:junit:4.12'


implementation 'com.github.ar-android:AndroidSvgLoader:1.0.1'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.android.support:recyclerview-v7:26.1.0'
implementation 'com.android.volley:volley:1.1.0'
implementation 'com.android.support:cardview-v7:26.1.0'
implementation 'com.squareup.picasso:picasso:2.5.2'
implementation 'com.caverock:androidsvg:1.2.1'
implementation files('libs/svg-android-2.0.5.jar')
  }