Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 5552bce9 authored by Marten Gajda's avatar Marten Gajda Committed by GitHub
Browse files

Add plugin to publish app, #718 (#722)

This adds a plugin which allows for publishing the app autimatically to Google Play.
parent f9ac69e4
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -11,6 +11,7 @@ android:
    - tools
    - build-tools-26.0.2
    - build-tools-27.0.1
    - build-tools-28.0.3
    - android-24
    - android-26
    - extra
+3 −1
Original line number Diff line number Diff line
@@ -2,10 +2,12 @@
buildscript {
    repositories {
        jcenter()
        mavenCentral()
        google()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.1'
        classpath 'com.android.tools.build:gradle:3.2.1'
        classpath("com.github.triplet.gradle:play-publisher:2.0.0-rc1")
    }
}

+2 −1
Original line number Diff line number Diff line
#Thu Nov 08 02:52:41 CET 2018
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip
+0 −1
Original line number Diff line number Diff line
@@ -2,7 +2,6 @@ apply plugin: 'com.android.library'

android {
    compileSdkVersion COMPILE_SDK_VERSION.toInteger()
    buildToolsVersion BUILD_TOOLS_VERSION

    defaultConfig {
        minSdkVersion MIN_SDK_VERSION.toInteger()
+0 −1
Original line number Diff line number Diff line
@@ -2,7 +2,6 @@ apply plugin: 'com.android.library'

android {
    compileSdkVersion COMPILE_SDK_VERSION.toInteger()
    buildToolsVersion BUILD_TOOLS_VERSION

    defaultConfig {
        minSdkVersion MIN_SDK_VERSION.toInteger()
Loading