Showing: 1 - 10 of 17 Articles

Monetising Magic: Unveiling the Power of In-App Purchases(IAP) in Flutter

Understanding In-App Purchases An in-app purchase (IAP) refers to any purchase made within a mobile application. These purchases typically unlock additional content or features that enhance the user experience. They are common in free-to-download apps (often called freemium apps) where the initial download is free, …

General Paid APIs Integration Guide

1. Introduction In today’s digital landscape, Application Programming Interfaces (APIs) serve as the cornerstone of modern software development, facilitating seamless communication and interaction between diverse systems, services, and platforms. APIs empower developers to leverage pre-built functionalities and integrate them into their applications, thus expediting development …

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 …