android - 找不到参数的方法 maven() [build_48jju0eu9q7aafln0yi713a7l$_run_closure1$_closure4@3cb5a1fe]

标签 android gradle arduino

My build.gradle

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

 buildscript {
  repositories {
    jcenter()
    google()
  }
  dependencies {
    classpath 'com.android.tools.build:gradle:3.5.0'

    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
  }
}

allprojects {
  repositories {
    jcenter()
  }
  maven {
    url "https://maven.google.com"

  }
}     

task clean(type: Delete) {
  delete rootProject.buildDir
}

**我的错误代码是

Could not find method maven() for arguments [build_48jju0eu9q7aafln0yi713a7l$_run_closure1$_closure4@3cb5a1fe] on root project 'androidtest2' of type org.gradle.api.Project.**

https://github.com/ujink/Android-HC06-Arduino

这个程序

最佳答案

maven block 移动到 repositories block 内:

allprojects {
  repositories {
    jcenter()
    maven {
       url "https://maven.google.com"
    }
  }
}  

关于android - 找不到参数的方法 maven() [build_48jju0eu9q7aafln0yi713a7l$_run_closure1$_closure4@3cb5a1fe],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57956642/

相关文章:

安卓 fragment : empty space on top

android - 无法使用 Ionic 2 框架安装 cordova 相机插件

android - service.startForeground 是否意味着唤醒锁?

android - RecyclerView上 Unresolved reference

javascript - 访问不断变化的变量将不起作用(Johnny-Five 操纵杆)

c - Arduino 上的并行执行

python - raspberry pi 和 teensy 之间的串行通信(使用 UART/GPIO 引脚)

Android 捕获屏幕到 ImageReader 的表面

gradle - 如何基于另一个子项目的原始源目录设置原始源目录?

android - gradle中的cd命令不起作用