I want to close the Trusted web activity tab programmatically. I am trying the onDestroy method from twaLauncher but it does not work.
twaLauncher = new TwaLauncher(activity);
twaLauncher.launch( new TrustedWebActivityIntentBuilder(uri), null, null, null);
final Handler handler = new Handler(Looper.getMainLooper());
handler.postDelayed(new Runnable() {
@Override
public void run() {
twaLauncher.destroy();
Toast.makeText(activity, " twaLauncher.destroy() called", Toast.LENGTH_LONG).show();
}
}, 5000);