@@ -198,6 +198,12 @@ public void onMethodCall(MethodCall call, final Result result) {
198198 case "checkForNewAttStatus" :
199199 checkForNewAttStatus (call , result );
200200 break ;
201+ case "getAppTrackingAuthorizationStatus" :
202+ getAppTrackingAuthorizationStatus (call , result );
203+ break ;
204+ case "getLastDeeplink" :
205+ getLastDeeplink (call , result );
206+ break ;
201207 case "setTestOptions" :
202208 setTestOptions (call , result );
203209 break ;
@@ -1055,6 +1061,18 @@ private void trackThirdPartySharing(final MethodCall call, final Result result)
10551061 }
10561062 }
10571063
1064+ // Partner sharing settings.
1065+ if (thirdPartySharingMap .containsKey ("partnerSharingSettings" )) {
1066+ String strPartnerSharingSettings = (String ) thirdPartySharingMap .get ("partnerSharingSettings" );
1067+ String [] arrayPartnerSharingSettings = strPartnerSharingSettings .split ("__ADJ__" , -1 );
1068+ for (int i = 0 ; i < arrayPartnerSharingSettings .length ; i += 3 ) {
1069+ thirdPartySharing .addPartnerSharingSetting (
1070+ arrayPartnerSharingSettings [i ],
1071+ arrayPartnerSharingSettings [i +1 ],
1072+ Boolean .parseBoolean (arrayPartnerSharingSettings [i +2 ]));
1073+ }
1074+ }
1075+
10581076 // Track third party sharing.
10591077 Adjust .trackThirdPartySharing (thirdPartySharing );
10601078 result .success (null );
@@ -1076,6 +1094,14 @@ private void checkForNewAttStatus(final MethodCall call, final Result result) {
10761094 result .success ("Error. No checkForNewAttStatus for Android platform!" );
10771095 }
10781096
1097+ private void getAppTrackingAuthorizationStatus (final MethodCall call , final Result result ) {
1098+ result .success ("Error. No getAppTrackingAuthorizationStatus for Android platform!" );
1099+ }
1100+
1101+ private void getLastDeeplink (final MethodCall call , final Result result ) {
1102+ result .success ("Error. No getLastDeeplink for Android platform!" );
1103+ }
1104+
10791105 private void setTestOptions (final MethodCall call , final Result result ) {
10801106 AdjustTestOptions testOptions = new AdjustTestOptions ();
10811107 Map testOptionsMap = (Map ) call .arguments ;
0 commit comments