コード例 #1
0
 public void disableAppTrackingTransparencyRequest()
 {
     ConsentManagerObjCBridge.disableAppTrackingTransparencyRequest();
 }
コード例 #2
0
 public iOSConsentManager(IntPtr intPtr)
 {
     consentManagerObjCBridge = new ConsentManagerObjCBridge(intPtr);
 }
コード例 #3
0
 public void requestConsentInfoUpdate(string appodealAppKey, IConsentInfoUpdateListener listener)
 {
     consentInfoUpdateListener = listener;
     ConsentManagerObjCBridge.requestConsentInfoUpdate(appodealAppKey, onConsentInfoUpdated,
                                                       onFailedToUpdateConsentInfo);
 }
コード例 #4
0
 public iOSConsentManager()
 {
     consentManagerObjCBridge = new ConsentManagerObjCBridge();
 }