我是靠谱客的博主 机灵果汁,最近开发中收集的这篇文章主要介绍安卓遇到:Could not find runtime.aar (android.arch.lifecycle:runtime:1.0.3) 解决方案,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
项目启动突然遇到:
Could not find runtime.aar (android.arch.lifecycle:runtime:1.0.3).
Searched in the following locations:
https://jcenter.bintray.com/android/arch/lifecycle/runtime/1.0.3/runtime-1.0.3.aar
搞了半天 找到解决办法 :
在Build.gradle 中 :
buildscript {
repositories {
jcenter()
mavenCentral()
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
classpath 'org.greenrobot:greendao-gradle-plugin:3.2.0'
classpath 'com.google.gms:google-services:3.1.0'
classpath 'io.fabric.tools:gradle:1.+'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
maven { url 'https://maven.google.com' }
maven { url 'https://tokbox.bintray.com/maven' }
maven { url "https://jitpack.io" }
jcenter() //在上面
mavenCentral() //在下面
}
}
个人GitHub: https://github.com/HuaDanJson
最后
以上就是机灵果汁为你收集整理的安卓遇到:Could not find runtime.aar (android.arch.lifecycle:runtime:1.0.3) 解决方案的全部内容,希望文章能够帮你解决安卓遇到:Could not find runtime.aar (android.arch.lifecycle:runtime:1.0.3) 解决方案所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复