-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
25 lines (17 loc) · 907 Bytes
/
settings.gradle
File metadata and controls
25 lines (17 loc) · 907 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
maven { url 'https://maven.aliyun.com/repository/public' }
maven { url 'https://maven.aliyun.com/repository/google' }
maven { url "https://jitpack.io" }
}
}
rootProject.name = "AndroidExamples"
include ':Binder.Common', ':Binder.JavaClient', ':Binder.JavaService', ':Binder.NdkService'
project(':Binder.Common').projectDir = file('./binder/Common')
project(':Binder.JavaClient').projectDir = file('./binder/JavaBinderClient')
project(':Binder.JavaService').projectDir = file('./binder/JavaBinderService')
project(':Binder.NdkService').projectDir = file('./binder/NdkBinderService')
include ':Crash.Breakpad', ':Crash.Crasher'
project(':Crash.Breakpad').projectDir = file('./crash/breakpad')
project(':Crash.Crasher').projectDir = file('./crash/crasher')