-
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.
- Loading branch information
Showing
209 changed files
with
4,750 additions
and
631 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,27 @@ | ||
# Lemon changelog | ||
|
||
## Unversioned: | ||
- Put changes here; | ||
## Version history | ||
* [0.1.0](#010) | ||
* [0.0.4](#004) | ||
* [0.0.3](#003) | ||
* [0.0.2](#002) | ||
|
||
## 0.1.0 | ||
- MVP release | ||
|
||
## 0.0.4 | ||
- Feature: HomeScreen; | ||
- Feature: Cards; | ||
- Feature: Transactions; | ||
- Feature: Registration; | ||
|
||
## 0.0.3: | ||
- Feature: Profile; | ||
- User can change username, login or password; | ||
- Logout and autologin added. | ||
|
||
## 0.0.2: | ||
- Feature: Login; | ||
- User use cases; | ||
- basic DI; | ||
- basic app architecture. |
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,5 +1,14 @@ | ||
# lemon-android | ||
![build](https://github.com/AlmostGreatBand/lemon-android/actions/workflows/android.yml/badge.svg) | ||
# Lemon🍋 Android | ||
|
||
The actual code is on the `dev` branch, waiting for transaction-cache feature and will be merged here in the near future | ||
Android client for Lemon App. | ||
|
||
android-client🍋 | ||
| VERSIONS | | ||
| ------------------------------- | | ||
| __[Changelog](CHANGELOG.md)__ | | ||
| __[Release plan](RELEASES.md)__ | | ||
|
||
# Team: | ||
- [Zhenya Zasko](https://github.com/NeProgramist) | ||
- [Oleh Kovalyshyn](https://github.com/ALEGATOR1209) | ||
- [Victoria Romanova](https://github.com/V1ckeyR) |
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: 0 additions & 22 deletions
22
app/src/androidTest/java/com/agb/lemon_android/ExampleInstrumentedTest.kt
This file was deleted.
Oops, something went wrong.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,37 @@ | ||
package com.agb.lemon_android.di | ||
|
||
import android.app.Application | ||
import com.agb.data.di.dataModule | ||
import com.agb.feature_cards.di.cardsModule | ||
import com.agb.feature_home.di.homeModule | ||
import com.agb.feature_login.di.loginModule | ||
import com.agb.feature_profile.di.profileModule | ||
import com.agb.feature_registration.di.registrationModule | ||
import com.agb.feature_transactions.di.transactionsModule | ||
import org.koin.android.ext.koin.androidContext | ||
import org.koin.android.ext.koin.androidLogger | ||
import org.koin.core.context.startKoin | ||
import org.koin.core.logger.Level | ||
|
||
class App : Application() { | ||
override fun onCreate() { | ||
super.onCreate() | ||
|
||
startKoin { | ||
androidContext(applicationContext) | ||
androidLogger(Level.DEBUG) | ||
|
||
// app | ||
modules(appModule) | ||
modules(dataModule) | ||
|
||
// features | ||
modules(transactionsModule) | ||
modules(cardsModule) | ||
modules(loginModule) | ||
modules(homeModule) | ||
modules(profileModule) | ||
modules(registrationModule) | ||
} | ||
} | ||
} |
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,9 @@ | ||
package com.agb.lemon_android.di | ||
|
||
import com.agb.lemon_android.ui.MainViewModel | ||
import org.koin.androidx.viewmodel.dsl.viewModel | ||
import org.koin.dsl.module | ||
|
||
val appModule = module { | ||
viewModel { MainViewModel(get()) } | ||
} |
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
app/src/main/java/com/agb/lemon_android/frameworks/datasource/local/UserLocalDataSource.kt
This file was deleted.
Oops, something went wrong.
16 changes: 0 additions & 16 deletions
16
app/src/main/java/com/agb/lemon_android/frameworks/datasource/remote/UserRemoteDataSource.kt
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
.../main/java/com/agb/lemon_android/frameworks/datasource/remote/api/BasicAuthInterceptor.kt
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.