【发布时间】:2025-11-23 06:10:01
【问题描述】:
我应该改变什么依赖来避免这个警告。我正在使用 openScale (https://github.com/oliexdev/openScale) 并且无法让项目在 Android Studio 中运行。 这是我的毕业典礼:
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.1'
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.3.1"
}
}
allprojects {
repositories {
maven { url 'https://maven.google.com' }
maven { url 'https://jitpack.io' }
jcenter()
mavenCentral()
}
}
【问题讨论】: