mirror of
https://github.com/nextcloud/android.git
synced 2024-11-22 21:25:35 +03:00
6767ab8636
Signed-off-by: alperozturk <alper_ozturk@proton.me>
22 lines
627 B
Groovy
22 lines
627 B
Groovy
rootProject.name = 'Nextcloud'
|
|
|
|
include ':app'
|
|
include ':appscan'
|
|
|
|
//includeBuild('../android-common') {
|
|
// dependencySubstitution {
|
|
// substitute module('com.github.nextcloud.android-common:ui') using project(':ui')
|
|
// }
|
|
//}
|
|
|
|
//includeBuild('../android-library') {
|
|
// dependencySubstitution {
|
|
// substitute module('com.github.nextcloud:android-library') using project(':library')
|
|
// }
|
|
//}
|
|
|
|
includeBuild('/Users/alperozturk/Desktop/nextcloud/nextcloud_android_library') {
|
|
dependencySubstitution {
|
|
substitute module('com.github.nextcloud:android-library') using project(':library')
|
|
}
|
|
}
|