-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpangolin_main.dart
83 lines (72 loc) · 2.36 KB
/
pangolin_main.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import 'dart:async';
import 'dart:io';
import 'package:flutter/foundation.dart';
import 'package:flutter/services.dart';
import 'package:pangolin/pangolin.dart';
MethodChannel _channel = MethodChannel('com.tongyangsheng.pangolin')..setMethodCallHandler(_methodHandler);
StreamController<BasePangolinResponse> _pangolinResponseEventHandlerController = new StreamController.broadcast();
Stream<BasePangolinResponse> get pangolinResponseEventHandler =>
_pangolinResponseEventHandlerController.stream;
Future<bool> registerPangolin({
@required String appId,
@required bool useTextureView,
@required String appName,
@required bool allowShowNotify,
@required bool allowShowPageWhenScreenLock,
@required bool debug,
@required bool supportMultiProcess}) async{
return await _channel.invokeMethod("register",
{
"appId":appId,
"useTextureView":useTextureView,
"appName":appName,
"allowShowNotify":allowShowNotify,
"allowShowPageWhenScreenLock":allowShowPageWhenScreenLock,
"debug":debug,
"supportMultiProcess":supportMultiProcess
}
);
}
Future<bool> loadSplashAd({
@required String mCodeId,
@required bool debug}) async{
return await _channel.invokeMethod("loadSplashAd",
{
"mCodeId":mCodeId,
"debug":debug
}
);
}
Future loadRewardAd({
@required String mCodeId,
@required bool debug,
@required bool supportDeepLink,
@required String rewardName,
@required int rewardAmount,
@required bool isExpress,
double expressViewAcceptedSizeH,
double expressViewAcceptedSizeW,
@required userID,
String mediaExtra,
@required bool isHorizontal,}) async {
return await _channel.invokeMethod("loadRewardAd",
{
"mCodeId" : mCodeId,
"debug" : debug,
"supportDeepLink" : supportDeepLink,
"rewardName": rewardName,
"rewardAmount" : rewardAmount,
"isExpress" : isExpress,
"expressViewAcceptedSizeH" : expressViewAcceptedSizeH,
"expressViewAcceptedSizeW" : expressViewAcceptedSizeW,
"userID" : userID,
"mediaExtra" : mediaExtra,
"isHorizontal" : isHorizontal,
});
}
Future _methodHandler(MethodCall methodCall) {
var response =
BasePangolinResponse.create(methodCall.method, methodCall.arguments);
_pangolinResponseEventHandlerController.add(response);
return Future.value();
}