social-aggregator/app/build.gradle

48 lines
1.8 KiB
Groovy
Raw Normal View History

2019-11-24 15:29:05 +01:00
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
android {
2019-12-08 19:17:20 +01:00
compileSdkVersion 28
2019-11-24 15:29:05 +01:00
buildToolsVersion "29.0.2"
2019-12-08 19:17:20 +01:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2019-11-24 15:29:05 +01:00
defaultConfig {
applicationId "pl.edu.amu.wmi.socialaggregator"
minSdkVersion 21
2019-12-08 19:17:20 +01:00
targetSdkVersion 28
2019-11-24 15:29:05 +01:00
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
2019-12-08 19:17:20 +01:00
implementation 'com.android.support:appcompat-v7:28.1.0'
implementation 'com.android.support:design:28.1.0'
2019-12-08 19:02:08 +01:00
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.core:core-ktx:1.1.0'
2019-11-24 15:29:05 +01:00
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation "io.reactivex.rxjava2:rxjava:2.2.2"
implementation "io.reactivex.rxjava2:rxandroid:2.1.0"
implementation 'com.jakewharton.rxbinding2:rxbinding:2.2.0'
implementation 'com.jakewharton.rxbinding2:rxbinding-appcompat-v7:2.2.0'
testImplementation 'junit:junit:4.12'
2019-12-08 19:02:08 +01:00
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation 'androidx.recyclerview:recyclerview:1.1.0'
implementation 'com.google.android.material:material:1.0.0'
2019-11-24 15:29:05 +01:00
}