mirror of
https://github.com/adelphes/android-dev-ext.git
synced 2025-12-22 09:29:38 +00:00
support custom launch arguments #76
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @adelphes on 4/20/2020
Fixes #82
Add support for a new
amStartArgslaunch configuration property to allow users to define their ownam startarguments. This is similar to the existingpmInstallArgslaunch option, which allows customisation of the APK installation.The new property takes a list of strings defining the arguments to append to
am start. The arguments must include everything (including-Dto allow debugging and the name of the activity/component to launch).(The user must replace
package.name/launch.activitywith the name of the component to launch).Because
amStartArgsmust include the component to launch, this option is incompatible with thelaunchActivityoption.The output from the
am startcommand is now printed to the Debug Console, showing which component is being launched.