From d5a744bd37ec8c54d719552a813a82c636e43ed3 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Tue, 31 Dec 2019 20:57:38 +0530 Subject: Prepare for new Play Store listing (#602) * Gradle cleanup * Update package name * Remove release APK from git This should have never been here * Move package name to dependencies.gradle * github: Setup caching for gradle * Update Play Store art * gradle: Use constraints API in place of deprecated force * Update dependencies * Raise minSdk to 23 * Target SDK 28 for now External storage handling changes are atrocious to support in this codebase so we'll be holding out as far as we can. * Revert "Opt into legacy external storage handling (#595)" Not needed on SDK 28 This reverts commit 3f249e4bffffe0ba30e7546735c7fb4576918c69. Signed-off-by: Harsh Shandilya --- build.gradle | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) (limited to 'build.gradle') diff --git a/build.gradle b/build.gradle index cebef7da..63adfba5 100644 --- a/build.gradle +++ b/build.gradle @@ -7,8 +7,6 @@ buildscript { repositories { google() jcenter() - mavenCentral() - maven { url 'https://plugins.gradle.org/m2/' } } dependencies { classpath deps.gradle_plugin.android @@ -18,15 +16,7 @@ buildscript { } plugins { - id "com.github.ben-manes.versions" version "0.27.0" -} - -allprojects { - repositories { - google() - jcenter() - mavenCentral() - } + id 'com.github.ben-manes.versions' version '0.27.0' } subprojects { @@ -35,6 +25,7 @@ subprojects { repositories { google() jcenter() + maven { url 'https://jitpack.io' } } pluginManager.withPlugin('kotlin-android') { dependencies { -- cgit v1.2.3