project 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:3.0.0-alpha3'
classpath 'com.google.gms:google-services:3.0.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
App Gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.example.arun4fms.efix"
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'
}
packagingOptions {
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE-FIREBASE.txt'
exclude 'META-INF/NOTICE'
}
}
}
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.google.firebase:firebase-database:10.2.0'
compile 'com.google.firebase:firebase-crash:10.2.0'
compile 'com.google.firebase:firebase-auth:10.2.0'
compile 'com.chabbal:slidingdotsplash:1.0.2'
compile 'com.google.firebase:firebase-core:10.2.0'
compile 'com.firebase:firebase-client-android:2.5.2'
compile 'com.android.support:appcompat-v7:25.2.0'
compile 'com.android.support:design:25.2.0'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
}
apply plugin: 'com.google.gms.google-services'
错误:配置根项目' webapp'。
时出现问题无法解析配置':classpath'的所有依赖项。 找不到com.android.tools.build:gradle:3.0.0-alpha3。 在以下位置搜索: file:/ C:/ Program Files / Android / Android Studio / gradle / m2repository / com / android / tools / build / gradle / 3.0.0-alpha3 / gradle-3.0.0-alpha3.pom file:/ C:/ Program Files / Android / Android Studio / gradle / m2repository / com / android / tools / build / gradle / 3.0.0-alpha3 / gradle-3.0.0-alpha3.jar https://jcenter.bintray.com/com/android/tools/build/gradle/3.0.0-alpha3/gradle-3.0.0-alpha3.pom https://jcenter.bintray.com/com/android/tools/build/gradle/3.0.0-alpha3/gradle-3.0.0-alpha3.jar 要求: 项目:
答案 0 :(得分:16)
已经回答here:
谷歌有新的maven回购,所以可能是原因。
https://android-developers.googleblog.com/2017/05/android-studio-3-0-canary1.html
部分 Google的Maven资源库
https://developer.android.com/studio/preview/features/new-android-plugin-migration.html https://developer.android.com/studio/build/dependencies.html#google-maven
将Google的Maven存储库添加到buildscript存储库部分以修复它,就像@ KG87做here一样。
buildscript {
repositories {
jcenter()
maven { url "https://maven.google.com" } // Add this line to fix it
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0-alpha3'
...
}
}
正如here所说:
buildScript块中的存储库用于获取 buildScript依赖项的依赖项。这些是 依赖于构建的类路径和您的依赖项 可以从您的构建文件中引用。例如,额外的插件 存在于互联网上。
根级别的存储库用于获取依赖项 你的项目所依赖的。所以你需要的所有依赖项 编译你的项目。
here:
buildScript
块确定哪些插件,任务类和 其他类可用于其余构建脚本。 如果没有buildScript
块,您可以使用随附的所有内容 Gradle开箱即用。如果您还想使用第三方 插件,任务类或其他类(在构建脚本中!),你 必须在buildScript
中指定相应的依赖项 块。
宣布here:
Android Gradle Plugin 3.0.0-alpha3也通过发布 maven.google.com。
因此,请尝试通过添加Google的Maven资源库来修复它。
buildscript {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0-alpha3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
此处还为其他依赖项添加存储库,例如this等支持库:
确保存储库部分包含maven部分 “https://maven.google.com”端点。例如:
allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
}
区别在于here
“buildscript”块仅控制buildscript的依赖项 进程本身,不是顶级应用程序代码 “依赖”阻止控制。
例如,您可以在“buildscript / classpath”中定义依赖项 表示构建过程中使用的Gradle插件。那些插件 不会被引用为应用程序代码的依赖项。
由@lugegege评论here,此版本在Bintray JCenter中不存在:
com.android.tools.build.gradle 最新版本是2.5.0-alpha-preview-02,没有3.0.0-alpha3
答案 1 :(得分:1)
com.android.tools.build.gradle最新版本是2.5.0-alpha-preview-02,没有3.0.0-alpha3
答案 2 :(得分:0)
使用此..这可能有效,因为这适用于我的情况:
dependencies {
classpath 'com.android.tools.build:gradle:2.0.0-alpha3'
classpath 'com.google.gms:google-services:2.0.0-alpha3'
}
并将其放在app级build.gradle文件的末尾(在依赖项之后)。
apply plugin: 'com.google.gms.google-services'
我不知道为什么把它放在最后(而不是在开头)解决错误。
好的......所以试图结束你们在我的解决方案中遇到的所有问题
这是我的最终应用级别gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "your-app-name"
minSdkVersion 16
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.pro'
}
}
}
repositories {
jcenter()
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.google.android.gms:play-services:8.4.0'
compile 'com.android.support:design:23.1.1'
compile 'com.mcxiaoke.volley:library:1.0.6@aar'
}
apply plugin: 'com.google.gms.google-services'
这是我最后的项目级别gradle
//顶级构建文件,您可以在其中添加所有子项目/模块共有的配置选项。
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.0.0-alpha3'
classpath 'com.google.gms:google-services:2.0.0-alpha3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
将此与您自己的gradle文件进行比较,并添加或修改与我所写的不同的任何值。
答案 3 :(得分:0)
今天早上我遇到了同样的问题! 正如Vishal所说,没有gradle-3.0.0-alpha3 .. 我确信,自从我下载" Android studio 3.0 Canary(Alpha3)"后,我就开始使用相同版本的gradle(3.0.0 alpha3),并且它有效! (从今天开始)。
所以我已经把:classpath' com.android.tools.build:gradle:2.3.2'编译。
编辑:我有两个版本的Android工作室,当我使用Android Studio 3.0时,它会改变gradle to gradle 3.0.0-alpha3!答案 4 :(得分:-1)
写下这些渐变..
compile 'com.android.support:appcompat-v7:25.0.2'
compile 'com.android.support:design:25.0.2'
classpath 'com.android.tools.build:gradle:2.2.3'