代码之家  ›  专栏  ›  技术社区  ›  Harwinder Singh

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

  •  1
  • Harwinder Singh  · 技术社区  · 7 年前

    我在我的项目中汇编了这种依赖性:

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

    不正确同步并给出以下错误:

    无法解析“:app@debug/compileclasspath”的依赖项:可能 不解析com.github.ar android:androidsvgloader:1.0.1。

    无法解析的依赖项 “:app@debug/compileclasspath”:无法解析 安卓系统:androidsvgloader:1.0.1。无法解决 app@debugandroidtest/compileclasspath的依赖项:无法 解析com.github.ar android:androidsvgloader:1.0.1。

    无法解析的依赖项 app@debugandroidtest/compileclasspath&3无法解析 安卓系统:androidsvgloader:1.0.1

    我也写依赖

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

    Gradle文件:

    项目文件

    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
      }
    

    应用程序渐变文件

         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 回复  |  直到 7 年前
        1
  •  1
  •   Paraskevas Ntsounos Charith Lakshitha    7 年前

    请尝试以下代码:

    项目文件:

    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
    }
    

    应用程序渐变文件

         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')
      }
    
    推荐文章