Last active
December 6, 2020 03:10
-
-
Save pablorcruh/2e081c460dcc26ec448cc0e0fc0e4c8a to your computer and use it in GitHub Desktop.
Project Dependencies (Android Jetpack Masterclass)
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
plugins { | |
id 'com.android.application' | |
id 'kotlin-android' | |
id 'kotlin-kapt' | |
id 'androidx.navigation.safeargs.kotlin' | |
} | |
android { | |
compileSdkVersion 29 | |
buildToolsVersion "29.0.3" | |
defaultConfig { | |
applicationId "ec.com.pablorcruh.dogs" | |
minSdkVersion 21 | |
targetSdkVersion 29 | |
versionCode 1 | |
versionName "1.0" | |
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" | |
} | |
buildTypes { | |
release { | |
minifyEnabled false | |
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' | |
} | |
} | |
compileOptions { | |
sourceCompatibility JavaVersion.VERSION_1_8 | |
targetCompatibility JavaVersion.VERSION_1_8 | |
} | |
kotlinOptions { | |
jvmTarget = '1.8' | |
} | |
dataBinding.enabled = true | |
} | |
dependencies { | |
def lifecycle_version = "2.2.0" | |
def room_version = "2.2.5" | |
def nav_version = "2.3.2" | |
def preference_version = "1.1.1" | |
def glide_version = "4.11.0" | |
def retrofit_version = "2.9.0" | |
def rxjava_version = "3.0.0" | |
implementation "androidx.room:room-runtime:$room_version" | |
kapt "androidx.room:room-compiler:$room_version" | |
// optional - Kotlin Extensions and Coroutines support for Room | |
implementation "androidx.room:room-ktx:$room_version" | |
implementation "androidx.lifecycle:lifecycle-viewmodel:$lifecycle_version" | |
// LiveData | |
implementation "androidx.lifecycle:lifecycle-livedata:$lifecycle_version" | |
implementation "androidx.navigation:navigation-fragment-ktx:$nav_version" | |
implementation "androidx.navigation:navigation-ui-ktx:$nav_version" | |
implementation "androidx.preference:preference-ktx:$preference_version" | |
implementation "com.github.bumptech.glide:glide:$glide_version" | |
annotationProcessor "com.github.bumptech.glide:compiler:$glide_version" | |
implementation "com.squareup.retrofit2:retrofit:$retrofit_version" | |
implementation "io.reactivex.rxjava3:rxjava:$rxjava_version" | |
implementation "io.reactivex.rxjava3:rxandroid:$rxjava_version" | |
//implementation "androidx.palette.graphics:1.0.0" | |
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" | |
implementation 'androidx.core:core-ktx:1.3.2' | |
implementation 'androidx.appcompat:appcompat:1.2.0' | |
implementation 'com.google.android.material:material:1.2.1' | |
implementation 'androidx.constraintlayout:constraintlayout:2.0.4' | |
testImplementation 'junit:junit:4.+' | |
androidTestImplementation 'androidx.test.ext:junit:1.1.2' | |
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' | |
} |
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
// Top-level build file where you can add configuration options common to all sub-projects/modules. | |
buildscript { | |
ext.kotlin_version = "1.4.20" | |
repositories { | |
google() | |
jcenter() | |
} | |
dependencies { | |
def nav_version = "2.3.2" | |
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version" | |
classpath "com.android.tools.build:gradle:4.1.1" | |
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" | |
// NOTE: Do not place your application dependencies here; they belong | |
// in the individual module build.gradle files | |
} | |
} | |
allprojects { | |
repositories { | |
google() | |
jcenter() | |
} | |
} | |
task clean(type: Delete) { | |
delete rootProject.buildDir | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment