Skip to content

Commit

Permalink
V4.7.3 (#153)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-benjamin-volland authored Jun 25, 2020
1 parent ec3d2a5 commit c9b5e45
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 33 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/.idea
/.DS_Store
/TeadsSDKDemo/.idea/vcs.xml
/TeadsSDKDemo/.idea/modules.xml
/TeadsSDKDemo/.idea/gradle.xml
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
# Changelog
### v4.7.3
_2020-06-25_
- *Huawei OAID support*. This feature allows Teads network to deliver an ad on Huawei devices without Google play services.
To enable the feature it's mandatory to import the Huawei SDK in the application dependecies (`implementation "com.huawei.hms:ads-identifier:3.4.28.313"`)
[OAID](https://developer.huawei.com/consumer/en/codelab/HMSAdsOAID/index.html#0)
- Fix for TCF v2 serialization

> :warning: Breaking change: Due to Huawei SDK, the minimum Android SDK supported is now the api 19
### v4.7.2
_2020-06-03_
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ repositories{
}
}
dependencies {
implementation("tv.teads.sdk.android:sdk:4.7.2@aar") {
implementation("tv.teads.sdk.android:sdk:4.7.3@aar") {
transitive = true
}
}
Expand Down
19 changes: 0 additions & 19 deletions TeadsSDKDemo/.idea/gradle.xml

This file was deleted.

10 changes: 0 additions & 10 deletions TeadsSDKDemo/.idea/modules.xml

This file was deleted.

5 changes: 5 additions & 0 deletions TeadsSDKDemo/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ repositories {
maven {
url "https://s3.amazonaws.com/moat-sdk-builds"
}
//Huawei maven repository
maven { url "https://developer.huawei.com/repo/" }
}

tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
Expand Down Expand Up @@ -71,6 +73,9 @@ dependencies {
}
implementation project(':webviewhelper')

//Huawei ads identifier sdk
implementation "com.huawei.hms:ads-identifier:3.4.28.313"

testImplementation "junit:junit:$junitVersion"
androidTestImplementation "junit:junit:$junitVersion"
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
Expand Down
6 changes: 3 additions & 3 deletions TeadsSDKDemo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ allprojects {
ext {
// Libraries
groupId = "tv.teads.sdk.android"
libraryVersionCode = 74
libraryVersion = "4.7.2"
libraryVersionCode = 75
libraryVersion = "4.7.3"

//Global configurations
projectBuildToolsVersion = '28.0.3'
projectSdkVersion = 28
libraryMinSdkVersion = 16
libraryMinSdkVersion = 19
libraryTargetSdkVersion = 26
// Dependencies versions
supportLibVersion = '27.1.1'
Expand Down

0 comments on commit c9b5e45

Please sign in to comment.