-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsettings.gradle
More file actions
48 lines (42 loc) · 1.06 KB
/
settings.gradle
File metadata and controls
48 lines (42 loc) · 1.06 KB
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
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
buildscript {
ext {
agpVersion = new File(rootProject.projectDir.absoluteFile, "gradle/libs.versions.toml")
.readLines()
.stream()
.filter((line) -> line.startsWith("agp ="))
.map((line) -> line.split('"')[1])
.findFirst()
.get()
}
}
plugins {
id 'com.android.settings' version "${agpVersion}"
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = '7SIM'
include ':SettingsLib:BannerMessagePreference'
include ':SettingsLib:ButtonPreference'
include ':SettingsLib:CollapsingToolbarBaseActivity'
include ':SettingsLib:LayoutPreference'
include ':SettingsLib:SettingsTheme'
include ':SettingsLib:SettingsThemeFlags'
include ':SettingsLib:TwoTargetPreference'
android {
compileSdk 36
minSdk 29
targetSdk 36
buildToolsVersion '36.0.0'
}