Clean up dependencies (#153)

Summary:
Remove unused dependencies and centralise the remaining ones in the
global project config.
Pull Request resolved: https://github.com/facebook/Sonar/pull/153

Reviewed By: priteshrnandgaonkar

Differential Revision: D8820462

Pulled By: passy

fbshipit-source-id: 1c845898930eb62942379fddec6da39dbdc426d0
This commit is contained in:
Pascal Hartig
2018-07-12 08:48:11 -07:00
committed by Facebook Github Bot
parent c871496f8c
commit fcd1b1e773
4 changed files with 15 additions and 29 deletions

View File

@@ -28,29 +28,18 @@ android {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
// Android Support Library
implementation deps.supportAppCompat
implementation deps.supportConstraintLayout
implementation deps.supportDesign
testImplementation deps.junit
androidTestImplementation deps.supportTestRunner
androidTestImplementation deps.supportEspresso
// Litho
implementation deps.lithoCore
implementation deps.lithoWidget
compileOnly deps.lithoAnnotations
annotationProcessor deps.lithoProcessor
// SoLoader
// Third-party
implementation deps.soloader
// For integration with Fresco
implementation deps.lithoFresco
// For testing
testImplementation deps.lithoTesting
implementation deps.okhttp3
implementation project(':android')
}