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

Commit

Permalink
⬆️ Upgraded Appodeal lib to version 2.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
debaserr authored and vegidio committed Dec 17, 2020
1 parent 793e236 commit 193d891
Show file tree
Hide file tree
Showing 11 changed files with 267 additions and 245 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ on:

jobs:
push:
if: "!contains(github.event.head_commit.message, '[skip-ci]')"
if: "!contains(github.event.head_commit.message, '[skip-ci]') && !contains(github.event.head_commit.message, '👀')"
runs-on: ubuntu-latest
container:
image: google/dart:latest
image: google/dart:latest
env:
PUB_DEV_PUBLISH_ACCESS_TOKEN: ${{ secrets.PUB_DEV_PUBLISH_ACCESS_TOKEN }}
PUB_DEV_PUBLISH_REFRESH_TOKEN: ${{ secrets.PUB_DEV_PUBLISH_REFRESH_TOKEN }}
Expand Down
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
## 0.4.1

* Upgraded Appodeal library to version 2.8.1 (thanks [@debaserr](https://github.com/debaserr)).

## 0.4.0

* Added new permission controls for Android & iOS (thanks [@tommybuonomo](https://github.com/tommybuonomo))
* Added new permission controls for Android & iOS (thanks [@tommybuonomo](https://github.com/tommybuonomo)).

## 0.3.2

Expand Down Expand Up @@ -62,4 +66,4 @@

## 0.0.1

* Initial release with support for __Banner__, __Interstitital__, __Reward__ and __Non-Skippable__ ads.
* Initial release with support for __Banner__, __Interstitital__, __Reward__ and __Non-Skippable__ ads.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ dependencies:
$ flutter pub get
```

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.
3. Follow the Appodeal installation instructions available for [iOS](https://wiki.appodeal.com/en/ios/2-8-1-ios-sdk-integration) and [Android](https://wiki.appodeal.com/en/android/2-8-1-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.

### Extra steps for Android only

Expand All @@ -35,7 +35,7 @@ $ flutter pub get

### Extra step for iOS 14+ only

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).
4. Follow the instructions available [here](https://wiki.appodeal.com/en/ios/2-8-1-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).

## 📱 Usage

Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ android {

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'com.appodeal.ads:sdk:2.8.0.+'
implementation 'com.appodeal.ads:sdk:2.8.1.+'
implementation 'com.explorestack:consent:1.0.2'
implementation 'com.google.android.gms:play-services-ads-identifier:15.0.0'
}
2 changes: 1 addition & 1 deletion example/ios/Flutter/AppFrameworkInfo.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
<key>CFBundleVersion</key>
<string>1.0</string>
<key>MinimumOSVersion</key>
<string>9.0</string>
<string>10.0</string>
</dict>
</plist>
2 changes: 1 addition & 1 deletion example/ios/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Uncomment this line to define a global platform for your project
platform :ios, '9.0'
platform :ios, '10.0'

# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
Expand Down
Loading

0 comments on commit 193d891

Please sign in to comment.