From 3639523fa103bf164b5687656d8f9044b5cecf5a Mon Sep 17 00:00:00 2001 From: Mattia Iavarone Date: Thu, 24 Aug 2017 15:53:13 +0200 Subject: [PATCH] Bump version (#721) * Bump version * Fix readme --- Parse/build.gradle | 2 +- README.md | 24 ++++++------------------ 2 files changed, 7 insertions(+), 19 deletions(-) diff --git a/Parse/build.gradle b/Parse/build.gradle index 19071facd..edb6c7088 100644 --- a/Parse/build.gradle +++ b/Parse/build.gradle @@ -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.' diff --git a/README.md b/README.md index f4abede8e..3e7b65227 100644 --- a/README.md +++ b/README.md @@ -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' } ``` @@ -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 ``` - 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; @@ -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