Gentle version bump and added the dexcount gradle plugin

This commit is contained in:
Paul Hawke 2017-07-04 14:14:17 -05:00
parent e7044c9dda
commit d53858f7d2
3 changed files with 8 additions and 3 deletions

View file

@ -1,6 +1,7 @@
apply plugin: 'com.android.application' apply plugin: 'com.android.application'
apply plugin: 'jacoco-android' apply plugin: 'jacoco-android'
apply from: 'quality.gradle' apply from: 'quality.gradle'
apply plugin: 'com.getkeepsafe.dexcount'
dependencies { dependencies {
compile 'com.github.nicolas-raoul:Quadtree:ac16ea8035bf07' compile 'com.github.nicolas-raoul:Quadtree:ac16ea8035bf07'
@ -13,10 +14,12 @@ dependencies {
compile "com.android.support:support-v4:${project.supportLibVersion}" compile "com.android.support:support-v4:${project.supportLibVersion}"
compile "com.android.support:appcompat-v7:${project.supportLibVersion}" compile "com.android.support:appcompat-v7:${project.supportLibVersion}"
compile "com.android.support:design:${project.supportLibVersion}" compile "com.android.support:design:${project.supportLibVersion}"
compile 'com.google.code.gson:gson:2.7' compile 'com.google.code.gson:gson:2.8.0'
compile "com.jakewharton:butterknife:$BUTTERKNIFE_VERSION" compile "com.jakewharton:butterknife:$BUTTERKNIFE_VERSION"
annotationProcessor "com.jakewharton:butterknife-compiler:$BUTTERKNIFE_VERSION" annotationProcessor "com.jakewharton:butterknife-compiler:$BUTTERKNIFE_VERSION"
compile 'com.jakewharton.timber:timber:4.5.1' compile 'com.jakewharton.timber:timber:4.5.1'
compile 'com.squareup.okhttp3:okhttp:3.8.1'
compile 'com.squareup.okio:okio:1.13.0'
compile ('com.mapbox.mapboxsdk:mapbox-android-sdk:5.0.2@aar'){ compile ('com.mapbox.mapboxsdk:mapbox-android-sdk:5.0.2@aar'){
transitive=true transitive=true
} }

View file

@ -7,6 +7,7 @@ buildscript {
dependencies { dependencies {
classpath "com.android.tools.build:gradle:${project.gradleVersion}" classpath "com.android.tools.build:gradle:${project.gradleVersion}"
classpath 'com.dicedmelon.gradle:jacoco-android:0.1.1' classpath 'com.dicedmelon.gradle:jacoco-android:0.1.1'
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.7.1'
} }
} }

View file

@ -1,6 +1,6 @@
gradleVersion = 2.3.0 gradleVersion = 2.3.0
supportLibVersion = 25.2.0 supportLibVersion = 25.3.1
compileSdkVersion = android-25 compileSdkVersion = android-25
buildToolsVersion = 25.0.1 buildToolsVersion = 25.0.1
@ -12,6 +12,7 @@ targetSdkVersion = 23
android.useDeprecatedNdk=true android.useDeprecatedNdk=true
# Library dependencies # Library dependencies
BUTTERKNIFE_VERSION=8.4.0 BUTTERKNIFE_VERSION=8.6.0
GUAVA_VERSION=19.0 GUAVA_VERSION=19.0
org.gradle.jvmargs=-Xmx1536M