Android: Remove NoSuchMethodException error

CleanUp NoSuchMethodException error(QtActivity.notifyQtAndroidPluginRunning)
appears on application start up.

Fixes: QTBUG-93620
Change-Id: Ic835e00d02af17e1b48c0ff66d82e5957c635deb
Reviewed-by: Assam Boudjelthia <assam.boudjelthia@qt.io>
(cherry picked from commit 066a1de8e7b198dbe99cdecefeae94d5f0e5f289)
This commit is contained in:
Pekka Gehör 2021-05-10 14:49:40 +03:00
parent e5dfa8de64
commit 52362abf2c

View File

@ -1131,4 +1131,9 @@ public class QtActivity extends Activity
{
QtNative.activityDelegate().notifyObjectFocus(viewId);
}
public void notifyQtAndroidPluginRunning(boolean running)
{
QtNative.activityDelegate().notifyQtAndroidPluginRunning(running);
}
}