Last active
February 25, 2019 19:39
-
-
Save CostaFot/2278aeae57b7dd0039460702e5ddbb6a to your computer and use it in GitHub Desktop.
Deps
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apply plugin: 'com.android.application' | |
apply plugin: 'kotlin-android' | |
apply plugin: 'kotlin-android-extensions' | |
// need this plugin to make this work | |
apply plugin: 'kotlin-kapt' | |
android { | |
// your android stuff goes here | |
} | |
dependencies { | |
// auto-generated dependencies | |
implementation fileTree(dir: 'libs', include: ['*.jar']) | |
implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" | |
implementation 'androidx.core:core-ktx:1.1.0-alpha04' | |
testImplementation 'junit:junit:4.12' | |
androidTestImplementation 'androidx.test:runner:1.1.2-alpha01' | |
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.2-alpha01' | |
// Google Components | |
implementation 'androidx.appcompat:appcompat:1.0.2' | |
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha3' | |
implementation 'androidx.cardview:cardview:1.0.0' | |
implementation 'com.google.android.material:material:1.1.0-alpha03' | |
implementation 'androidx.recyclerview:recyclerview:1.0.0' | |
implementation "androidx.lifecycle:lifecycle-extensions:2.0.0" | |
// RX Java | |
implementation 'io.reactivex.rxjava2:rxandroid:2.1.0' | |
implementation 'io.reactivex.rxjava2:rxjava:2.2.2' | |
// Networking | |
implementation "com.squareup.retrofit2:retrofit:2.4.0" | |
implementation "com.squareup.retrofit2:adapter-rxjava2:2.4.0" | |
implementation "com.squareup.retrofit2:converter-gson:2.4.0" | |
implementation 'com.squareup.okhttp3:logging-interceptor:3.10.0' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment