11/*
22 * WiFiAnalyzer
3- * Copyright (C) 2017 VREM Software Development <[email protected] > 3+ * Copyright (C) 2018 VREM Software Development <[email protected] > 44 *
55 * This program is free software: you can redistribute it and/or modify
66 * it under the terms of the GNU General Public License as published by
@@ -20,11 +20,11 @@ apply plugin: 'com.android.application'
2020apply plugin : ' jacoco-android'
2121
2222android {
23- compileSdkVersion 26
24- buildToolsVersion ' 26 .0.3'
23+ compileSdkVersion 27
24+ buildToolsVersion ' 27 .0.3'
2525
2626 defaultConfig {
27- applicationId " com.vrem.wifianalyzer"
27+ applicationId " com.vrem.wifianalyzer.BETA "
2828 minSdkVersion 16
2929 targetSdkVersion 22
3030 versionCode
@@ -35,10 +35,13 @@ android {
3535 buildTypes {
3636 release {
3737 minifyEnabled true
38+ shrinkResources true
3839 proguardFiles getDefaultProguardFile(' proguard-android.txt' )
3940 signingConfig
4041 }
4142 debug {
43+ minifyEnabled false
44+ shrinkResources false
4245 debuggable true
4346 testCoverageEnabled true
4447 }
@@ -59,6 +62,10 @@ android {
5962 }
6063 }
6164 }
65+
66+ lintOptions {
67+ disable ' GoogleAppIndexingWarning'
68+ }
6269}
6370
6471jacoco {
@@ -86,8 +93,8 @@ if (project.hasProperty('keyAlias')) {
8693dependencies {
8794 // Compile Build Dependencies
8895 implementation fileTree(include : [' *.jar' ], dir : ' libs' )
89- implementation ' com.android.support:appcompat-v7:26.1.0 '
90- implementation ' com.android.support:design:26.1.0 '
96+ implementation ' com.android.support:appcompat-v7:27.0.2 '
97+ implementation ' com.android.support:design:27.0.2 '
9198 implementation ' org.apache.commons:commons-lang3:3.7'
9299 implementation ' org.apache.commons:commons-collections4:4.1'
93100 implementation ' com.jjoe64:graphview:4.2.1'
@@ -96,7 +103,7 @@ dependencies {
96103 testImplementation ' org.powermock:powermock-module-junit4:1.7.3'
97104 testImplementation ' org.powermock:powermock-api-mockito2:1.7.3'
98105 testImplementation ' com.googlecode.junit-toolbox:junit-toolbox:2.4'
99- testImplementation ' org.robolectric:robolectric:3.5 .1'
106+ testImplementation ' org.robolectric:robolectric:3.6 .1'
100107 testImplementation ' org.robolectric:shadows-support-v4:3.4-rc2'
101108 // Android Test Dependencies
102109 androidTestCompile ' com.android.support.test.espresso:espresso-core:2.2.2' , {
0 commit comments