mirror of
https://github.com/wulkanowy/wulkanowy.git
synced 2024-11-23 17:06:03 -06:00
89d235dd8a
* Add notes api with tests * Get county for snp direct from database
47 lines
1.6 KiB
Groovy
47 lines
1.6 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'jacoco-android'
|
|
apply plugin: "io.github.ddimtirov.codacy"
|
|
|
|
android {
|
|
compileSdkVersion 25
|
|
buildToolsVersion "25.0.3"
|
|
defaultConfig {
|
|
applicationId "io.github.wulkanowy"
|
|
minSdkVersion 14
|
|
targetSdkVersion 25
|
|
versionCode 1
|
|
versionName "0.1.0"
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
vectorDrawables.useSupportLibrary = true
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
debug {
|
|
testCoverageEnabled = true
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
|
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:25.3.1'
|
|
compile 'com.android.support.constraint:constraint-layout:1.0.2'
|
|
compile 'org.jsoup:jsoup:1.10.3'
|
|
compile 'com.android.support:design:25.3.1'
|
|
compile 'com.android.support:support-vector-drawable:25.3.1'
|
|
compile 'com.android.support:support-v4:25.3.1'
|
|
compile 'com.android.support:recyclerview-v7:25.3.1'
|
|
compile 'com.squareup.picasso:picasso:2.5.2'
|
|
compile 'org.apache.commons:commons-lang3:3.6'
|
|
|
|
testCompile 'junit:junit:4.12'
|
|
testCompile 'org.powermock:powermock-api-mockito:1.6.1'
|
|
testCompile group: 'org.unitils', name: 'unitils-core', version: '3.3'
|
|
}
|