Skip to content
This repository was archived by the owner on Feb 26, 2022. It is now read-only.

Commit e3d1702

Browse files
committed
Updated documentation with instructions to upgrade Gradle
1 parent 1c34b4f commit e3d1702

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.3.2
2+
3+
* Updated documentation with instructions to upgrade Gradle.
4+
15
## 0.3.1
26

37
* Upgraded Appodeal library to version 2.8.0-Beta.

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,12 @@ $ flutter pub get
2727

2828
3. Follow the Appodeal installation instructions available for [iOS](https://wiki.appodeal.com/en/ios/2-8-0-beta-ios-sdk-integration) and [Android](https://wiki.appodeal.com/en/android/2-8-0-beta-android-sdk-integration-guide). However, ignore the steps to include the Appodeal SDK dependencies in Gradle (Android) and Cocoapods (iOS) since these steps will be done by this package.
2929

30-
### Extra step for Android only
30+
### Extra steps for Android only
3131

3232
4. The Appodeal framework includes mutiple libraries from different ad providers, so it's very likely that the inclusion of this plugin in your project will make it exceed to 64K limit method count of Android. To solve this problem you need to enable multidex in your project; follow the instructions [here](https://developer.android.com/studio/build/multidex) to learn how to do that.
3333

34+
5. Your Android project must use Gradle 4.0.1 or greater. If you are using an older version, please upgrade it by editing the file `android/build.gradle`.
35+
3436
### Extra step for iOS 14+ only
3537

3638
4. Follow the instructions available [here](https://wiki.appodeal.com/en/ios/2-8-0-beta-ios-sdk-integration/ios-14+-support) to learn how to implement the permission request to track users, but ignore the part to include some code in the `AppDelegate` file. This code is already included in this plugin and it will be executed when you call the function `Appodeal.requestIOSTrackingAuthorization()`, before the initialization of Appodeal (see below).

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ packages:
77
path: ".."
88
relative: true
99
source: path
10-
version: "0.3.1"
10+
version: "0.3.2"
1111
async:
1212
dependency: transitive
1313
description:

ios/appodeal_flutter.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'appodeal_flutter'
7-
s.version = '0.3.1'
7+
s.version = '0.3.2'
88
s.summary = 'A Flutter plugin to display ads from Appodeal.'
99
s.description = <<-DESC
1010
A Flutter plugin to display ads from Appodeal; it supports the new reqs for iOS 14+ and GDPR/CCPA consent.

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: appodeal_flutter
22
description: A Flutter plugin to display ads from Appodeal; it supports the new reqs for iOS 14+ and GDPR/CCPA consent.
3-
version: 0.3.1
3+
version: 0.3.2
44
homepage: https://github.com/vegidio-flutter/appodeal
55

66
environment:

0 commit comments

Comments
 (0)