Skip to content

Commit

Permalink
Bump version (#721)
Browse files Browse the repository at this point in the history
* Bump version

* Fix readme
  • Loading branch information
natario1 authored and rogerhu committed Aug 24, 2017
1 parent e0391f7 commit 3639523
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 19 deletions.
2 changes: 1 addition & 1 deletion Parse/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ apply plugin: 'com.github.kt3k.coveralls'
apply plugin: 'com.jfrog.bintray'

group = 'com.parse'
version = '1.15.9-SNAPSHOT'
version = '1.16.0'

ext {
projDescription = 'A library that gives you access to the powerful Parse cloud platform from your Android app.'
Expand Down
24 changes: 6 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ For more information about Parse and its features, see [the website][parseplatfo

```groovy
dependencies {
compile 'com.parse:parse-android:1.15.8'
compile 'com.parse:parse-android:1.16.0'
}
```

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

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

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

Initialize Parse in a custom class that extends `Application`:
```
import com.parse.Parse;
import android.app.Application;
public class App extends Application {
@Override
public void onCreate() {
super.onCreate();
Parse.initialize(this);
}
}
```

- **Option 2:** Setup in the Application

Initialize Parse in a custom class that extends `Application`:
```

```java
import com.parse.Parse;
import android.app.Application;

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

For either option, the custom `Application` class must be registered in `AndroidManifest.xml`:
```

```xml
<application
android:name=".App"
...>
Expand Down

0 comments on commit 3639523

Please sign in to comment.