Skip to content

Commit

Permalink
Fix dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
amitkma committed Sep 28, 2017
1 parent bf89fe4 commit 194eaaa
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions mobile-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ dependencies {

// Android support libraries
implementation mobileUiDependencies.androidAnnotations
implementation mobileUiDependencies.androidSupportV4
implementation mobileUiDependencies.androidSupportV13
implementation mobileUiDependencies.appCompatV7
implementation mobileUiDependencies.supportV4
implementation mobileUiDependencies.supportV13
implementation mobileUiDependencies.supportAppCompatV7
implementation mobileUiDependencies.supportRecyclerView
implementation mobileUiDependencies.supportDesign

Expand All @@ -85,14 +85,28 @@ dependencies {

// Dagger for injection
implementation mobileUiDependencies.dagger
implementation mobileUiDependencies.daggerAndroid
implementation mobileUiDependencies.daggerSupport
annotationProcessor mobileUiDependencies.daggerCompiler
annotationProcessor mobileUiDependencies.daggerProcessor
provided 'org.glassfish:javax.annotation:10.0-b28'

// Architecture Components
implementation mobileUiDependencies.archRuntime
implementation mobileUiDependencies.archExtensions
implementation mobileUiDependencies.roomRxJava
annotationProcessor mobileUiDependencies.archCompiler

// Instrumentation test dependencies
androidTestImplementation mobileUiTestDependencies.junit
androidTestImplementation mobileUiTestDependencies.mockito
androidTestImplementation mobileUiTestDependencies.mockitoAndroid

androidTestImplementation mobileUiTestDependencies.supportAppCompatV7
androidTestImplementation mobileUiTestDependencies.supportRecyclerView
androidTestImplementation mobileUiTestDependencies.supportV4
androidTestImplementation mobileUiTestDependencies.supportDesign

androidTestImplementation(mobileUiTestDependencies.espressoCore) {
exclude group: 'com.android.support', module: 'support-annotations'
}
Expand Down

0 comments on commit 194eaaa

Please sign in to comment.