Skip to content

Commit

Permalink
Merge branch 'morekotlin'
Browse files Browse the repository at this point in the history
  • Loading branch information
jaydeetay committed Dec 23, 2021
2 parents 428653f + 94cbae3 commit 9f7ea6b
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
plugins {
id 'com.android.application'
id 'kotlin-android'
id 'kotlin-android-extensions'
id 'kotlin-kapt'
}

android {
compileSdkVersion 31
Expand Down Expand Up @@ -81,14 +85,16 @@ android {
dependencies {
implementation project(path: ':datamodel')


// Android support
implementation 'androidx.appcompat:appcompat:1.4.0'
implementation 'androidx.preference:preference:1.1.1'

// Third-party
implementation 'com.google.guava:guava:30.1.1-jre'
implementation 'com.google.dagger:dagger:2.28.3'
annotationProcessor 'com.google.dagger:dagger-compiler:2.28.3'
def dagger_version = "2.40"
implementation "com.google.dagger:dagger:$dagger_version"
kapt "com.google.dagger:dagger-compiler:$dagger_version"
// For annotations not in Android but needed by Dagger
implementation 'javax.annotation:jsr250-api:1.0'
// Lite version for Android - it's lighter (obviously) but also doesn't use reflection
Expand Down

0 comments on commit 9f7ea6b

Please sign in to comment.