Skip to content

Commit c265fd7

Browse files
committed
UPGRADE flutter-hms-ml to 13.4.35.300
1 parent 0a17e8c commit c265fd7

119 files changed

Lines changed: 6674 additions & 1021 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
151 KB
Loading
103 KB
Loading

flutter-hms-ads/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 13.4.35+300
2+
3+
* Banner Ad - Platform View implementation
4+
* Instream Ad - implementation
5+
* HMSLogger - implementation
6+
* New function implementations comes with 'HMS Ads Kit: 13.4.35.300'
7+
* General bug fixes and improvements
8+
19
## 13.4.32
210

311
* Initial release.

flutter-hms-ads/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ You may add Your own copyright statement to Your modifications and may provide a
5050

5151
9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
5252

53-
END OF TERMS AND CONDITIONS
53+
END OF TERMS AND CONDITIONS

flutter-hms-ads/README.md

Lines changed: 3209 additions & 429 deletions
Large diffs are not rendered by default.

flutter-hms-ads/android/.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
*.iml
2+
.gradle
3+
/local.properties
4+
/.idea/workspace.xml
5+
/.idea/libraries
6+
.DS_Store
7+
/build
8+
/captures
9+
/gradle/checkstyle
10+
/gradle/findbugs

flutter-hms-ads/android/build.gradle

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,10 @@ android {
3636
}
3737

3838
dependencies {
39-
implementation 'com.huawei.hms:ads-lite:13.4.32.300'
40-
implementation 'com.huawei.hms:ads-consent:3.4.32.300'
41-
implementation 'com.huawei.hms:ads-identifier:3.4.32.300'
42-
implementation 'com.huawei.hms:ads-installreferrer:3.4.32.300'
39+
implementation 'com.huawei.hms:ads-lite:13.4.35.300'
40+
implementation 'com.huawei.hms:ads-consent:3.4.35.300'
41+
implementation 'com.huawei.hms:ads-identifier:3.4.35.300'
42+
implementation 'com.huawei.hms:ads-installreferrer:3.4.35.300'
43+
implementation 'com.huawei.hms:stats:5.0.5.300'
44+
implementation 'com.huawei.agconnect:agconnect-core:1.4.2.301'
4345
}

flutter-hms-ads/android/src/main/AndroidManifest.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
22
package="com.huawei.hms.flutter.ads">
33

4+
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
45
<application android:usesCleartextTraffic="true">
56
<service
67
android:name="com.huawei.hms.flutter.ads.installreferrer.PpsChannelInfoService"

flutter-hms-ads/android/src/main/aidl/com/huawei/android/hms/ppskit/IPPSChannelInfoService.aidl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*
22
Copyright 2020. Huawei Technologies Co., Ltd. All rights reserved.
33
4-
Licensed under the Apache License, Version 2.0 (the "License");
4+
Licensed under the Apache License, Version 2.0 (the "License")
55
you may not use this file except in compliance with the License.
66
You may obtain a copy of the License at
77
8-
http://www.apache.org/licenses/LICENSE-2.0
8+
https://www.apache.org/licenses/LICENSE-2.0
99
1010
Unless required by applicable law or agreed to in writing, software
1111
distributed under the License is distributed on an "AS IS" BASIS,

flutter-hms-ads/android/src/main/java/com/huawei/hms/flutter/ads/HmsAdsPlugin.java

Lines changed: 98 additions & 23 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)