mirror of
https://github.com/HighCapable/YukiHookAPI.git
synced 2025-09-01 08:15:37 +08:00
docs: update Gradle dependencies syntax (#105)
This commit is contained in:
@@ -113,8 +113,8 @@ Add repositories in your project `build.gradle.kts`.
|
||||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
// Must be added when used as an Xposed Module, otherwise optional
|
||||
maven { url("https://api.xposed.info/") }
|
||||
// Must be added when used as an Xposed Module, otherwise optional
|
||||
maven("https://api.xposed.info/")
|
||||
}
|
||||
```
|
||||
|
||||
@@ -185,7 +185,7 @@ repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
// Must be added when used as an Xposed Module, otherwise optional
|
||||
maven { url("https://api.xposed.info/") }
|
||||
maven("https://api.xposed.info/")
|
||||
}
|
||||
```
|
||||
|
||||
|
@@ -114,7 +114,7 @@ repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
// 作为 Xposed 模块使用务必添加,其它情况可选
|
||||
maven { url("https://api.xposed.info/") }
|
||||
maven("https://api.xposed.info/")
|
||||
}
|
||||
```
|
||||
|
||||
@@ -185,7 +185,7 @@ repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
// 作为 Xposed 模块使用务必添加,其它情况可选
|
||||
maven { url("https://api.xposed.info/") }
|
||||
maven("https://api.xposed.info/")
|
||||
}
|
||||
```
|
||||
|
||||
|
Reference in New Issue
Block a user