-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathSublimeAndroid.sublime-settings
30 lines (23 loc) · 1.03 KB
/
SublimeAndroid.sublime-settings
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
{
// Manual override for sdk dir, useful for launching sdk tools when no active android project
// is open.
"sublimeandroid_sdk_dir": "",
// Manual override for project path, normally autodetected
"sublimeandroid_project_path": "",
// Automatically loads settings for external packages at appropriate times to keep
// autocompletion and lint fresh.
"sublimeandroid_auto_load_settings": true,
// Builds project in background on save to keep autocompletion and lint fresh.
"sublimeandroid_auto_build": true,
// For commands requiring a device selection and only one device is attached,
// select it without prompt.
"sublimeandroid_device_select_default": true,
// Specify arguments to pass to ant
"sublimeandroid_ant_args": "",
// Select default ant target
"sublimeandroid_default_ant_target": "debug",
// Set default activity used for Run. Should be full path to activity, for example:
// com.domain.app/.HomeActivity
// If not set, default activity is parsed from AndroidManifest.xml
"sublimeandroid_default_activity": ""
}