-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathsettings.gradle
More file actions
31 lines (28 loc) · 1.32 KB
/
settings.gradle
File metadata and controls
31 lines (28 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
rootProject.name = 'nicegram-android'
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
include(":TMessagesProj")
include(":TMessagesProj_App")
include(":TMessagesProj_AppHuawei")
include(":TMessagesProj_AppHockeyApp")
include(":TMessagesProj_AppStandalone")
include(":TMessagesProj_AppTests")
include(":nicegram-features")
includeBuild('nicegram-assistant-android') {
dependencySubstitution {
substitute module('nicegram:assistant-core') using project(':assistant-core')
substitute module('nicegram:features:account-export') using project(':features:account-export')
substitute module('nicegram:features:user-activities') using project(':features:user-activities')
substitute module('nicegram:features:ai-chat-analysis') using project(':features:ai-chat-analysis')
substitute module('nicegram:core:network') using project(':core:network')
substitute module('nicegram:core:markets') using project(':core:markets')
substitute module('nicegram:features:rep-user') using project(':features:rep-user')
substitute module('nicegram:features:nicegram-billing') using project(':features:nicegram-billing')
}
}
dependencyResolutionManagement {
versionCatalogs {
internalLibs {
from(files("nicegram-assistant-android/gradle/libs.versions.toml"))
}
}
}