-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
58 lines (50 loc) · 1.54 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
Properties properties = new Properties()
InputStream inputStream = file('./local.properties').newDataInputStream()
properties.load(inputStream)
//全局的地方都可以使用这个来当做。
gradle.ext.selfUserName = properties.getProperty('username')
gradle.ext.selfPassword = properties.getProperty('password')
gradle.ext.jvmTarget = "17"
gradle.ext.sourceCompatibility = JavaVersion.VERSION_17
gradle.ext.targetCompatibility = JavaVersion.VERSION_17
gradle.ext.compileSdk = 35
gradle.ext.targetSdk = 35
gradle.ext.minSdk = 26
///////end of extra params
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
maven { url "https://maven.aliyun.com/repository/public" }
google()
mavenCentral()
maven { url 'https://www.jitpack.io' }
}
}
rootProject.name = "AndroidComponts"
include ':app'
include ':Module-Android'
include ':Module-AndroidColor'
include ':Module-AndroidUi'
include ':Module-Nested'
include ':Module-Cached'
//include ':jsbridge'
include ':studyjob'
include ':jobstudy'
//include ':AuLiteSql'
//include ':AuLiteSqlKt'
//include ':MultiMedia'
include ':autoClickFloat'
include ':Module-ImageCompressed'
//include ':appcontentprovider'
//include ':appcontentresolver'
//自定义apt
include ':ClassNameAnnotations'
//include ':ClassNameAnnotations-compiler'
include ':ClassNameAnnotations-ksp'