Hovhannes
<application android:name=".App" android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/AppTheme">
class App : Application(){ override fun onCreate() { super.onCreate() startKoin { androidContext(this@App) modules(listOf(appModule, repoModule, viewModelModule)) } } }
solidogen
A modern programming language that makes developers happier.