mirror of
https://github.com/adelphes/android-dev-ext.git
synced 2025-12-29 13:00:19 +00:00
Allow customised install arguments (#75)
* add pmInstallArgs launch config property * add missing launchActivity description correct default trace value * add launchActivity to the README * add comment describing why we look for IllegalArgumentException
This commit is contained in:
@@ -52,7 +52,13 @@ The following settings are used to configure the debugger:
|
||||
"staleBuild": "warn",
|
||||
|
||||
// Fully qualified path to the AndroidManifest.xml file compiled in the APK. Default: appSrcRoot/AndroidManifest.xml
|
||||
"manifestFile": "${workspaceRoot}/app/src/main/AndroidManifest.xml"
|
||||
"manifestFile": "${workspaceRoot}/app/src/main/AndroidManifest.xml",
|
||||
|
||||
// APK install arguments passed to the Android package manager. Run 'adb shell pm' to show valid arguments. Default: ["-r"]
|
||||
"pmInstallArgs": ["-r"],
|
||||
|
||||
// Manually specify the activity to run when the app is started.
|
||||
"launchActivity": ".MainActivity"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user