Skip to content

Instantly share code, notes, and snippets.

@Pierry
Created March 1, 2021 05:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Pierry/c03c24649a26874a10df3a2b35d46f5d to your computer and use it in GitHub Desktop.
Save Pierry/c03c24649a26874a10df3a2b35d46f5d to your computer and use it in GitHub Desktop.
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.core:core-ktx:1.3.2'
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'com.google.android.material:material:1.3.0'
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
//Room
implementation "androidx.room:room-runtime:2.2.6"
kapt "androidx.room:room-compiler:2.2.6"
// optional - Kotlin Extensions and Coroutines support for Room
implementation "androidx.room:room-ktx:2.2.6"
//Stetho
implementation "com.facebook.stetho:stetho:1.5.1"
implementation "com.facebook.stetho:stetho-okhttp3:1.5.1"
//Location
implementation "com.google.android.gms:play-services-location:17.1.0"
//Navigation
implementation 'androidx.navigation:navigation-fragment-ktx:2.3.3'
implementation 'androidx.navigation:navigation-ui-ktx:2.3.3'
// Hilt
implementation "com.google.dagger:hilt-android:2.31-alpha"
kapt "com.google.dagger:hilt-android-compiler:2.28.3-alpha"
// Hilt Jetpack
implementation "androidx.hilt:hilt-lifecycle-viewmodel:1.0.0-alpha03"
kapt "androidx.hilt:hilt-compiler:1.0.0-alpha03"
//connection
implementation "com.squareup.okhttp3:okhttp:4.7.2"
implementation "com.squareup.retrofit2:retrofit:2.9.0"
implementation "com.squareup.retrofit2:converter-gson:2.9.0"
implementation "com.squareup.retrofit2:adapter-rxjava2:2.9.0"
implementation 'com.jakewharton.retrofit:retrofit2-kotlin-coroutines-adapter:0.9.2'
implementation "com.google.code.gson:gson:2.8.6"
//Test
testImplementation 'junit:junit:4.13.2'
testImplementation 'androidx.test:core:1.3.0'
testImplementation 'org.mockito:mockito-core:3.3.3'
testImplementation 'org.mockito:mockito-inline:3.3.3'
testImplementation "com.squareup.okhttp:mockwebserver:2.7.5"
testImplementation "org.robolectric:robolectric:4.3"
testImplementation "android.arch.core:core-testing:1.1.1"
testImplementation "androidx.room:room-testing:2.2.6"
testImplementation "android.arch.paging:common:1.0.1"
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.3.5'
//firebase
implementation 'com.google.firebase:firebase-firestore-ktx:22.1.0'
implementation 'com.google.firebase:firebase-config-ktx:20.0.3'
implementation 'com.google.firebase:firebase-analytics-ktx:18.0.2'
implementation 'com.google.firebase:firebase-database-ktx:19.6.0'
implementation 'com.firebaseui:firebase-ui-storage:4.3.1'
implementation 'com.google.firebase:firebase-storage:19.2.1'
implementation 'com.google.firebase:firebase-messaging:21.0.1'
implementation 'com.google.firebase:firebase-messaging-ktx:21.0.1'
implementation 'com.google.firebase:firebase-crashlytics-ktx:17.3.1'
implementation 'com.google.firebase:firebase-analytics-ktx:18.0.2'
implementation 'com.google.firebase:firebase-perf-ktx:19.1.1'
//Picasso
implementation 'com.squareup.picasso:picasso:2.71828'
//Timber Logs
implementation "com.jakewharton.timber:timber:4.7.1"
kaptAndroidTest "com.google.dagger:hilt-android-compiler:2.28.3-alpha"
implementation 'io.sentry:sentry-android:3.1.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
androidTestImplementation 'androidx.test:core:1.3.0'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test:runner:1.3.0'
androidTestImplementation 'androidx.test:rules:1.3.0'
androidTestImplementation "com.google.dagger:hilt-android-testing:2.28.3-alpha"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment