Skip to content

Commit

Permalink
Release: version 4.19.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Uchitel and Bichen Wang committed Dec 11, 2017
1 parent 500814a commit 36894cc
Show file tree
Hide file tree
Showing 82 changed files with 1,945 additions and 240 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## Version 4.19.0 (December 11, 2017)
- Updated Facebook Audience Network adapters to 4.26.1.
- Updated Flurry adapters to 8.1.0.
- Updated Millennial rewarded ads adapters to 6.6.1.
- Fixed a potential crash for native video ads when attempting to blur the last video frame.
- Fixed a duplicate on loaded callback for some rewarded ads.

## Version 4.18.0 (November 1, 2017)
- Updated the SDK compile version to 26. Android API 26 artifacts live in the new Google maven repository `maven { url 'https://maven.google.com' }`. See [this article](https://developer.android.com/about/versions/oreo/android-8.0-migration.html) for more information about using Android API 26.
- Fixed MoPub in-app browser's back and forward button icons.
Expand Down
22 changes: 22 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#!/usr/bin/env groovy
pipeline {
agent any
environment {
ANDROID_HOME = '/Users/jenkins/Library/Android/sdk'
}
stages {
stage('Build') {
steps {
sh './gradlew clean build'
}
}
}
post {
success {
hipchatSend message: "${env.JOB_NAME} #${env.BUILD_NUMBER} has succeeded.", color: 'GREEN'
}
failure {
hipchatSend message: "Attention @here ${env.JOB_NAME} #${env.BUILD_NUMBER} has failed.", color: 'RED'
}
}
}
34 changes: 14 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ The MoPub SDK is available via:
}
dependencies {
compile('com.mopub:mopub-sdk:4.18.0@aar') {
compile('com.mopub:mopub-sdk:4.19.0@aar') {
transitive = true
}
}
Expand All @@ -61,27 +61,27 @@ The MoPub SDK is available via:
// ... other project dependencies
// For banners
compile('com.mopub:mopub-sdk-banner:4.18.0@aar') {
compile('com.mopub:mopub-sdk-banner:4.19.0@aar') {
transitive = true
}
// For interstitials
compile('com.mopub:mopub-sdk-interstitial:4.18.0@aar') {
compile('com.mopub:mopub-sdk-interstitial:4.19.0@aar') {
transitive = true
}
// For rewarded videos. This will automatically also include interstitials
compile('com.mopub:mopub-sdk-rewardedvideo:4.18.0@aar') {
compile('com.mopub:mopub-sdk-rewardedvideo:4.19.0@aar') {
transitive = true
}
// For native static (images).
compile('com.mopub:mopub-sdk-native-static:4.18.0@aar') {
compile('com.mopub:mopub-sdk-native-static:4.19.0@aar') {
transitive = true
}
// For native video. This will automatically also include native static
compile('com.mopub:mopub-sdk-native-video:4.18.0@aar') {
compile('com.mopub:mopub-sdk-native-video:4.19.0@aar') {
transitive = true
}
}
Expand Down Expand Up @@ -109,24 +109,18 @@ The MoPub SDK is available via:
## New in this Version
Please view the [changelog](https://github.com/mopub/mopub-android-sdk/blob/master/CHANGELOG.md) for a complete list of additions, fixes, and enhancements in the latest release.
- Updated the SDK compile version to 26. Android API 26 artifacts live in the new Google maven repository `maven { url 'https://maven.google.com' }`. See [this article](https://developer.android.com/about/versions/oreo/android-8.0-migration.html) for more information about using Android API 26.
- Fixed MoPub in-app browser's back and forward button icons.
- Updated AdMob adapters to 11.4.0.
- Updated Chartboost adapters to 7.0.1.
- Updated Facebook Audience Network adapters to 4.26.0.
- Updated Millennial to 6.6.1.
- Updated TapJoy adapters to 11.11.0.
- Updated Unity Ads adapters to 2.1.1.
- Updated Vungle adapters to 5.3.0.
- Updated Facebook Audience Network adapters to 4.26.1.
- Updated Flurry adapters to 8.1.0.
- Updated Millennial rewarded ads adapters to 6.6.1.
## Requirements
- Android 4.1 (API Version 16) and up (**Updated in 4.12.0**)
- android-support-v4.jar, r23 (**Updated in 4.4.0**)
- android-support-annotations.jar, r23 (**Updated in 4.4.0**)
- android-support-v7-recyclerview.jar, r23 (**Updated in 4.4.0**)
- android-support-v4.jar, r26 (**Updated in 4.18.0**)
- android-support-annotations.jar, r26 (**Updated in 4.18.0**)
- android-support-v7-recyclerview.jar, r26 (**Updated in 4.18.0**)
- MoPub Volley Library (mopub-volley-1.1.0.jar - available on JCenter) (**Updated in 3.6.0**)
- **Recommended** Google Play Services 9.4.0
- **Recommended** Google Play Services 11.4.0
## <a name="upgradeRepositoryViewability"></a>Upgrading from 4.15.0 and Prior
In 4.16.0, dependencies were added to viewability libraries provided by AVID and Moat. Apps upgrading from previous versions must add
Expand All @@ -149,7 +143,7 @@ Update to the following to exclude one or both viewability vendors:
```
dependencies {
compile('com.mopub:mopub-sdk:4.18.0@aar') {
compile('com.mopub:mopub-sdk:4.19.0@aar') {
transitive = true
exclude module: 'libAvid-mopub' // To exclude AVID
exclude module: 'moat-mobile-app-kit' // To exclude Moat
Expand Down
Loading

0 comments on commit 36894cc

Please sign in to comment.