mirror of
https://github.com/wulkanowy/wulkanowy.git
synced 2025-02-07 21:14:37 +01:00
![Rafał Borcz](/assets/img/avatar_default.png)
* Fix bug with the number of grades in snackbar * Add basic grade notification * Add notification icons * Add intent to notification * Improve login activity appearance * Improve dashboard appearance * Small amendments * Change splash logo
77 lines
2.6 KiB
Groovy
77 lines
2.6 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'jacoco-android'
|
|
apply plugin: "io.github.ddimtirov.codacy"
|
|
apply plugin: 'org.greenrobot.greendao'
|
|
|
|
android {
|
|
compileSdkVersion 27
|
|
buildToolsVersion "27.0.1"
|
|
defaultConfig {
|
|
applicationId "io.github.wulkanowy"
|
|
testApplicationId "io.github.tests.wulkanowy"
|
|
minSdkVersion 15
|
|
targetSdkVersion 27
|
|
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
|
|
ext.enableCrashlytics = false
|
|
}
|
|
}
|
|
|
|
testOptions {
|
|
unitTests.all {
|
|
testLogging {
|
|
events "passed", "skipped", "failed", "standardOut", "standardError"
|
|
outputs.upToDateWhen {false}
|
|
showStandardStreams = true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
greendao {
|
|
schemaVersion 14
|
|
generateTests = true
|
|
}
|
|
|
|
dependencies {
|
|
compile 'com.android.support:appcompat-v7:27.0.1'
|
|
compile 'com.android.support.constraint:constraint-layout:1.0.2'
|
|
compile 'com.android.support:design:27.0.1'
|
|
compile 'com.android.support:support-vector-drawable:27.0.1'
|
|
compile 'com.android.support:support-v4:27.0.1'
|
|
compile 'com.android.support:recyclerview-v7:27.0.1'
|
|
compile 'com.android.support:cardview-v7:27.0.1'
|
|
compile 'com.android.support:customtabs:27.0.1'
|
|
compile 'com.firebase:firebase-jobdispatcher:0.8.4'
|
|
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'
|
|
compile 'org.greenrobot:greendao:3.2.2'
|
|
|
|
debugCompile 'com.amitshekhar.android:debug-db:1.0.1'
|
|
debugCompile 'net.zetetic:android-database-sqlcipher:3.5.7@aar'
|
|
|
|
testCompile 'junit:junit:4.12'
|
|
testCompile 'org.mockito:mockito-core:2.11.0'
|
|
|
|
androidTestCompile('com.android.support.test.espresso:espresso-core:3.0.1', {
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
})
|
|
androidTestCompile 'com.android.support:support-annotations:27.0.1'
|
|
androidTestCompile 'com.android.support.test:runner:1.0.1'
|
|
androidTestCompile 'com.android.support.test:rules:1.0.1'
|
|
androidTestCompile 'org.hamcrest:hamcrest-library:1.3'
|
|
androidTestCompile 'org.mockito:mockito-android:2.11.0'
|
|
}
|