Remove PlayPublisher plugin

pull/535/head
Alinson S. Xavier 6 years ago
parent c676a02ca8
commit 1e6cb2e841

@ -11,7 +11,6 @@ buildscript {
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8' classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$KOTLIN_VERSION" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$KOTLIN_VERSION"
classpath 'org.ajoberstar:grgit:1.5.0' classpath 'org.ajoberstar:grgit:1.5.0'
classpath 'com.github.triplet.gradle:play-publisher:1.2.0'
} }
} }

@ -2,7 +2,6 @@ apply plugin: 'idea'
apply plugin: 'com.android.application' apply plugin: 'com.android.application'
apply plugin: 'kotlin-android' apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt' apply plugin: 'kotlin-kapt'
apply plugin: 'com.github.triplet.play'
import org.ajoberstar.grgit.Grgit import org.ajoberstar.grgit.Grgit
ext { ext {
@ -26,12 +25,6 @@ android {
buildTypes.release.signingConfig signingConfigs.release buildTypes.release.signingConfig signingConfigs.release
} }
playAccountConfigs {
defaultAccountConfig {
jsonFile = file('../secret/playstore.json')
}
}
defaultConfig { defaultConfig {
versionCode VERSION_CODE as Integer versionCode VERSION_CODE as Integer
versionName "$VERSION_NAME ($GIT_BRANCH $GIT_COMMIT)" versionName "$VERSION_NAME ($GIT_BRANCH $GIT_COMMIT)"
@ -40,8 +33,6 @@ android {
applicationId "org.isoron.uhabits" applicationId "org.isoron.uhabits"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
playAccountConfig = playAccountConfigs.defaultAccountConfig
} }
buildTypes { buildTypes {
@ -144,7 +135,3 @@ repositories {
kapt { kapt {
correctErrorTypes = true correctErrorTypes = true
} }
play {
track = 'alpha'
}

Loading…
Cancel
Save