Skip to content

Commit

Permalink
Update version to 0.1.0 (#17)
Browse files Browse the repository at this point in the history
* Update version to 0.1.0
* Update calabash tests
  • Loading branch information
anwzhang authored Sep 26, 2017
1 parent 7777a80 commit 18cd48e
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 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>0.0.2</version>
<version>0.1.0</version>
<packaging>jar</packaging>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,14 @@
end

Then(/^I should see AppNexus creative in HTMLBannerWebView$/) do
@query_results = query("HTMLBannerWebView css:'body'")
unless @query_results[1]['html'].include?('pbm.js')
raise "Pbm.js not found, prebid creative was not served"
@query_results = query("HTMLBannerWebView css:'div'")
contains_header_bidding_ad = false
len = @query_results.length
for counter in 0..len-1
contains_header_bidding_ad = contains_header_bidding_ad || @query_results[counter]['textContent'].include?("A Header Bidding Ad.")
end
unless contains_header_bidding_ad
raise "Prebid creative was not served"
end
end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public class Settings {
public static final String deviceModel = Build.MODEL;
public static final String os = "android";
public static String userAgent = null;
public static String sdk_version = "0.0.0";
public static String sdk_version = "0.1.0";
public static String pkgVersion = "";
public static String appName = "";
static int mnc = -1;
Expand Down
2 changes: 1 addition & 1 deletion PrebidMobile/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
ext {
releaseProguardEnabled = false
debugProguardEnabled = false
prebidVersionName = "0.0.2"
prebidVersionName = "0.1.0"
prebidVersionCode = 1
minSDKVersion = 14
targetSDKVersion = 25
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ 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:0.0.2'
compile 'org.prebid:prebid-mobile-sdk:[0,1)'
```


Expand Down

0 comments on commit 18cd48e

Please sign in to comment.