Skip to content

Commit 48f5aa5

Browse files
author
Max Presman
committed
update readme
1 parent 3f354bf commit 48f5aa5

3 files changed

Lines changed: 8 additions & 35 deletions

File tree

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,5 @@ language: java
22
sudo: false # faster builds
33
jdk:
44
- oraclejdk8
5-
- oraclejdk7
65
after_success:
76
- bash <(curl -s https://codecov.io/bash)

README.md

Lines changed: 7 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,13 @@
1-
# Please direct all Support Questions and Concerns to [email protected]
21

3-
###PubNub Java-based APIs for core Java, Android, J2ME, BlackBerry version 3.7
2+
3+
###PubNub Java-based APIs for Java / Android
44
Learn more at http://www.pubnub.com
55

6+
[![Build Status](https://travis-ci.org/pubnub/java.svg?branch=edge)](https://travis-ci.org/pubnub/java)
7+
[![codecov.io](https://codecov.io/github/pubnub/java/coverage.svg?branch=edge)](https://codecov.io/github/pubnub/java?branch=edge)
8+
[![Download](https://api.bintray.com/packages/bintray/jcenter/com.pubnub%3Apubnub/images/download.svg)](https://bintray.com/bintray/jcenter/com.pubnub%3Apubnub/_latestVersion)
9+
[![Maven Central](https://img.shields.io/maven-central/v/com.pubnub/pubnub.svg)]()
10+
611
## Complete Documentation
712
Available at [http://www.pubnub.com/docs/java/javase/javase-sdk.html](http://www.pubnub.com/docs/java/javase/javase-sdk.html)
813

9-
## Migrating from 3.5.1 and older...
10-
11-
3.5.2+ is backward compatible with 3.5.1. Some of the methods have been deprecated.
12-
You will see compiler warnings for the same. Please refer to java docs for alternate
13-
methods to be used.
14-
15-
## Subdirectory Description
16-
This repo contains the following platform-specific subdirectories:
17-
18-
### Android
19-
Client for the Mobile Android OS
20-
21-
### GWT
22-
Client for the GWT Platform
23-
24-
### J2ME
25-
Client for the J2ME Mobile Platform
26-
27-
### Blackberry
28-
Client for the Blackberry Mobile Platform
29-
30-
### Java
31-
Everything else! Java development for POJOs, J2EE, J2SE, etc.
32-
33-
### Java for Google App Engine
34-
See the Java subdir, and the GAE_3.3 tag
35-
36-
### Codename One
37-
Easy amazing, fast, native mobile app development using Java™ for all platforms
38-
See the [codenameone](codenameone) subdir for client and example code.
39-
40-
# Please direct all Support Questions and Concerns to [email protected]

src/test/java/com.pubnub.api/endpoints/pubsub/PublishTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ public void testSuccessStoreSync() throws PubnubException, InterruptedException
5959
public void testSuccessMetaSync() throws PubnubException, InterruptedException {
6060
server.enqueue(new MockResponse().setBody(("[1,\"Sent\",\"14598111595318003\"]")));
6161
instance.channel("coolChannel").message("hi").meta(Arrays.asList("m1", "m2")).shouldStore(true).build().sync();
62+
6263
assertEquals("/publish/myPublishKey/mySubscribeKey/0/coolChannel/0/%22hi%22?meta=[%22m1%22,%22m2%22]&store=true&uuid=myUUID", server.takeRequest().getPath());
6364
}
6465

0 commit comments

Comments
 (0)