Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move push and about features into feature dir #164

Merged
merged 2 commits into from
Aug 4, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,18 @@ jobs:
path: core/build/reports
destination: core/reports
- store_artifacts:
path: feature-users/build/reports
destination: feature-users/reports
path: feature/users/build/reports
destination: feature/users/reports
- store_artifacts:
path: feature-push/build/reports
destination: feature-push/reports
path: feature/push/build/reports
destination: feature/push/reports
- store_test_results:
path: client/build/test-results
- store_test_results:
path: core/build/test-results
- store_test_results:
path: feature-users/build/test-results
path: feature/users/build/test-results
- store_test_results:
path: feature-push/build/test-results
path: feature/push/build/test-results


10 changes: 5 additions & 5 deletions client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,11 @@ dependencies {
api project(':core')
api project(':core-android')
api project(':lib-identity')
api project(':feature-push')
api project(':feature-users')
api project(':feature-settings')
api project(':feature-about')
api project(':feature-shortcuts')
api project(':feature:push')
api project(':feature:users')
api project(':feature:settings')
api project(':feature:about')
api project(':feature:shortcuts')

implementation 'androidx.appcompat:appcompat:1.1.0-rc01'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 5 additions & 5 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ include ':client',

':lib-identity',

':feature-users',
':feature-push',
':feature-settings',
':feature-about',
':feature-shortcuts'
':feature:users',
':feature:push',
':feature:settings',
':feature:about',
':feature:shortcuts'