Showing: 1 - 10 of 34 Articles

Mastering Target API Level Requirements for Google Play: What Developers Need to Know

Google Play has recently strengthened its target API level requirements to enhance app quality, security, and user experience. For developers, this means that ensuring your app targets the correct Android API level is crucial for maintaining visibility and functionality on the Google Play Store. Here’s …

Comprehensive Guide to Chucker Interceptor and Canary Leak for Android Debugging

Comprehensive Guide to Debugging with Chucker Interceptor and Canary Leak in Android Introduction Effective debugging is essential for building robust Android applications. Two powerful tools to enhance your debugging capabilities are Chucker Interceptor for monitoring network traffic and Canary Leak for detecting memory leaks. This …

Steps to setup Branch io for UTM Tracking in React Native

For iOS Setup: Initialise branch : Open AppDelegate.m and add the following code: Let’s setup for Android App: Open Android manifest file add the android:launchMode=”singleTask” to .MainActivity activity. Open Mainactivity.java file Open mainApplication.java file Let Implement the code to listen the Deep Links in the …

Send mail with attachment using Gmail API

To send an email from your app with an attachment like image, video, etc. We can do this by calling 2-3 functions. First, we need to add some required permission in AndroidManifest.xml as below. <uses-permission android:name=”android.permission.INTERNET” /> <uses-permission android:name=”android.permission.GET_ACCOUNTS” /> <uses-permission android:name=”android.permission.WRITE_EXTERNAL_STORAGE” /> Then add necessary …