2017-03-09 14:29:23 -06:00
|
|
|
apply plugin: 'com.android.application'
|
2017-07-20 10:37:55 -05:00
|
|
|
apply plugin: 'jacoco-android'
|
|
|
|
apply plugin: "io.github.ddimtirov.codacy"
|
2017-03-09 14:29:23 -06:00
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 25
|
2017-07-13 14:35:29 -05:00
|
|
|
buildToolsVersion "25.0.3"
|
2017-03-09 14:29:23 -06:00
|
|
|
defaultConfig {
|
2017-04-19 13:36:27 -05:00
|
|
|
applicationId "io.github.wulkanowy"
|
2017-03-09 14:29:23 -06:00
|
|
|
minSdkVersion 14
|
|
|
|
targetSdkVersion 25
|
|
|
|
versionCode 1
|
2017-04-19 17:02:52 -05:00
|
|
|
versionName "0.1.0"
|
2017-03-09 14:29:23 -06:00
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
2017-06-30 09:02:21 -05:00
|
|
|
vectorDrawables.useSupportLibrary = true
|
2017-03-09 14:29:23 -06:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
2017-07-20 10:37:55 -05:00
|
|
|
debug {
|
|
|
|
testCoverageEnabled = true
|
|
|
|
}
|
2017-03-09 14:29:23 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2017-04-04 13:37:12 -05:00
|
|
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
2017-03-09 14:29:23 -06:00
|
|
|
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
|
|
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
|
|
})
|
2017-04-07 14:15:42 -05:00
|
|
|
compile 'com.android.support:appcompat-v7:25.3.1'
|
2017-03-09 14:29:23 -06:00
|
|
|
compile 'com.android.support.constraint:constraint-layout:1.0.2'
|
2017-07-15 06:47:03 -05:00
|
|
|
compile 'org.jsoup:jsoup:1.10.3'
|
2017-06-30 09:02:21 -05:00
|
|
|
compile 'com.android.support:design:25.3.1'
|
|
|
|
compile 'com.android.support:support-vector-drawable:25.3.1'
|
2017-07-13 10:26:37 -05:00
|
|
|
compile 'com.android.support:support-v4:25.3.1'
|
2017-07-18 13:17:18 -05:00
|
|
|
compile 'com.android.support:recyclerview-v7:25.3.1'
|
|
|
|
compile 'com.squareup.picasso:picasso:2.5.2'
|
2017-07-31 09:52:34 -05:00
|
|
|
compile 'org.apache.commons:commons-lang3:3.6'
|
2017-07-18 13:17:18 -05:00
|
|
|
|
2017-03-09 14:29:23 -06:00
|
|
|
testCompile 'junit:junit:4.12'
|
2017-08-02 05:04:49 -05:00
|
|
|
testCompile 'org.powermock:powermock-api-mockito:1.6.1'
|
|
|
|
testCompile group: 'org.unitils', name: 'unitils-core', version: '3.3'
|
2017-03-09 14:29:23 -06:00
|
|
|
}
|