nitrodamsel/Parse-SDK-Android


Parse SDK for Android https://parse.com/

Download


Step 1. Add the JitPack repository to your build file

Add it in your root settings.gradle at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url 'https://jitpack.io' }
		}
	}

Add it in your settings.gradle.kts at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url = uri("https://jitpack.io") }
		}
	}

Add to pom.xml

	<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>

Add it in your build.sbt at the end of resolvers:

 
    resolvers += "jitpack" at "https://jitpack.io"
        
    

Add it in your project.clj at the end of repositories:

 
    :repositories [["jitpack" "https://jitpack.io"]]
        
    

Step 2. Add the dependency

	dependencies {
		implementation 'com.github.rjcristy:Parse-SDK-Android:1.13.0'
	}
	dependencies {
		implementation("com.github.rjcristy:Parse-SDK-Android:1.13.0")
	}
	<dependency>
	    <groupId>com.github.rjcristy</groupId>
	    <artifactId>Parse-SDK-Android</artifactId>
	    <version>1.13.0</version>
	</dependency>

                            
    libraryDependencies += "com.github.rjcristy" % "Parse-SDK-Android" % "1.13.0"
        
        

                            
    :dependencies [[com.github.rjcristy/Parse-SDK-Android "1.13.0"]]
        
        

Readme


Parse SDK for Android

Build Status Coverage Status Maven Central License

A library that gives you access to the powerful Parse cloud platform from your Android app. For more information about Parse and its features, see the website and getting started.

Download

Download the latest JAR or define in Gradle:

dependencies {
  compile 'com.parse:parse-android:1.13.0'
}

Snapshots of the development version are available in Sonatype's snapshots repository.

Usage

Everything can done through the supplied gradle wrapper:

Compile a JAR

./gradlew clean jarRelease

Outputs can be found in Parse/build/libs/

Run the Tests

./gradlew clean testDebug

Results can be found in Parse/build/reports/

Get Code Coverage Reports

./gradlew clean jacocoTestReport

Results can be found in Parse/build/reports/

How Do I Contribute?

We want to make contributing to this project as easy and transparent as possible. Please refer to the Contribution Guidelines.

Other Parse Projects

License

Copyright (c) 2015-present, Parse, LLC.
All rights reserved.

This source code is licensed under the BSD-style license found in the
LICENSE file in the root directory of this source tree. An additional grant 
of patent rights can be found in the PATENTS file in the same directory.