public void purchase(string SKU)
 {
     _processedSKU = SKU;
     AndroidNative.purchase(SKU);
 }
 public void LoadContacts()
 {
     AndroidNative.LoadContacts();
 }
 public void loadState(int stateKey)
 {
     AndroidNative.loadState(stateKey);
 }
 public void GetImageFromCamera()
 {
     AndroidNative.GetImageFromCamera(AndroidNativeSettings.Instance.SaveCameraImageToGallery);
 }
Beispiel #5
0
 public void SetBannersUnitID(string ad_unit_id)
 {
     _BannersUunitId = ad_unit_id;
     AndroidNative.ChangeBannersUnitID(ad_unit_id);
 }
Beispiel #6
0
 public void deleteState(int stateKey)
 {
     AndroidNative.deleteState(stateKey);
 }
    private void OnScoreSubmited(CEvent e)
    {
        GooglePlayResult result = e.data as GooglePlayResult;

        AndroidNative.showMessage("OnScoreSubmited", result.message);
    }
 public void init()
 {
     AndroidNative.showMessage(this.title, this.message, this.ok);
 }
Beispiel #9
0
    private void OnStateUpdated(CEvent e)
    {
        GoogleCloudResult result = e.data as GoogleCloudResult;

        AndroidNative.showMessage("OnStateUpdated", result.message + "\n State ID: " + result.stateKey + "\n State Data: " + result.stateDataString);
    }
Beispiel #10
0
 public void SetBannerPosition(TextAnchor anchor)
 {
     _anchor = anchor;
     AndroidNative.SetBannerPosition(gravity, id);
 }
Beispiel #11
0
 public void SetBannerPosition(int x, int y)
 {
     AndroidNative.SetBannerPosition(x, y, id);
 }
Beispiel #12
0
 private void OnMessageClose(CEvent e)
 {
     (e.dispatcher as AndroidMessage).removeEventListener(BaseEvent.COMPLETE, OnMessageClose);
     AndroidNative.showMessage("Result", "Message Closed");
 }
 public void consume(string SKU)
 {
     _processedSKU = SKU;
     AndroidNative.consume(SKU);
 }
 public void subscribe(string SKU)
 {
     _processedSKU = SKU;
     AndroidNative.subscribe(SKU);
 }
 public void LogOut()
 {
     _IsAuthed = false;
     AndroidNative.LogoutFromTwitter();
 }
Beispiel #16
0
    private void OnAllLoaded(CEvent e)
    {
        GoogleCloudResult result = e.data as GoogleCloudResult;

        AndroidNative.showMessage("OnAllLoaded", result.message + "\n" + "Total states: " + GoogleCloudManager.instance.states.Count);
    }
 public void init()
 {
     AndroidNative.showDialog(title, message, yes, no);
 }
Beispiel #18
0
 public void RgisterDevice()
 {
     AndroidNative.GCMRgisterDevice(AndroidNativeSettings.Instance.GCM_SenderId);
 }
    private void OnAchivmentUpdated(CEvent e)
    {
        GooglePlayResult result = e.data as GooglePlayResult;

        AndroidNative.showMessage("OnAchivmentUpdated ", "Id: " + result.achievementId + "\n status: " + result.message);
    }
Beispiel #20
0
    //--------------------------------------
    // PUBLIC METHODS
    //--------------------------------------

    public void LoadLastMessage()
    {
        AndroidNative.GCMLoadLastMessage();
    }
 public void GetImagesFromGallery()
 {
     AndroidNative.GetImagesFromGallery();
 }
    //--------------------------------------
    //  PUBLIC METHODS
    //--------------------------------------


    public void init()
    {
        AndroidNative.showRateDialog(title, message, yes, laiter, no, url);
    }
Beispiel #23
0
 public void RecordInAppResolution(GADInAppResolution resolution)
 {
     AndroidNative.RecordInAppResolution((int)resolution);
 }
Beispiel #24
0
 public static void StartShareIntentWithSubject(string caption, string message, string subject, string packageNamePattern = "")
 {
     AndroidNative.StartShareIntent(caption, message, subject, packageNamePattern);
 }
Beispiel #25
0
 public void SetInterstisialsUnitID(string ad_unit_id)
 {
     _InterstisialUnitId = ad_unit_id;
     AndroidNative.ChangeInterstisialsUnitID(ad_unit_id);
 }
    //--------------------------------------
    //  PUBLIC METHODS
    //--------------------------------------

    public void init()
    {
        AndroidNative.showMessage(title, message, ok);
    }
Beispiel #27
0
 public void EnableImmersiveMode()
 {
     AndroidNative.enableImmersiveMode();
 }
Beispiel #28
0
 public void GetImageFromCamera()
 {
     AndroidNative.GetImageFromCamera();
 }
    //--------------------------------------
    // PUBLIC API CALL METHODS
    //--------------------------------------

    public void loadAllStates()
    {
        AndroidNative.listStates();
    }
 public void retrieveProducDetails()
 {
     _IsProductRetrievingInProcess = true;
     AndroidNative.retrieveProducDetails();
 }