I'm using the below code to launch Waze maps. Now my app want to get a callback whenever the Waze map has been loaded? Is there any direct call backs available? I googled but no luck. Any hack or any way can I achieve this?
String url = "waze://?q="+destination+ "&navigate=yes";
Intent intentWaze = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
intentWaze.setPackage("com.waze");
mContext.startActivity(intentWaze);
Any Links or code will be helpful. Thanks in Advance.