最新android+v7,Failed to resolve: com.android.support:appcompat-v7:27.+ 解决方法

failed to resolve: com.android.support:appcompat-v7:27.+ 解决方法。新创建一个android studio project.出现了failed to resolve: com.android.support:appcompat-v7:27.+问题。

我的工作环境是 android studio 2.3.3。

app 下的 build.gradle文件内容如下:

apply plugin: 'com.android.application'

android {

compilesdkversion 27

buildtoolsversion "27.0.3"

defaultconfig {

applicationid "com.bestgo.facebookdownload"

minsdkversion 15

targetsdkversion 27

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(dir: 'libs', include: ['*.jar'])

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:27.0.0'

compile 'com.android.support.constraint:constraint-layout:1.0.2'

testcompile 'junit:junit:4.12'

}

project下的build.gradle文件内容如下:

????

// top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

repositories {

jcenter()

}

dependencies {

classpath 'com.android.tools.build:gradle:2.3.3'

// note: do not place your application dependencies here; they belong

// in the inpidual module build.gradle files

}

}

allprojects {

repositories {

jcenter()

}

}

task clean(type: delete) {

delete rootproject.builddir

}

解决方法:

?在project 下的build.gradle 文件里的 allprojects加入以下代码:

????????maven {

? ? ? ? ? ? url "https://maven.google.com"

? ? ? ? }

加入后的build.gradle文件如下:

// top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

repositories {

jcenter()

}

dependencies {

classpath 'com.android.tools.build:gradle:2.3.3'

// note: do not place your application dependencies here; they belong

// in the inpidual module build.gradle files

}

}

allprojects {

repositories {

jcenter()

maven {

url "https://maven.google.com"

}

}

}

task clean(type: delete) {

delete rootproject.builddir

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值