Google Drive Client for Linux Mint

https://tutorialforlinux.com/2016/07/02/google-drive-client-quickstart-for-linux-mint-18-sarah-lts/ Google Drive Client Quick-Start for Linux Mint 18 Sarah LTS Hello Mint User! This Easy & Step-by-step Tutorial Shows You How-to Getting-Started to Sync / Access Google Drive Cloud Files on Linux Mint 18 Sarah LTS 32/64bit GNU/Linux Mate/Cinnamon/KDE/Xfce Desktops. READ MORE

Memory leaks in Android — identify, treat and avoid

https://medium.com/freenet-engineering/memory-leaks-in-android-identify-treat-and-avoid-d0b1233acc8 https://android.jlelse.eu/memory-leak-patterns-in-android-4741a7fcb570 https://android-developers.googleblog.com/2009/01/avoiding-memory-leaks.html   https://github.com/square/leakcanary   What is a memory leak? Every app needs memory as a resource to do its work. To make sure each app in Android has enough memory, Android system needs to manage memory allocation efficiently. Android READ MORE

Learning Kotlin for Android Development

https://github.com/antoniolg/Kotlin-for-Android-Developers https://github.com/MindorksOpenSource/from-java-to-kotlin   http://kotlinlang.org/docs/tutorials/koans.html https://github.com/Kotlin/kotlin-koans Let’s become multilingual Android Developer Site Awesome Kotlin Using Project Kotlin for Android Kotlin for Android Developers Kotlin 1.0 Released: Pragmatic Language for JVM and Android Try Kotlin Online Join kotlinlang on Slack. Kotlin-docs Configuring READ MORE

Difference between add(), replace(), and addToBackStack()

https://stackoverflow.com/questions/18634207/difference-between-add-replace-and-addtobackstack 1) fragmentTransaction.addToBackStack(str); Description – Add this transaction to the back stack. This means that the transaction will be remembered after it is committed, and will reverse its operation when later popped off the stack. 2) fragmentTransaction.replace(int containerViewId, Fragment fragment, String tag) Description – READ MORE