Skip to main content

Privacy Policy

 

📄 Privacy Policy – KMP with Suraj

Last updated: September 07, 2025

This Privacy Policy describes our policies and procedures on the collection, use, and disclosure of your information when you use our website and tells you about your privacy rights and how the law protects you.

We use your personal data to provide and improve our services. By using KMP with Suraj, you agree to the collection and use of information in accordance with this Privacy Policy.


📌 Interpretation and Definitions

Interpretation

The words with capitalized initials have meanings defined under the following conditions. These definitions apply whether they appear in singular or plural.

Definitions

  • Account – A unique account created for you to access our services.

  • Affiliate – An entity that controls, is controlled by, or under common control with us.

  • Company – Referred to as “the Company”, “We”, “Us”, or “Our”, means KMP with Suraj.

  • Cookies – Small files placed on your device to store browsing history and preferences.

  • Country – Bihar, India.

  • Device – Any device that can access our website (computer, mobile, tablet).

  • Personal Data – Any information that relates to an identified or identifiable individual.

  • Service – Refers to this website, www.kmpwithsuraj.com.

  • Service Provider – Third-party companies or individuals who provide services on our behalf.

  • Usage Data – Data collected automatically when you use our website.

  • You – The individual accessing the website, or a company/legal entity on whose behalf such individual is accessing.


📌 Collecting and Using Your Data

Personal Data

When using our service, we may ask you to provide certain information such as:

  • Name and email address (if you subscribe or contact us)

  • Usage Data (explained below)

Usage Data

Usage Data is collected automatically and may include:

  • IP address, browser type, and version

  • Pages you visit, time and date, and time spent

  • Device details and operating system

When you access the service via a mobile device, we may also collect unique device identifiers, OS version, and browser type.


📌 Tracking Technologies & Cookies

We use cookies and similar tracking technologies (such as web beacons, tags, and scripts) to analyze traffic and improve our website.

  • Essential Cookies: Required for website functionality.

  • Notice Acceptance Cookies: To record cookie consent.

  • Functionality Cookies: To remember preferences (e.g., login details, language).

You can disable cookies from your browser settings, but some parts of our service may not function properly.


📌 Use of Your Personal Data

We may use your data to:

  • Provide and maintain our website.

  • Manage user accounts.

  • Contact you with updates or newsletters.

  • Send promotional content (if you opt-in).

  • Analyze usage trends to improve services.

  • Ensure website security and prevent fraud.

  • Share with trusted affiliates, partners, or service providers (only as necessary).


📌 Data Retention & Transfer

  • We retain personal data only as long as necessary for the purposes stated.

  • Usage Data may be stored for internal analysis.

  • Your data may be transferred outside your state/country but will always be protected with reasonable security measures.


📌 Disclosure of Data

We may disclose your data:

  • To comply with legal obligations.

  • To protect our rights, property, or safety.

  • During business transfers (e.g., merger or acquisition).

  • With your consent.


📌 Children’s Privacy

Our service does not target anyone under the age of 13. We do not knowingly collect personal data from children. If you believe your child has provided us data, please contact us, and we will delete it.


📌 Third-Party Links

Our website may contain links to third-party websites. We are not responsible for their content, policies, or practices.


📌 Changes to This Policy

We may update this Privacy Policy from time to time. Any changes will be posted here with the updated effective date.


📌 Contact Us

If you have any questions about this Privacy Policy, contact us:

📧 Email: surajpsp@gmail.com
🌐 Website: www.kmpwithsuraj.com

Comments

Popular posts from this blog

How to Integrate Razorpay in Kotlin Multiplatform Mobile (KMM) for WebApp JS Browser Target

Integrate Razorpay in KMM for WebApp JS Browser Target How to Integrate Razorpay in Kotlin Multiplatform Mobile (KMM) for WebApp JS Browser Target If you're working with Kotlin Multiplatform Mobile (KMM) and want to integrate Razorpay for payments, you might find plenty of documentation for Android and iOS. However, integrating Razorpay into the WebApp JS Browser target isn't as straightforward. In this blog post, I'll guide you through the steps to get Razorpay working in your KMM project for the WebApp JS Browser target. Why Kotlin Multiplatform Mobile (KMM)? KMM allows you to share business logic across Android, iOS, Web, and other platforms, making it easier to maintain a single codebase. But, when it comes to platform-specific features like payments, you need to implement certain functionality separately for each platform. Integrating Razorpay in the JS Browser Target To integrate Razo...

Understanding Kotlin Yarn Lock in KMM Projects

Kotlin Yarn Lock in KMM Projects Understanding Kotlin Yarn Lock in KMM Projects As a Kotlin Multiplatform Mobile (KMM) developer, working with JavaScript (JS) targets is a crucial aspect when building truly cross-platform applications. In this post, we’ll dive into the importance of the yarn.lock file in KMM projects, how it functions, and where it fits within your project structure. What is yarn.lock ? The yarn.lock file is a critical component in any KMM project that targets JavaScript, whether it's jsBrowser or jsNode . When managing JavaScript dependencies with Yarn, the yarn.lock file locks down the versions of all installed packages, ensuring that every developer and every environment running your project uses the exact same versions. This consistency is vital for avoiding the dreaded "it works on my machine" problem. Why is yarn.lock Important in KMM? When building a KMM project, you might need to int...

Part 2: Getting Started with Kotlin Multiplatform Mobile (KMM)

Getting Started with Kotlin Multiplatform Mobile (KMM) Getting Started with Kotlin Multiplatform Mobile (KMM) If you're new to Kotlin Multiplatform Mobile, here’s a quick guide to help you get started: Setup Your Development Environment Install the latest version of Android Studio . Install the Kotlin plugin . Set up Xcode on your Mac for iOS development . Create a New KMM Project Use Android Studio's KMM project template to create a new project. Configure the project for both Android and iOS targets. Write Shared Code Start by writing common code that can be shared between platforms, such as data models, network logic, and business rules. Here’s a simple example: // Shared code module expect class Platform() { val name: String ...