|
@@ -138,10 +138,12 @@ allprojects {
|
|
|
}
|
|
|
```
|
|
|
|
|
|
+⚠️请注意,使用 Android Studio 北极狐版本(Arctic Fox)创建的项目,需要您前往 settings.gradle 添加上述 jitpack 仓库配置。
|
|
|
+
|
|
|
2) 在 app 的 build.gradle 文件中找到 `dependencies{}` 代码块,并在其中加入以下语句:
|
|
|
|
|
|
```
|
|
|
-def dialogx_version = "0.0.43"
|
|
|
+def dialogx_version = "0.0.43.beta13"
|
|
|
implementation "com.github.kongzue.DialogX:DialogX:${dialogx_version}"
|
|
|
```
|
|
|
|