@@ -77,6 +77,7 @@ public boolean execute(String action, JSONArray args, CallbackContext callbackCo
7777 return shGetAppKey (callbackContext );
7878 }
7979 if (action .equals ("shDeeplinking" )){
80+ Log .e ("Anurag" ,"shDeeplinking in java 1" );
8081 return processDeeplinkRequest (callbackContext );
8182 }
8283 if (action .equals ("shSendSimpleFeedback" )){
@@ -676,6 +677,7 @@ private boolean shRegisterViewCallback(CallbackContext callbackContext){
676677
677678
678679 private boolean shGetViewName (CallbackContext callbackContext ){
680+ Log .e ("Anurag" ,"shGetViewName" );
679681 final Context context = cordova .getActivity ().getApplicationContext ();
680682 Class noParams [] = {};
681683 Class [] paramContext = new Class [1 ];
@@ -687,8 +689,11 @@ private boolean shGetViewName(CallbackContext callbackContext){
687689 Object obj = pushMethod .invoke (null ,context );
688690 if (null != obj ) {
689691 Method addPushModule = push .getDeclaredMethod ("getAppPage" , noParams );
692+ Log .e ("Anurag" ,"shGetViewName 1" );
690693 Object result = addPushModule .invoke (obj );
694+ Log .e ("Anurag" ,"apppage" +result );
691695 if (result instanceof String ){
696+ Log .e ("Anurag" ,"apppage 2" +result );
692697 String tmp = ((String )result );
693698 callbackContext .success (tmp );
694699 }
0 commit comments