Skip to content

Commit

Permalink
add override for onNewIntent (#6404) (#6406)
Browse files Browse the repository at this point in the history
  • Loading branch information
AGulev committed Feb 21, 2022
1 parent 32cf678 commit bf99d20
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions engine/glfw/java/com/dynamo/android/DefoldActivity.java
Expand Up @@ -294,6 +294,12 @@ public boolean dispatchKeyEvent(KeyEvent event) {
return super.dispatchKeyEvent(event);
}

@Override
protected void onNewIntent(Intent intent) {
super.onNewIntent(intent);
setIntent(intent);
}

/** show virtual keyboard
* Implemented here to ensure that calls from native code are delayed and run on the UI thread.
*/
Expand Down

0 comments on commit bf99d20

Please sign in to comment.