Skip to content

Commit

Permalink
Add androidTestImplementation and testImplementation
Browse files Browse the repository at this point in the history
  • Loading branch information
meiron03 committed Mar 17, 2024
1 parent 1eea2b2 commit 1367a46
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions PennMobile/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,16 @@ android {
dependencies {
debugImplementation 'com.squareup.leakcanary:leakcanary-android:3.0-alpha-1'

implementation("com.google.dagger:hilt-android:2.44")
kapt("com.google.dagger:hilt-android-compiler:2.44")
implementation 'com.google.dagger:hilt-android:2.44'
kapt 'com.google.dagger:hilt-compiler:2.44'

// For instrumentation tests
androidTestImplementation 'com.google.dagger:hilt-android-testing:2.44'
kaptAndroidTest 'com.google.dagger:hilt-compiler:2.44'

// For local unit tests
testImplementation 'com.google.dagger:hilt-android-testing:2.44'
kaptTest 'com.google.dagger:hilt-compiler:2.44'

implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation(platform("com.google.firebase:firebase-bom:31.5.0"))
Expand Down

0 comments on commit 1367a46

Please sign in to comment.