我尝试与我的项目同步Firebase我使用Android Studio中的工具 - > Firebase然后我执行这些步骤(这是新项目)Image。 Android Studio版本 3.0.1
App文件夹中的build.gradle是:
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
defaultConfig {
applicationId "com.example.eranp.fiberbase"
minSdkVersion 19
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.google.firebase:firebase-database:11.0.4'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}
apply plugin: 'com.google.gms.google-services'
Project文件夹中的build.gradle
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
compile "com.android.support:support-core-utils:27.1.0"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'com.google.gms:google-services:3.1.0'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
但是当我同步项目时,我有这个错误:
错误:(13,0)找不到参数的方法compile() [com.android.support:support-core-utils:27.1.0]对象类型的对象 org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler。
请从Android SDK安装Android支持存储库 管理器。
但已安装:Image。
我尝试了一周与Firebase合作,但有任何工作要同步。 我怎样才能解决这个问题? 谢谢你的帮助!
答案 0 :(得分:1)
添加后:
compile "com.android.support:support-core-utils:27.1.0"
在app / build.gradle
中的依赖项下然后你需要改变:
compileSdkVersion 26
到此:
compileSdkVersion 27
还将firebase版本更新为:
implementation 'com.google.firebase:firebase-database:11.8.0'
最新版本
答案 1 :(得分:0)
您正在尝试向项目构建脚本添加compile
依赖项,这是无效的。您只应向构建脚本添加classpath
个依赖项,这些依赖项有效地充当Gradle构建的插件。
compile
依赖项将使用您应用的build.gradle,它通常位于app文件夹中。这些是用于构建应用程序的SDK组件。
如果您想在应用中使用compile "com.android.support:support-core-utils:27.1.0"
,请将其从buildscript依赖项移至应用依赖项。