Harsh Vardhan Singhdevengers.hashnode.dev·Aug 21, 2023How Kotlin Accelerates Android App Development?Kotlin is a popular programming language in the field of Android app development. It is a modern and statically typed language built by JetBrains. Kotlin has been designed to be compatible with Java. Its primary purpose is to address the limitations ...DiscussAndroid
Aman Nishadamannishad.hashnode.dev·Aug 19, 2023Getting started with Open Source ? (Beginner Guide)Before starting Open Source Contribution, you might wonder why it's essential to do it. That needs to click in your mind. The 3Ws - WHAT, WHY, and HOW? What is Open Source? Open Source means something that is 'Publicly Available', it can be used and ...Vivek Prajapati and 3 others are discussing this4 people are discussing thisDiscuss·8 likes·225 readsAndroid
Emmanuel Abrahamemmanuel07.hashnode.dev·Aug 18, 2023Late-Initialized Variables and Lazy Initialization in KotlinIntroduction Welcome to one step closer to your success, Today, deep dive into two concepts that might seem confusing at first, but don't worry we will go through the concepts of late-initialized variables and lazy initialization in Kotlin. By the en...DiscussAndroid
Oybek Kholiqovoybeksblog.hashnode.dev·Aug 10, 2023What is an INTENT ?We will learn about Intent ~ Intents could be Implicit, for instance, calling intended actions, and explicit as well, such as opening another activity after some operations like onClick or anything else. Below are some applications of Intents: Sendi...Discussandroid apps
Suresh SalaforSuresh Salasureshsala.hashnode.dev·Aug 2, 2023How to install .aab file in Android device?This article provides the details for installing the Android signed .aab file on an Android device. Requirements:- Java- Keystore file (.jsk or .keystore file)- Download the bundle tool jar file from the below linkhttps://github.com/google/bundletool...DiscussAndroid
Gaurav Takgauravtak.hashnode.dev·Aug 1, 2023Create shortcuts android App | Show Menu Long press on App icon – KotlinAs we all noticed the shortcuts or options while using the Flipkart app or Amazon app or Youtube app, Google Drive app etc. Shortcut links could be seen by long tapping on the application icon. Like Google Drive app has an option on the long-press ic...DiscussAndroid
Sandeep Kulkarnisandeepjak.hashnode.dev·Jul 19, 2023URI (Unique Resource Identifier)The name only suggests that it is a unique identifier for the resource. In Windows or macOS, we can identify the uniqueness of the file with the path and the name specified for that file. But in Android, there are four majorly different types of reso...Discuss·36 readsAndroid
Krunal Dhapodkarkrunu.hashnode.dev·Jul 15, 2023Building an app that stores data using Shared Preferences] In this tutorial, we will be building a simple Android app that uses Shared Preferences to store user data. The data we will be storing is the user's email address and password. This data will be persistent even if the user closes the app. The only...Discuss·2 likesShared Preferences
Divyansh Pratap Singhdev-divyansh.hashnode.dev·Jun 23, 2023How to add text-to-speech in a Native Android ApplicationHello developer, welcome to my new blog in this blog we would learn how to add a text-to-speech feature to our Android App, let's get started without further ado. Talk - Text to Speech engine ( T T S ) We would be using TTS ( Text-to-Speech ) engine...Discuss·11 likes·45 readsandroid app development
Tejprakash Upadhyaytejupadhyay.hashnode.dev·Jun 10, 2023View BindingView binding is a feature that makes it easier to write code and helps to find the id of the element of an XML file Setup goto the gradle (app) file and enable viewBinding buildFeatures { viewBinding true } use view Binding in activities...DiscussViewModel