[无法解决:com .android.support:appcompat-v7:24.2.0] 我尝试了24.0.0 - 24.1.0 - 24.1.1,同样的错误已经建立
这是我的gradle文件
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion '24.0.1'
defaultConfig {
applicationId "com.xxxx.xxxxxxx"
manifestPlaceholders = [manifestApplicationId : "${applicationId}",
onesignal_app_id : "xxxxxxxxxxx",
onesignal_google_project_number: "xxxxxxxxxxxxx"]
minSdkVersion 14
targetSdkVersion 24
versionCode 8
versionName "3.2"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:24.2.0'
compile files('libs/libGoogleAnalyticsServices.jar')
compile files('libs/universal-image-loader-1.9.1.jar')
compile 'com.google.android.gms:play-services:7.0.0'
compile 'it.neokree:MaterialTabs:0.11'
compile 'com.edmodo:cropper:1.0.1'
compile 'com.getbase:floatingactionbutton:1.10.1'
compile 'com.onesignal:OneSignal:2.+@aar'
}

我希望解决此错误
答案 0 :(得分:1)
com之后你有一个空格。删除空间并重建项目。如果这不起作用,请检查 SDK管理器,看看那些版本是否存在。如果他们这样做,请下载您想要的那个。如果已安装,请删除并重新安装软件包,然后执行清理构建。
答案 1 :(得分:1)
我认为你错误地在单词 com 之后在这一行中添加了一个空格:
compile 'com.android.support:appcompat-v7:24.2.0'
您只需删除该空格,就像我在上面一行中所做的那样,再次同步gradle
。