-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
670595d
commit 72ec0db
Showing
136 changed files
with
467 additions
and
434 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 6 additions & 6 deletions
12
...java/com/bnyro/contacts/db/AppDatabase.kt → ...yro/contacts/data/database/AppDatabase.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...a/com/bnyro/contacts/db/DatabaseHolder.kt → .../contacts/data/database/DatabaseHolder.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
...bnyro/contacts/db/dao/LocalContactsDao.kt → ...cts/data/database/dao/LocalContactsDao.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
.../com/bnyro/contacts/db/dao/LocalSmsDao.kt → ...contacts/data/database/dao/LocalSmsDao.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../bnyro/contacts/db/obj/ContactWithData.kt → ...acts/data/database/obj/ContactWithData.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...a/com/bnyro/contacts/db/obj/DbDataItem.kt → .../contacts/data/database/obj/DbDataItem.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...com/bnyro/contacts/db/obj/LocalContact.kt → ...ontacts/data/database/obj/LocalContact.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...java/com/bnyro/contacts/db/obj/SmsData.kt → ...yro/contacts/data/database/obj/SmsData.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...va/com/bnyro/contacts/enums/BackupType.kt → ...bnyro/contacts/domain/enums/BackupType.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.bnyro.contacts.enums | ||
package com.bnyro.contacts.domain.enums | ||
|
||
enum class BackupType { | ||
NONE, | ||
|
8 changes: 4 additions & 4 deletions
8
...bnyro/contacts/enums/ContactAttributes.kt → ...ontacts/domain/enums/ContactAttributes.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...om/bnyro/contacts/enums/ContactsSource.kt → ...o/contacts/domain/enums/ContactsSource.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../com/bnyro/contacts/enums/DataCategory.kt → ...yro/contacts/domain/enums/DataCategory.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.bnyro.contacts.enums | ||
package com.bnyro.contacts.domain.enums | ||
|
||
enum class DataCategory { | ||
NUMBER, | ||
|
2 changes: 1 addition & 1 deletion
2
.../bnyro/contacts/enums/IntentActionType.kt → ...contacts/domain/enums/IntentActionType.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.bnyro.contacts.enums | ||
package com.bnyro.contacts.domain.enums | ||
|
||
enum class IntentActionType { | ||
WEBSITE, | ||
|
2 changes: 1 addition & 1 deletion
2
...ava/com/bnyro/contacts/enums/SortOrder.kt → .../bnyro/contacts/domain/enums/SortOrder.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.bnyro.contacts.enums | ||
package com.bnyro.contacts.domain.enums | ||
|
||
enum class SortOrder { | ||
FIRSTNAME, | ||
|
2 changes: 1 addition & 1 deletion
2
...ava/com/bnyro/contacts/enums/ThemeMode.kt → .../bnyro/contacts/domain/enums/ThemeMode.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.bnyro.contacts.enums | ||
package com.bnyro.contacts.domain.enums | ||
|
||
enum class ThemeMode { | ||
SYSTEM, | ||
|
2 changes: 1 addition & 1 deletion
2
...ava/com/bnyro/contacts/obj/AccountType.kt → ...nyro/contacts/domain/model/AccountType.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...va/com/bnyro/contacts/obj/CallLogEntry.kt → ...yro/contacts/domain/model/CallLogEntry.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...ava/com/bnyro/contacts/obj/ContactData.kt → ...nyro/contacts/domain/model/ContactData.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...a/com/bnyro/contacts/obj/ContactsGroup.kt → ...ro/contacts/domain/model/ContactsGroup.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...a/com/bnyro/contacts/obj/FilterOptions.kt → ...ro/contacts/domain/model/FilterOptions.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...java/com/bnyro/contacts/obj/NavBarItem.kt → ...bnyro/contacts/domain/model/NavBarItem.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
.../java/com/bnyro/contacts/obj/SmsThread.kt → .../bnyro/contacts/domain/model/SmsThread.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../com/bnyro/contacts/obj/TranslatedType.kt → ...o/contacts/domain/model/TranslatedType.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...a/com/bnyro/contacts/obj/ValueWithType.kt → ...ro/contacts/domain/model/ValueWithType.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...bnyro/contacts/repo/ContactsRepository.kt → ...domain/repositories/ContactsRepository.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 11 additions & 11 deletions
22
.../contacts/repo/LocalContactsRepository.kt → ...n/repositories/LocalContactsRepository.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.