Updated on 2026-08-14
This commit is contained in:
parent
e83c9bc495
commit
2b768f1b00
784 changed files with 2066 additions and 106417 deletions
14
app/src/main/java/com/tangem/tap/TapApplication.kt
Normal file
14
app/src/main/java/com/tangem/tap/TapApplication.kt
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
package com.tangem.tap
|
||||
|
||||
import android.app.Application
|
||||
import com.tangem.tap.common.redux.AppState
|
||||
import com.tangem.tap.common.redux.appReducer
|
||||
import org.rekotlin.Store
|
||||
|
||||
val store = Store(
|
||||
reducer = ::appReducer,
|
||||
middleware = AppState.getMiddleware(),
|
||||
state = AppState()
|
||||
)
|
||||
|
||||
class TapApplication : Application()
|
||||
Loading…
Add table
Add a link
Reference in a new issue