forked from openmobilehub/WordPress-Android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlocal-builds.gradle-example
More file actions
24 lines (21 loc) · 1.15 KB
/
local-builds.gradle-example
File metadata and controls
24 lines (21 loc) · 1.15 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
/*
This file is completely optional, but its usage makes it easier to work with libraries
in local path. This example file needs to be copied as `local-builds.gradle` to take
effect.
`settings.gradle` will check these properties and if the given path is valid, it'll include it
in the project and substitute the binary dependency with the local one.
Once this file is updated Gradle will need to re-configure the project. (sync)
Please note that some included builds may be slow to compile. Specifically, as of Sep 25, 2020,
making a change to FluxC can take around 2 minutes to build. This is something that'll hopefully
get better with some build improvements, but in the meantime it might be best to prefer the
binary build if you're not working on a specific library.
*/
ext {
//localAboutAutomatticPath = "../about-automattic-android"
//localFluxCPath = "../WordPress-FluxC-Android"
//localWPUtilsPath = "../WordPress-Utils-Android"
//localGutenbergMobilePath = "../gutenberg-mobile"
//localLoginFlowPath = "../WordPress-Login-Flow-Android"
//localStoriesAndroidPath = "../stories-android"
//localAztecAndroidPath = "../AztecEditor-Android"
}