all buildscript {} blocks must appear before any plugins {} blocks in the script :8 ~ Android Studio

huangapple go评论100阅读模式
英文:

all buildscript {} blocks must appear before any plugins {} blocks in the script :8 ~ Android Studio

问题

Here is the translated content:

我正在使用Java创建一个应用程序,并将数据库连接到Firebase。我在构建文件中遇到了这个错误。请帮助我解决这个错误。
我无法理解错误消息,请解释如何解决它。
错误 👇👇👇

  1. 构建文件 'D:\MyWeb\build.gradle' 7
  2. 无法编译构建文件 'D:\MyWeb\build.gradle'
  3. > 启动失败:
  4. 构建文件 'D:\MyWeb\build.gradle'7:所有 buildscript {} 块必须出现在脚本中任何 plugins {} 块之前
  5. build.grable(我的Web
  1. // 顶级构建文件,您可以在其中添加所有子项目/模块通用的配置选项。
  2. plugins {
  3. id 'com.android.application' version '8.0.2' apply false
  4. id 'com.android.library' version '8.0.2' apply false
  5. }
  6. buildscript {
  7. repositories {
  8. google() // Google 的 Maven 存储库
  9. mavenCentral() // Maven 中央存储库
  10. }
  11. dependencies {// 添加 Google 服务 Gradle 插件的依赖项
  12. classpath 'com.google.gms:google-services:4.3.15'
  13. }
  14. }
  15. allprojects {
  16. repositories {// 确保您拥有以下两个存储库
  17. google() // Google 的 Maven 存储库
  18. mavenCentral() // Maven 中央存储库
  19. }
  20. }

build.gradle (:app)

  1. // 顶级构建文件,您可以在其中添加所有子项目/模块通用的配置选项。
  2. plugins {
  3. id 'com.android.application' version '8.0.2' apply false
  4. id 'com.android.library' version '8.0.2' apply false
  5. }
  6. buildscript {
  7. repositories {
  8. google() // Google 的 Maven 存储库
  9. mavenCentral() // Maven 中央存储库
  10. }
  11. dependencies {// 添加 Google 服务 Gradle 插件的依赖项
  12. classpath 'com.google.gms:google-services:4.3.15'
  13. }
  14. }
  15. allprojects {
  16. repositories {// 确保您拥有以下两个存储库
  17. google() // Google 的 Maven 存储库
  18. mavenCentral() // Maven 中央存储库
  19. }
  20. }

我正在尝试将我的Android Studio项目连接到Firebase,但我在build.gradle中遇到了错误。不确定如何修复它。

英文:

I am creating an application using Java and connecting the database to Firebase. I am getting this error in the build file. Please help me to solve this error.
I can't understand the error message please explain me to solve it.
Error 👇👇👇

  1. Build file 'D:\MyWeb\build.gradle' line: 7
  2. Could not compile build file 'D:\MyWeb\build.gradle'.
  3. > startup failed:
  4. build file 'D:\MyWeb\build.gradle': 7: all buildscript {} blocks must appear before any plugins {} blocks in the script
  5. build.grable(My Web)
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. plugins {
  3. id 'com.android.application' version '8.0.2' apply false
  4. id 'com.android.library' version '8.0.2' apply false
  5. }
  6. buildscript {
  7. repositories {
  8. google() // Google's Maven repository
  9. mavenCentral() // Maven Central repository
  10. }
  11. dependencies {// Add the dependency for the Google services Gradle plugin
  12. classpath 'com.google.gms:google-services:4.3.15'
  13. }
  14. }
  15. allprojects {
  16. repositories {// Make sure that you have the following two repositories
  17. google() // Google's Maven repository
  18. mavenCentral() // Maven Central repository
  19. }
  20. }

build.gradle (:app)

  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. plugins {
  3. id 'com.android.application' version '8.0.2' apply false
  4. id 'com.android.library' version '8.0.2' apply false
  5. }
  6. buildscript {
  7. repositories {
  8. google() // Google's Maven repository
  9. mavenCentral() // Maven Central repository
  10. }
  11. dependencies {// Add the dependency for the Google services Gradle plugin
  12. classpath 'com.google.gms:google-services:4.3.15'
  13. }
  14. }
  15. allprojects {
  16. repositories {// Make sure that you have the following two repositories
  17. google() // Google's Maven repository
  18. mavenCentral() // Maven Central repository
  19. }
  20. }

I'm trying to connect my Android Studio project to Firebase, but I get an error with the build.gradle. Not sure how to fix it.

答案1

得分: 2

只需删除buildscript{}块,并将其添加到plugins{}块的顶部,像这样:

  1. // 顶级构建文件,在此处可以添加所有子项目/模块共用的配置选项。
  2. buildscript {
  3. repositories {
  4. google() // Google的Maven仓库
  5. mavenCentral() // Maven中央仓库
  6. }
  7. dependencies {// 添加Google服务Gradle插件的依赖项
  8. classpath 'com.google.gms:google-services:4.3.15'
  9. }
  10. }
  11. plugins {
  12. id 'com.android.application' version '8.0.2' apply false
  13. id 'com.android.library' version '8.0.2' apply false
  14. }
  15. allprojects {
  16. repositories {// 确保您有以下两个仓库
  17. google() // Google的Maven仓库
  18. mavenCentral() // Maven中央仓库
  19. }
  20. }

永远记住buildscript{}块应位于plugins{}块的顶部。

英文:

Simply remove the buildscript{} block and add it on top of plugins{} block, Like this:

  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. repositories {
  4. google() // Google's Maven repository
  5. mavenCentral() // Maven Central repository
  6. }
  7. dependencies {// Add the dependency for the Google services Gradle plugin
  8. classpath 'com.google.gms:google-services:4.3.15'
  9. }
  10. }
  11. plugins {
  12. id 'com.android.application' version '8.0.2' apply false
  13. id 'com.android.library' version '8.0.2' apply false
  14. }
  15. allprojects {
  16. repositories {// Make sure that you have the following two repositories
  17. google() // Google's Maven repository
  18. mavenCentral() // Maven Central repository
  19. }
  20. }

Always remember that buildscript{} block should be on top of plugins{} block.

huangapple
  • 本文由 发表于 2023年6月13日 08:46:11
  • 转载请务必保留本文链接:https://go.coder-hub.com/76461080.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定