Skip to content

Commit 90970df

Browse files
author
Justin Kirk
committed
[skip ci] Disable minifyEnabled
1 parent 71567c2 commit 90970df

3 files changed

Lines changed: 8 additions & 9 deletions

File tree

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ buildscript {
99
jcenter()
1010
}
1111
dependencies {
12-
classpath 'com.android.tools.build:gradle:3.1.4'
12+
classpath 'com.android.tools.build:gradle:3.2.0'
1313
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
14-
classpath 'com.novoda:bintray-release:0.8.1'
14+
classpath "guru.stefma.bintrayrelease:bintrayrelease:1.0.0"
1515
classpath "org.jacoco:org.jacoco.core:$jacocoVersion"
1616
}
1717
}

form/build.gradle

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apply plugin: 'com.android.library'
22
apply plugin: 'kotlin-android'
33
apply plugin: 'kotlin-android-extensions'
4-
apply plugin: 'com.novoda.bintray-release'
4+
apply plugin: "guru.stefma.bintrayrelease"
55
apply plugin: 'jacoco'
66

77
android {
@@ -10,14 +10,14 @@ android {
1010
defaultConfig {
1111
minSdkVersion 15
1212
targetSdkVersion 28
13-
versionCode 26
13+
versionCode 28
1414
versionName "5.0.3"
1515
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1616
}
1717

1818
buildTypes {
1919
release {
20-
minifyEnabled true
20+
minifyEnabled false
2121
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2222
}
2323
debug {
@@ -105,12 +105,11 @@ dependencies {
105105
}
106106

107107
publish {
108+
version = "5.0.3"
109+
group = "com.thejuki"
108110
userOrg = 'thejuki'
109-
groupId = 'com.thejuki'
110111
artifactId = 'k-form-master'
111-
publishVersion = '5.0.3'
112112
desc = 'Easily build generic forms with minimal effort (A Kotlin port of FormMaster)'
113113
website = 'https://github.com/TheJuki/KFormMaster'
114114
}
115115

116-

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip

0 commit comments

Comments
 (0)