Skip to content

Commit

Permalink
v2.3.2
Browse files Browse the repository at this point in the history
- Update gradle.
  • Loading branch information
tingyik90 committed Feb 2, 2019
1 parent 2183865 commit 89ca6b7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
9 changes: 5 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,10 @@ android {
debug {
applicationIdSuffix ".debug"
debuggable true
minifyEnabled true
useProguard false
minifyEnabled false
// Starting Android Studio 3.3, when setting useProguard false, the plugin now uses R8 instead of
// ProGuard to shrink and obfuscate. This means you can't minify without obfuscate anymore.
// See https://developer.android.com/studio/releases/gradle-plugin#3-3-0
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.debug
// Disable firebase analytics and crashlytics for debug build
Expand All @@ -60,8 +62,7 @@ android {
leak {
applicationIdSuffix ".leak"
debuggable true
minifyEnabled true
useProguard false
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.leak
resValue("bool", "firebase_analytics_collection_deactivated", "true")
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
ext.kotlin_version = '1.3.11'
ext.kotlin_version = '1.3.20'
repositories {
google()
jcenter()
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.android.tools.build:gradle:3.3.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.google.gms:google-services:4.2.0'
classpath 'io.fabric.tools:gradle:1.26.1'
Expand Down

0 comments on commit 89ca6b7

Please sign in to comment.