Last active
February 25, 2019 19:57
-
-
Save CostaFot/25f07623f412fa87ce45ae0e174bbf92 to your computer and use it in GitHub Desktop.
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' | |
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' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment