コード例 #1
0
 void Start()
 {
     print("[mytest] set app info");
     // Set GreeAdsReward account info.
     // グリーリワードのアカウントを設定する
     GreeAdsReward.setAppInfo(this.info().siteId.Trim(), this.info().siteKey.Trim(), this.info().useSandbox);
     GreeAdsReward.setDevMode(true);
 }
コード例 #2
0
    private void performSupershipSDKAction()
    {
        GreeAdsReward.setAppInfo(this.info().siteId.Trim(), this.info().siteKey.Trim(), this.info().useSandbox);
        GreeAdsReward.setDevMode(true);

        // Trigger sendAction() call with deviceUniqueIdentifier.
        // string uniqueId = SystemInfo.deviceUniqueIdentifier;
        int randomId = Random.Range(1, 999999);

        GreeAdsReward.sendAction(this.info().campaignID.Trim(), this.info().advertisement.Trim(), this.info().url_scheme.Trim(), "identifier" + randomId);
    }