1
0
mirror of https://github.com/wulkanowy/wulkanowy.git synced 2024-09-19 22:59:08 -05:00
wulkanowy-mirror/app/build.gradle

50 lines
1.7 KiB
Groovy
Raw Normal View History

2017-03-09 14:29:23 -06:00
apply plugin: 'com.android.application'
apply plugin: 'jacoco-android'
apply plugin: "io.github.ddimtirov.codacy"
2017-03-09 14:29:23 -06:00
android {
compileSdkVersion 26
buildToolsVersion "26.0.1"
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 26
2017-03-09 14:29:23 -06:00
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"
vectorDrawables.useSupportLibrary = true
2017-03-09 14:29:23 -06:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
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'
})
compile 'com.android.support:appcompat-v7:26.0.1'
2017-03-09 14:29:23 -06:00
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.android.support:design:26.0.1'
compile 'com.android.support:support-vector-drawable:26.0.1'
compile 'com.android.support:support-v4:26.0.1'
compile 'com.android.support:recyclerview-v7:26.0.1'
compile 'com.android.support:cardview-v7:26.0.1'
compile 'com.google.code.gson:gson:2.8.1'
2017-09-10 05:50:28 -05:00
compile 'com.firebase:firebase-jobdispatcher:0.8.1'
compile 'com.thoughtbot:expandablerecyclerview:1.3'
compile 'org.apache.commons:commons-lang3:3.6'
compile 'org.apache.commons:commons-collections4:4.1'
compile 'org.jsoup:jsoup:1.10.3'
2017-03-09 14:29:23 -06:00
testCompile 'junit:junit:4.12'
2017-08-31 09:44:04 -05:00
testCompile 'org.mockito:mockito-core:2.9.0'
2017-03-09 14:29:23 -06:00
}