Skip to content

Commit 3639523

Browse files
natario1rogerhu
authored andcommitted
Bump version (#721)
* Bump version * Fix readme
1 parent e0391f7 commit 3639523

File tree

2 files changed

+7
-19
lines changed

2 files changed

+7
-19
lines changed

Parse/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ apply plugin: 'com.github.kt3k.coveralls'
55
apply plugin: 'com.jfrog.bintray'
66

77
group = 'com.parse'
8-
version = '1.15.9-SNAPSHOT'
8+
version = '1.16.0'
99

1010
ext {
1111
projDescription = 'A library that gives you access to the powerful Parse cloud platform from your Android app.'

README.md

Lines changed: 6 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ For more information about Parse and its features, see [the website][parseplatfo
2121

2222
```groovy
2323
dependencies {
24-
compile 'com.parse:parse-android:1.15.8'
24+
compile 'com.parse:parse-android:1.16.0'
2525
}
2626
```
2727

@@ -43,7 +43,7 @@ For more information about Parse and its features, see [the website][parseplatfo
4343

4444
You may define `com.parse.SERVER_URL` and `com.parse.APPLICATION_ID` meta-data in your `AndroidManifest.xml`:
4545

46-
```
46+
```xml
4747
<application ...>
4848
<meta-data
4949
android:name="com.parse.SERVER_URL"
@@ -55,24 +55,11 @@ For more information about Parse and its features, see [the website][parseplatfo
5555
</application>
5656
```
5757

58-
Initialize Parse in a custom class that extends `Application`:
59-
```
60-
import com.parse.Parse;
61-
import android.app.Application;
62-
63-
public class App extends Application {
64-
@Override
65-
public void onCreate() {
66-
super.onCreate();
67-
Parse.initialize(this);
68-
}
69-
}
70-
```
71-
7258
- **Option 2:** Setup in the Application
7359

7460
Initialize Parse in a custom class that extends `Application`:
75-
```
61+
62+
```java
7663
import com.parse.Parse;
7764
import android.app.Application;
7865

@@ -90,7 +77,8 @@ For more information about Parse and its features, see [the website][parseplatfo
9077
```
9178

9279
For either option, the custom `Application` class must be registered in `AndroidManifest.xml`:
93-
```
80+
81+
```xml
9482
<application
9583
android:name=".App"
9684
...>

0 commit comments

Comments
 (0)