前提・実現したいこと
これを参考に
https://developers.google.com/ml-kit/vision/text-recognition/android?hl=ja
1.In your project-level build.gradle file, make sure to include Google's Maven repository in both your buildscript and allprojects sections.
Google's Maven repository を build.gradle(プロジェクト)の allprojects に
追加しようと思いましたができません。
buildscript {
repositories {
google()
mavenCentral()
mavenLocal() //←これは成功しました。 }
上記の部分はうまくいったのですが
allprojectsでも追加となるとエラーになってしまいます。
対処法をご存知の方アドバイス頂けましたら幸いです。
発生している問題・エラーメッセージ
エラーメッセージ 多過ぎてはるのはやめました
該当のソースコード
// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { google() mavenCentral() mavenLocal() } dependencies { classpath "com.android.tools.build:gradle:7.0.4" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.20" // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } allprojects { repositories { google() mavenCentral() } } task clean(type: Delete) { delete rootProject.buildDir }
あなたの回答
tips
プレビュー