-
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
99 changed files
with
3,228 additions
and
1,619 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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
21 changes: 9 additions & 12 deletions
21
app/src/main/java/com/shahryar/cryptoprice/CryptoPriceApplication.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,27 +1,24 @@ | ||
package com.shahryar.cryptoprice | ||
|
||
import android.app.Application | ||
import android.content.Context | ||
import android.util.Log | ||
import com.shahryar.cryptoprice.core.di.cryptoPriceModules | ||
import com.shahryar.shared.data.CryptoPriceSettings | ||
import com.shahryar.shared.di.initKoin | ||
import org.koin.android.ext.koin.androidContext | ||
import org.koin.core.context.startKoin | ||
|
||
class CryptoPriceApplication: Application() { | ||
|
||
companion object { | ||
//TODO: Fix these | ||
var context: Context = CryptoPriceApplication.context | ||
var apiKey: String = "" | ||
} | ||
open class CryptoPriceApplication: Application() { | ||
|
||
override fun onCreate() { | ||
super.onCreate() | ||
|
||
context = applicationContext | ||
|
||
startKoin { | ||
initKoin { | ||
androidContext(applicationContext) | ||
modules(cryptoPriceModules) | ||
} | ||
|
||
CryptoPriceSettings.observeToken { token -> | ||
Log.d("OBS", "is empty: ${token.isNullOrEmpty()}") | ||
} | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
app/src/main/java/com/shahryar/cryptoprice/core/base/BaseViewModel.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,7 @@ | ||
package com.shahryar.cryptoprice.core.base | ||
|
||
import androidx.lifecycle.ViewModel | ||
|
||
open class BaseViewModel: ViewModel() { | ||
var toastMessage = SingleLiveEvent<String>() | ||
} |
67 changes: 67 additions & 0 deletions
67
app/src/main/java/com/shahryar/cryptoprice/core/base/SingleLiveEvent.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,67 @@ | ||
package com.shahryar.cryptoprice.core.base | ||
/* | ||
* Copyright 2017 Google Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
import android.util.Log | ||
import androidx.annotation.MainThread | ||
import androidx.lifecycle.LifecycleOwner | ||
import androidx.lifecycle.MutableLiveData | ||
import androidx.lifecycle.Observer | ||
import java.util.concurrent.atomic.AtomicBoolean | ||
|
||
/** | ||
* A lifecycle-aware observable that sends only new updates after subscription, used for events like | ||
* navigation and Snackbar messages. | ||
* | ||
* | ||
* This avoids a common problem with events: on configuration change (like rotation) an update | ||
* can be emitted if the observer is active. This LiveData only calls the observable if there's an | ||
* explicit call to setValue() or call(). | ||
* | ||
* | ||
* Note that only one observer is going to be notified of changes. | ||
*/ | ||
class SingleLiveEvent<T> : MutableLiveData<T>() { | ||
private val pending = AtomicBoolean(false) | ||
@MainThread | ||
override fun observe(owner: LifecycleOwner, observer: Observer<in T>) { | ||
if (hasActiveObservers()) { | ||
Log.w(TAG, "Multiple observers registered but only one will be notified of changes.") | ||
} | ||
// Observe the internal MutableLiveData | ||
super.observe(owner, Observer { t -> | ||
if (pending.compareAndSet(true, false)) { | ||
observer.onChanged(t) | ||
} | ||
}) | ||
} | ||
|
||
@MainThread | ||
override fun setValue(t: T?) { | ||
pending.set(true) | ||
super.setValue(t) | ||
} | ||
/** | ||
* Used for cases where T is Void, to make calls cleaner. | ||
*/ | ||
@MainThread | ||
fun call() { | ||
value = null | ||
} | ||
companion object { | ||
private val TAG = "SingleLiveEvent" | ||
} | ||
} |
6 changes: 0 additions & 6 deletions
6
app/src/main/java/com/shahryar/cryptoprice/core/common/Constant.kt
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
app/src/main/java/com/shahryar/cryptoprice/core/common/DoubleExt.kt
This file was deleted.
Oops, something went wrong.
33 changes: 0 additions & 33 deletions
33
app/src/main/java/com/shahryar/cryptoprice/core/common/Utils.kt
This file was deleted.
Oops, something went wrong.
30 changes: 4 additions & 26 deletions
30
app/src/main/java/com/shahryar/cryptoprice/core/di/Modules.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
71 changes: 0 additions & 71 deletions
71
app/src/main/java/com/shahryar/cryptoprice/data/model/Data.kt
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.