Skip to content

Commit

Permalink
Release 1.1 (#108)
Browse files Browse the repository at this point in the history
* release 1.1

* update read me
  • Loading branch information
anwzhang authored Jun 10, 2019
1 parent 368baef commit 0b585ae
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.prebid</groupId>
<artifactId>prebid-mobile-sdk</artifactId>
<version>1.0</version>
<version>1.1</version>
<packaging>jar</packaging>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class PrebidServerSettings {
static final String deviceModel = Build.MODEL;
static final String os = "android";
static String userAgent = null;
static String sdk_version = "1.0";
static String sdk_version = "1.1";
static String pkgVersion = "";
static String appName = "";
private static int mnc = -1;
Expand Down
3 changes: 2 additions & 1 deletion PrebidMobile/API1.0Demo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ project.gradle.taskGraph.whenReady {

repositories{
maven {
url 'https://oss.sonatype.org/service/local/repositories/orgprebid-1020/content'
url 'https://oss.sonatype.org/service/local/repositories/orgprebid-1021/content'
}
}

Expand All @@ -51,6 +51,7 @@ dependencies {
}
implementation project(':API1.0')
localJarImplementation fileTree(dir: 'libs', include: ['*.jar'])
mavenImplementation 'org.prebid:prebid-mobile-sdk:1.1'
androidTestImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.0'
androidTestImplementation 'androidx.test:rules:1.1.1'
Expand Down
2 changes: 1 addition & 1 deletion PrebidMobile/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.0"
prebidVersionName = "1.1"
prebidVersionCode = 1
minSDKVersion = 16
targetSDKVersion = 28
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ Get started with Prebid Mobile by creating a Prebid Server account [here](http:/
Easily include the Prebid Mobile SDK using Maven. Simply add this line to your gradle dependencies:

```
compile 'org.prebid:prebid-mobile-sdk:[1,2)'
implementation 'org.prebid:prebid-mobile-sdk:[1,2)'
```
If you want explicit stable vesion, please use the following:
```
implementation 'org.prebid:prebid-mobile-sdk:1.1'
```


Expand Down

0 comments on commit 0b585ae

Please sign in to comment.