File tree 1 file changed +14
-0
lines changed
1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -82,6 +82,7 @@ public void ExecuteCommand(Command command)
82
82
case "trackAdRevenueV2" : TrackAdRevenueV2 ( ) ; break ;
83
83
case "getLastDeeplink" : GetLastDeeplink ( ) ; break ;
84
84
case "verifyPurchase" : VerifyPurchase ( ) ; break ;
85
+ case "processDeeplink" : ProcessDeeplink ( ) ; break ;
85
86
default : CommandNotFound ( _command . ClassName , _command . MethodName ) ; break ;
86
87
}
87
88
}
@@ -1010,6 +1011,12 @@ private void VerifyPurchase()
1010
1011
#endif
1011
1012
}
1012
1013
1014
+ private void ProcessDeeplink ( )
1015
+ {
1016
+ var deeplink = _command . GetFirstParameterValue ( "deeplink" ) ;
1017
+ Adjust . processDeeplink ( deeplink , DeeplinkResolvedCallback ) ;
1018
+ }
1019
+
1013
1020
// helper methods
1014
1021
1015
1022
private void VerificationInfoCallback ( AdjustPurchaseVerificationInfo verificationInfo )
@@ -1021,6 +1028,13 @@ private void VerificationInfoCallback(AdjustPurchaseVerificationInfo verificatio
1021
1028
_testLibrary . SendInfoToServer ( localExtraPath ) ;
1022
1029
}
1023
1030
1031
+ private void DeeplinkResolvedCallback ( string resolvedLink )
1032
+ {
1033
+ string localExtraPath = ExtraPath ;
1034
+ _testLibrary . AddInfoToSend ( "resolved_link" , resolvedLink ) ;
1035
+ _testLibrary . SendInfoToServer ( localExtraPath ) ;
1036
+ }
1037
+
1024
1038
private void CommandNotFound ( string className , string methodName )
1025
1039
{
1026
1040
TestApp . Log ( "Adjust Test: Method '" + methodName + "' not found for class '" + className + "'" ) ;
You can’t perform that action at this time.
0 commit comments