错误:(45,13)无法解决:me.wangyuwei:LoadingiVew:1.0.5

时间:2017-04-16 21:23:44

标签: android android-studio ethereum

在build.gradle中的依赖项中添加编译'me.wangyuwei:LoadingiVew:1.0.5'后,我收到此错误: 错误:(45,13)无法解决:me.wangyuwei:LoadingiVew:1.0.5 我正试图从https://github.com/sqli-nantes/ethereum-android/tree/master/ethereum-android-sample运行ethereum-android项目 任何帮助,将不胜感激 !! 的build.gradle:

apply plugin: 'com.android.application'

buildscript {      
 repositories {    
    jcenter()    
}    

dependencies {
    classpath 'com.android.tools.build:gradle:2.3.1'
}
}   

android {    

compileSdkVersion 24
buildToolsVersion '25.0.0'

defaultConfig {
    applicationId "com.sqli.blockchain.ethereum_android_sample"
    minSdkVersion 21
    targetSdkVersion 24
    testInstrumentationRunner 
    "android.support.test.runner.AndroidJUnitRunner"

}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 
        'proguard-rules.pro'
    }
}
lintOptions {
    abortOnError false
}
}

task wrapper(type: Wrapper) {
gradleVersion = '3.1'
}

dependencies {
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:24.2.1'
testCompile 'junit:junit:4.12'
compile 'com.google.code.gson:gson:2.7'
compile 'me.relex:circleindicator:1.2.2@aar'
compile 'me.wangyuwei:LoadingiVew:1.0.5'
compile 'com.github.dmytrodanylyk.android-process-button:library:1.0.4'
compile 'com.sqli:ethereum-android:0.1.20170320@aar'
compile 'com.sqli:android-geth:0.1.20170320@aar'
compile 'com.sqli:ethereum-java-core:0.1.20170320'
compile 'ethereumandroid:geth:1.5.0-unstable'
}

repositories {
maven {
    url "http://dl.bintray.com/sqli-nantes/ethereum-android"
}
maven {
    url "http://dl.bintray.com/androidgeth/Geth"
}

    maven { url 'http://repo1.maven.org/maven2' }

}

0 个答案:

没有答案