Skip to content
This repository was archived by the owner on Jul 17, 2020. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: amoad/amoad-cocos2dx-module
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.1.1
Choose a base ref
...
head repository: amoad/amoad-cocos2dx-module
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 9 commits
  • 5 files changed
  • 4 contributors

Commits on Jan 19, 2018

  1. Update SDK version to 5.2.0

    takasfz committed Jan 19, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    662755a View commit details
  2. Merge pull request #34 from takasfz/v5_2_0

    Update SDK version to 5.2.0
    takasfz authored Jan 19, 2018
    Copy the full SHA
    ed4e489 View commit details

Commits on Mar 7, 2018

  1. Update iOS SDK to v5.2.1

    takasfz committed Mar 7, 2018
    Copy the full SHA
    2daebe0 View commit details

Commits on Mar 8, 2018

  1. Merge pull request #35 from takasfz/v5_2_1

    Update iOS SDK to v5.2.1
    takasfz authored Mar 8, 2018
    Copy the full SHA
    233591c View commit details

Commits on Mar 14, 2018

  1. Update iOS SDK to v5.2.2

    takasfz committed Mar 14, 2018
    Copy the full SHA
    ada646c View commit details
  2. Merge pull request #36 from takasfz/v5_2_2

    Update iOS SDK to v5.2.2
    takasfz authored Mar 14, 2018
    Copy the full SHA
    2447c25 View commit details

Commits on Apr 13, 2018

  1. Update Android SDK to v5.2.1

    菅原 清吾 committed Apr 13, 2018
    Copy the full SHA
    1d009b2 View commit details
  2. Merge pull request #37 from SeigoSugawara/v5_2_1

    Update Android SDK to v5.2.1
    SeigoSugawara authored Apr 13, 2018
    Copy the full SHA
    e75224d View commit details

Commits on Jul 17, 2020

  1. Update README.md

    tko3 authored Jul 17, 2020
    Copy the full SHA
    6d3611a View commit details
Binary file modified AMoAdCocos2dxModuleDemo/proj.android-studio/app/libs/AMoAd.jar
Binary file not shown.
Binary file modified AMoAdCocos2dxModuleDemo/proj.android/libs/AMoAd.jar
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
//
// AMoAdInterstitialVideo.h
// AMoAd
//
// Created by AMoAd on 08/12/2017.
//

#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>

#import "AMoAd.h"

@class AMoAdInterstitialVideo;

@protocol AMoAdInterstitialVideoDelegate <NSObject>
@optional
/// 広告のロードが完了した
- (void)amoadInterstitialVideo:(AMoAdInterstitialVideo *)amoadInterstitialVideo didLoadAd:(AMoAdResult)result;
/// 動画の再生を開始した
- (void)amoadInterstitialVideoDidStart:(AMoAdInterstitialVideo *)amoadInterstitialVideo;
/// 動画を最後まで再生完了した
- (void)amoadInterstitialVideoDidComplete:(AMoAdInterstitialVideo *)amoadInterstitialVideo;
/// 動画の再生に失敗した
- (void)amoadInterstitialVideoDidFailToPlay:(AMoAdInterstitialVideo *)amoadInterstitialVideo NS_SWIFT_NAME(amoadInterstitialVideoDidFailToPlay(_:));
/// 広告を表示した
- (void)amoadInterstitialVideoDidShow:(AMoAdInterstitialVideo *)amoadInterstitialVideo;
/// 広告を閉じた
- (void)amoadInterstitialVideoWillDismiss:(AMoAdInterstitialVideo *)amoadInterstitialVideo;
/// 広告をクリックした
- (void)amoadInterstitialVideoDidClickAd:(AMoAdInterstitialVideo *)amoadInterstitialVideo;
@end

/// インタースティシャル動画広告
@interface AMoAdInterstitialVideo: NSObject

@property (nonatomic, weak) id<AMoAdInterstitialVideoDelegate> delegate;

/// 広告のロードが完了していれば YES
@property (nonatomic, readonly, getter=isLoaded) BOOL loaded;
/// 動画の再生中にユーザが×ボタンをタップして広告を閉じることを許可するか
@property (nonatomic, getter=isCancellable) BOOL cancellable;

+ (instancetype)sharedInstanceWithSid:(NSString *)sid tag:(NSString *)tag;
- (instancetype)init NS_UNAVAILABLE;

/// 広告をロードする
- (void)load;
/// 広告を表示する
- (void)show;
/// 広告を閉じる
- (void)dismiss;

@end
Binary file modified AMoAdCocos2dxModuleDemo/proj.ios_mac/AMoAdSdk/libAMoAd.a
Binary file not shown.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -2,9 +2,8 @@
<img width="172" height="61" src="http://www.amoad.com/images/logo.png">
</div>

# AMoAd Cocos2d-x Module ver 5.1.1

- [ZIPをダウンロード](https://github.com/amoad/amoad-cocos2dx-module/archive/master.zip)
# AMoAd Cocos2d-x Module ver 5.2.2
**このリポジトリは現在使われておりません**
- [ドキュメント](https://github.com/amoad/amoad-cocos2dx-module/wiki)

## Demo