From 3891801ecc41ae7aade623e19819bad992d83c17 Mon Sep 17 00:00:00 2001 From: Grantland Chew Date: Thu, 17 Dec 2015 14:56:34 -0800 Subject: [PATCH] Remove Parse Gradle plugin from ParseStarterProject No longer relevant without ParseCrashReporting support --- ParseStarterProject/build.gradle | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/ParseStarterProject/build.gradle b/ParseStarterProject/build.gradle index a6c1e724d..277619b43 100644 --- a/ParseStarterProject/build.gradle +++ b/ParseStarterProject/build.gradle @@ -1,15 +1,4 @@ apply plugin: 'com.android.application' -apply plugin: 'com.parse' - -buildscript { - repositories { - mavenCentral() - maven { url 'https://maven.parse.com/repo' } - } - dependencies { - classpath 'com.parse.tools:gradle:1.+' - } -} android { compileSdkVersion rootProject.ext.compileSdkVersion @@ -36,13 +25,3 @@ dependencies { compile 'com.parse.bolts:bolts-tasks:1.3.0' compile project(':Parse') } - -/* Uncomment if you enable ProGuard and you want to automatically upload symbols on build. -parse { - applicationId "YOUR_APPLICATION_ID" - masterKey "YOUR_MASTER_KEY" - - // Make symbol upload automatic. Otherwise, use e.g. ../gradlew parseUploadSymbolsDebug; - uploadSymbols true -} -*/