forked from cjqnsh0u/ProtoHax-Android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
28 lines (27 loc) · 849 Bytes
/
settings.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenLocal()
maven { url = 'https://maven.aliyun.com/repository/public' }
maven { url = 'https://repo.cloudpixel.cloud/maven_repo/' }
maven { url = 'https://raw.githubusercontent.com/CloudPixel-Studio/maven_repo/main/maven_repo/'}
google()
mavenCentral()
maven {
url = 'https://maven.pkg.github.com/shria-b/ProtoHax'
credentials {
username = System.getenv("USERNAME_GITHUB")
password = System.getenv("TOKEN_GITHUB")
}
}
}
}
rootProject.name = 'ProtoHax-Android'
include ':app'