-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinappdevtools.gradle
More file actions
34 lines (30 loc) · 1.25 KB
/
inappdevtools.gradle
File metadata and controls
34 lines (30 loc) · 1.25 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
inappdevtools {
//// Build flags (affect plugin behaviour)
enabled = true
exclude = ["release"]
useNoop = true
debug = true
//// Feature switches (build)
//sourceInclusion = false
//sourceInspection = false
//viewInspection = false
//storageInspection = false
//networkInterceptor = false
//// Customization flags (runtime)
notes = "This is a SAMPLE NOTE about this compilation:\n" +
" - Developers can add any text here using Gradle configuration\n" +
" - Useful to describe changes or to provide instructions"
teamName = "DemoTeam"
teamDesc = "Team description or any text you want to show on top of Team screen. Change it with 'teamDesc' configuration."
teamEmail = 'inappdevtools@gmail.com'
teamLinks = [website: "http://inappdevtools.org",
repo : "https://github.com/rafaco/InAppDevTools",
issues : "https://github.com/rafaco/InAppDevTools/issues",
readme : "https://github.com/rafaco/InAppDevTools/blob/master/README.md"]
// Feature switches (runtime)
//overlayEnabled = false
//invocationByShake = false
//invocationByIcon = true
//callDefaultCrashHandler = true
//injectEventsOnLogcat = false
}