-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from alexandr7035/develop
Release v1.0 - Refactoring to clean - New design - Change password feature
- Loading branch information
Showing
142 changed files
with
2,047 additions
and
856 deletions.
There are no files selected for viewing
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
5 changes: 0 additions & 5 deletions
5
app/src/main/java/by/alexandr7035/affinidi_id/core/AppError.kt
This file was deleted.
Oops, something went wrong.
16 changes: 16 additions & 0 deletions
16
app/src/main/java/by/alexandr7035/affinidi_id/core/extensions/TextView.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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package by.alexandr7035.affinidi_id.core.extensions | ||
|
||
import android.content.ClipData | ||
import android.content.ClipboardManager | ||
import android.widget.TextView | ||
import androidx.core.content.ContextCompat | ||
|
||
fun TextView.copyToClipboard(clipLabel: String) { | ||
val clipBoard = ContextCompat.getSystemService(context, ClipboardManager::class.java) | ||
clipBoard?.setPrimaryClip( | ||
ClipData.newPlainText( | ||
clipLabel, | ||
text.toString() | ||
) | ||
) | ||
} |
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
15 changes: 0 additions & 15 deletions
15
app/src/main/java/by/alexandr7035/affinidi_id/data/AuthDataStorage.kt
This file was deleted.
Oops, something went wrong.
17 changes: 0 additions & 17 deletions
17
app/src/main/java/by/alexandr7035/affinidi_id/data/LoginRepository.kt
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
app/src/main/java/by/alexandr7035/affinidi_id/data/ProfileRepository.kt
This file was deleted.
Oops, something went wrong.
19 changes: 0 additions & 19 deletions
19
app/src/main/java/by/alexandr7035/affinidi_id/data/RegistrationRepository.kt
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
app/src/main/java/by/alexandr7035/affinidi_id/data/ResetPasswordRepository.kt
This file was deleted.
Oops, something went wrong.
113 changes: 0 additions & 113 deletions
113
app/src/main/java/by/alexandr7035/affinidi_id/data/implementation/LoginRepositoryImpl.kt
This file was deleted.
Oops, something went wrong.
39 changes: 0 additions & 39 deletions
39
app/src/main/java/by/alexandr7035/affinidi_id/data/implementation/ProfileRepositoryImpl.kt
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.