WYWaqas Younisinwaqasyounis.hashnode.dev·Oct 14, 2024 · 2 min readrunTest vs runBlocking - SimplifiedAs the name runBlocking suggests that it runs suspending code in blocking manner, which means if there is a delay inside the unlocking block, it will also block the thread. fun main(){ runBlocking{ delay(2000) println("Inside runBlocking")...00
WYWaqas Younisinwaqasyounis.hashnode.dev·Aug 15, 2024 · 1 min readGoogle Play Console to Asana connecting chrome extensionHello there, being an Android Developer and mostly working on Crashes reported by Google Play Console, I have to go back and forth to keep track of the status of the crash/anr and see who is working on it, To overcome this problem, I am creating a Ch...00