Skip to content

Commit

Permalink
Merge pull request #258 from prebid/release/1.11
Browse files Browse the repository at this point in the history
Release 1.11
  • Loading branch information
yoalex5 authored Apr 16, 2021
2 parents ceddc37 + 82fa861 commit a084fc4
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions Example/PrebidDemoJava/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ project.gradle.taskGraph.whenReady {

//repositories{
// maven {
// url 'https://oss.sonatype.org/content/repositories/orgprebid-1050'
// url 'https://oss.sonatype.org/content/repositories/orgprebid-1057'
// }
//}

Expand All @@ -65,8 +65,8 @@ dependencies {
implementation project(':PrebidMobile')

// Maven
// implementation 'org.prebid:prebid-mobile-sdk:1.10'
// implementation 'org.prebid:prebid-mobile-sdk-core:1.10'
// implementation 'org.prebid:prebid-mobile-sdk:1.11'
// implementation 'org.prebid:prebid-mobile-sdk-core:1.11'

// LocalMaven .aar
// implementation 'org.prebid:prebid-mobile-sdk:+'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class PrebidServerSettings {
static final String deviceModel = Build.MODEL;
static final String os = "android";
static String userAgent = null;
static String sdk_version = "1.10";
static String sdk_version = "1.11";
static String pkgVersion = "";
static String appName = "";
private static int mnc = -1;
Expand Down
2 changes: 1 addition & 1 deletion PrebidMobile/publisher.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.library'

task javadoc(type: Javadoc) {
source = android.sourceSets.main.java.srcDirs
classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
classpath += project.files(android.getBootClasspath().join(File.pathSeparator)) + configurations.compile

options.addStringOption('Xdoclint:none', '-quiet')
options.addStringOption('encoding', 'UTF-8')
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ implementation 'org.prebid:prebid-mobile-sdk:[1,2)'
```
If you want explicit stable version, please use the following:
```
implementation 'org.prebid:prebid-mobile-sdk:1.10'
implementation 'org.prebid:prebid-mobile-sdk:1.11'
```


Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

ext {
prebidVersionName = "1.10"
prebidVersionName = "1.11"
prebidVersionCode = 1
minSDKVersion = 16
targetSDKVersion = 28
Expand Down
2 changes: 1 addition & 1 deletion scripts/Maven/PrebidMobile-core-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<!-- SonaType Requirements -->
<groupId>org.prebid</groupId>
<artifactId>prebid-mobile-sdk-core</artifactId>
<version>1.10</version>
<version>1.11</version>

<name>Prebid Mobile Android SDK</name>
<description>Prebid Mobile</description>
Expand Down
4 changes: 2 additions & 2 deletions scripts/Maven/PrebidMobile-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<!-- SonaType Requirements -->
<groupId>org.prebid</groupId>
<artifactId>prebid-mobile-sdk</artifactId>
<version>1.10</version>
<version>1.11</version>

<name>Prebid Mobile Android SDK</name>
<description>Prebid Mobile</description>
Expand Down Expand Up @@ -52,7 +52,7 @@
<dependency>
<groupId>org.prebid</groupId>
<artifactId>prebid-mobile-sdk-core</artifactId>
<version>1.10</version>
<version>1.11</version>
<scope>compile</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit a084fc4

Please sign in to comment.