Seil0
3cd831e72c
*fixed always showing the same day in week timetable view * fixed wrong date is shown in timetable week view
43 lines
1.4 KiB
Groovy
43 lines
1.4 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
defaultConfig {
|
|
applicationId "org.mosad.seil0.projectlaogai"
|
|
minSdkVersion 21
|
|
targetSdkVersion 28
|
|
versionCode 6
|
|
versionName "0.2.2"
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
|
implementation 'androidx.appcompat:appcompat:1.0.1'
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
implementation 'com.google.android.material:material:1.0.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha2'
|
|
implementation 'org.jsoup:jsoup:1.11.3'
|
|
implementation 'org.jetbrains.anko:anko-commons:0.10.7'
|
|
implementation 'com.afollestad.material-dialogs:core:2.0.0-beta4'
|
|
implementation 'com.afollestad.material-dialogs:color:2.0.0-beta4'
|
|
|
|
testImplementation 'junit:junit:4.12'
|
|
androidTestImplementation 'androidx.test:runner:1.1.0'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0'
|
|
}
|