Daisy Faith Aumatinytechgirl.hashnode.dev·43 minutes agoHow to Install Android Studio for Windows, Linux and MacOS.I recently decided to embark on a journey on how to learn Android Development with Kotlin. For you to run your Kotlin code, you will need Android Studio, which is the IDE (Integrated Development Environment) where you will run your code and build you...Discuss·1 likeAndroid DevelopmentAndroid
Christopher Coffeecmcoffeedev.hashnode.dev·Sep 26, 2023Leetcode: Linked List Cycle (Kotlin)This is an easy Leetcode LinkedList question. I will go over my thought process for solving this. For this, we will use Floyd’s Cycle Detection algorithm. Linked List Cycle - LeetCode*Given head, the head of a linked list, determine if the linked lis...DiscussKotlin
Priyanshu Borolepriyanshub.hashnode.dev·Sep 24, 2023Launch Modes in AndroidHave you ever wondered how your Android apps smoothly switch from one screen to another? It's like a well-choreographed dance, and Intents are the cues that make it happen. But what about the behind-the-scenes magic that governs how activities behave...Vibhuti Patil and 1 other are discussing this2 people are discussing thisDiscuss·11 likes·32 readsAndroid
Ashutosh Wahaneashutoshwahane.hashnode.dev·Sep 24, 2023Automate Android Development Workflow with GitHub ActionsDid you know that GitHub Actions is a powerful platform that enables you to automate your software development workflows directly in your repository? With this continuous integration and continuous delivery (CI/CD) tool, you can create, share, and di...Discuss·4 likes·192 readsAndroid
Oybek Kholiqovoybeksblog.hashnode.dev·Sep 24, 2023Compose Text StyleYou can see what kind of text styles you can do~~ class MainActivity : ComponentActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContent { Compose_BasicsTheme { ...Discussandroid app development
Romman Sabbirrommansabbir.com·Sep 23, 2023Android: Content ProviderIf you've ever wondered how Android apps share data or how they manage to access and manipulate data across different apps, you've come to the right place. In the world of Android development, Content Providers play a pivotal role in making this happ...Discuss·1 like·115 readsAndroid Application DevelopmentAndroid
Raman Tankraman04.hashnode.dev·Sep 22, 2023Understanding Stateful vs. Stateless Widgets in FlutterIf you're diving into Flutter development, you've likely encountered the terms "Stateful" and "Stateless" widgets. These are the building blocks of your Flutter app's user interface, and understanding when to use each is crucial. Let me break it down...DiscussHashnode
Abu Yousufayousuf.hashnode.dev·Sep 22, 2023Testing Android PagingSourceIn the previous article, I wrote about paging implementation. If you didn't check that you can check it. In this article, I will write about how to test PagingSource. Why testing Testing is very important in development. Test code makes your code bas...Discuss·1 like·46 readsAndroid
Oybek Kholiqovoybeksblog.hashnode.dev·Sep 22, 2023Box ScopeYou can see how the Box Scope is done~ class MainActivity : ComponentActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContent { Compose_BasicsTheme { ...DiscussAndroid
Oybek Kholiqovoybeksblog.hashnode.dev·Sep 22, 2023Box LayoutYou can see how the Box Layout is done! class MainActivity : ComponentActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContent { Compose_BasicsTheme { ...Discusscompose multiplatform