Skip to content

Commit

Permalink
Move library modules into proper dirs (#186)
Browse files Browse the repository at this point in the history
* Move identity module into lib directory

* Move dynamic feature library dir into lib dir
  • Loading branch information
jraska committed Oct 11, 2019
1 parent fa3e03a commit 83f885f
Show file tree
Hide file tree
Showing 31 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ dependencies {

api project(':core')
api project(':core-android')
api project(':lib-identity')
api project(':lib-dynamic-features')
api project(':lib:identity')
api project(':lib:dynamic-features')
api project(':feature:push')
api project(':feature:users')
api project(':feature:settings_entrance')
Expand Down
2 changes: 1 addition & 1 deletion feature/about/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies {

api project(':core')
api project(':core-android')
api project(':lib-identity')
api project(':lib:identity')

kapt 'com.google.dagger:dagger-compiler:2.24'
api 'com.google.dagger:dagger:2.24'
Expand Down
2 changes: 1 addition & 1 deletion feature/about_entrance/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencies {

implementation 'com.google.dagger:dagger:2.24'
kapt 'com.google.dagger:dagger-compiler:2.24'
implementation project(':lib-dynamic-features')
implementation project(':lib:dynamic-features')

testImplementation 'junit:junit:4.12'
testImplementation 'org.assertj:assertj-core:3.13.2'
Expand Down
2 changes: 1 addition & 1 deletion feature/push/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ android {
dependencies {
api project(':core')
api project(':core-android')
api project(':lib-identity')
api project(':lib:identity')

api 'com.google.firebase:firebase-messaging:19.0.1'
api 'com.google.firebase:firebase-database:18.0.0'
Expand Down
2 changes: 1 addition & 1 deletion feature/settings/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ android {
dependencies {
api project(':core')
api project(':core-android')
implementation project(':lib-dynamic-features')
implementation project(':lib:dynamic-features')
implementation project(':client')

api 'com.airbnb.android:epoxy:3.7.0'
Expand Down
2 changes: 1 addition & 1 deletion feature/settings_entrance/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ android {
dependencies {
api project(':core')
api project(':core-android')
implementation project(':lib-dynamic-features')
implementation project(':lib:dynamic-features')

implementation 'com.google.dagger:dagger:2.24'
kapt 'com.google.dagger:dagger-compiler:2.24'
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ include ':client',
':core-testing',
':core-android',

':lib-identity',
':lib-dynamic-features',
':lib:identity',
':lib:dynamic-features',

':feature:users',
':feature:push',
Expand Down

0 comments on commit 83f885f

Please sign in to comment.