我正在尝试导入一些库,例如Picasso等,但是Android Studio会显示此消息。
这是build.gradle(Module:app)
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.3"
defaultConfig {
applicationId "com.example.mypc.urumcafe"
minSdkVersion 17
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
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.0-alpha7'
compile 'com.android.volley:volley:1.0.0'
compile 'com.amitshekhar.android:android-networking:1.0.1'
compile 'com.android.support:design:25.3.1'
testCompile 'junit:junit:4.12'
}
我只想导入'com.amitshekhar.android:android-networking:1.0.1',但是正如您在上载的图片中看到的那样,出现“无法解决”错误。 那我该如何解决呢?毕加索lib也有同样的故事。 谢谢。
答案 0 :(得分:1)
将构建工具版本更新为SELECT DATE_FORMAT(sys_date, '%Y-%c') as month, COUNT(*) as Total
FROM sale
GROUP BY YEAR(sys_date), month
ORDER BY YEAR(sys_date), LENGTH(month), month
,并将相应的依赖项更新为sdk版本27。
这是更新的build.gradle,它运行正常。
27.0.3
答案 1 :(得分:0)
该库的最新版本是1.0.2。 使用它,然后重试:
com.amitshekhar.android:android-networking:1.0.2
答案 2 :(得分:0)
您可能缺少Maven Central(或v 1.0.2
的{{3}})存储库:
allprojects {
repositories {
google()
mavenCentral()
jcenter()
}
}