This file contains hidden or 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
override fun onViewCreated(view: View, savedInstanceState: Bundle?) { | |
super.onViewCreated(view, savedInstanceState) | |
... | |
... | |
getRamInfoTimer() | |
} | |
private fun getRamInfoTimer() { | |
TimerUtil.tickerFlow(1.seconds) | |
.flowWithLifecycle(viewLifecycleOwner.lifecycle,Lifecycle.State.STARTED) |
This file contains hidden or 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
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> | |
<background android:drawable="@mipmap/ic_launcher_background"/> | |
<foreground android:drawable="@drawable/ic_launcher_foreground"/> | |
<!-- Added monochrome layer --> | |
<monochrome android:drawable="@drawable/ic_launcher_monochrome"/> | |
</adaptive-icon> |
This file contains hidden or 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
<application | |
... | |
android:name=".app.MainApplication" | |
android:label="@string/app_name" | |
android:icon="@mipmap/ic_launcher" | |
...> | |
</application> |