Skip to content

Commit

Permalink
update startActivity to fix Android 13 intent filter changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Zac McKenney committed Apr 25, 2023
1 parent 51a1c93 commit 1efb27d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/util/adb.js
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,8 @@ export default class ADBUtils {
await wrapADBCall(async () => {
await adbClient.getDevice(deviceId).startActivity({
wait: true,
action: 'android.activity.MAIN',
action: 'android.intent.action.MAIN',
category: 'android.intent.category.LAUNCHER',
component,
extras,
});
Expand Down

0 comments on commit 1efb27d

Please sign in to comment.