-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsettings.gradle
More file actions
34 lines (32 loc) · 1.32 KB
/
Copy pathsettings.gradle
File metadata and controls
34 lines (32 loc) · 1.32 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
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
maven { url 'https://jitpack.io' }
maven { url 'https://maven.aliyun.com/nexus/content/groups/public/' }
maven { url "https://maven.aliyun.com/repository/public" }
}
plugins {
id 'com.android.application' version '8.9.2'
id 'com.android.library' version '8.9.2'
id 'org.jetbrains.kotlin.android' version '2.1.0'
id 'org.jetbrains.kotlin.kapt' version '2.1.0'
id 'com.google.devtools.ksp' version '2.1.0-1.0.29'
id 'com.vanniktech.maven.publish' version '0.33.0'
}
}
include ':app'
include ':assistsxkit'
def assistsComposite = new File(settingsDir, '../assists')
if (assistsComposite.isDirectory()) {
includeBuild(assistsComposite) {
dependencySubstitution {
substitute module('io.github.ven-coder:assists-base') using project(':assists')
substitute module('io.github.ven-coder:assists-mp') using project(':assists-mp')
substitute module('io.github.ven-coder:assists-web') using project(':assists-web')
substitute module('io.github.ven-coder:assists-ime') using project(':assists-ime')
substitute module('io.github.ven-coder:assists-log') using project(':assists-log')
}
}
}