Contact Us
If you still have questions or prefer to get help directly from an agent, please submit a request.
Popular topics: Multilogin X, Multilogin 6,
-
Retrieving the token Using the automation token in a workspace Retrieving profile, folder, and workspace IDs Retrieving the user ID Selenium automation example Playwright automation example Puppeteer automation example Logging in to Multilogin automatically Setting up automatic cookie collection Auto-launching the agent Exporting proxy details from profiles Converting external proxy lists into API-ready JSON files Automation FAQ
-
Error: Failed to get IP data: can't connect through proxy Error: Javax.crypto.badpaddingexception: pad block corrupted Status: Update in progress...Loading (1) of 2 components Error: Fingerprint composition failed Connection error due to non-Latin characters in Windows username Error: Mimic/Stealthfox executable is not found Multilogin 6 browser profile shows "Error" in status Can't launch a profile in Multilogin 6 JavaScript error when switching to dark mode in Multilogin 6 Common errors and solutions in Multilogin 6
Android profiles
Written by Yelena Varabyeva
Updated on November 21st, 2024
Table of contents
Multilogin X now offers Android profiles! Currently, they are available via our API, and a UI version is coming soon.
While profiles created through the API are visible in the UI, we recommend managing them exclusively via the API to avoid potential issues.
Understanding Android profiles
What are mobile profiles?
Mobile profiles in Multilogin X are browser profiles that simulate an Android device. Instead of appearing as a desktop user, you’ll look like someone browsing from a smartphone, making them ideal for activities where mobile-like behavior is required.
Why use mobile profiles?
They’re perfect for testing, managing accounts, or automating tasks that require a mobile device’s fingerprint. Mobile profiles help you blend in as a mobile user and interact with websites designed for smartphones.
Can I convert an existing desktop profile to a mobile profile?
No, mobile profiles must be created as new profiles. They cannot be converted from desktop profiles.
Can I install mobile apps on mobile profiles?
No, Android profiles in Multilogin do not function as actual mobile devices, so installing mobile applications is not supported.
Using Android profiles via API
Creating and updating
To manage mobile profiles, use the following API endpoints:
- Profile Create: For creating mobile profiles
- Profile Update and Profile Partial Update: For making changes to existing profiles
- Start Quick Profile v3: For starting quick mobile profiles
Default settings
Note that the following flags cannot be set to "Real" when creating or updating profiles:
- fonts_masking
- graphics_masking
- media_devices_masking
- navigator_masking
- screen_masking
These settings ensure optimal performance and stability for Android profiles.
Recommended settings
First, we recommend that you set the chosen URL(s) to open on every launch. Here's the code example:
{
"parameters": {
"flags": {
"startup_behavior": "custom"
},
"custom_start_urls": [
"https://app.multiloginapp.com/WhatIsMyIP"
]
}
}
Then, stick to the following values for best results:
- Screen resolution: Masked (default)
- Media devices: Masked
- WebGL + WebGPU metadata: Masked
- WebGL graphics: Noise
- Canvas graphics: Real
- AudioContext: Noise
- Font data: Masked (default)
Max touch points
This parameter determines how many simultaneous touch-points the Android device can support.
- Parameter: max_touch_points
- Acceptable values: 1–10 (default is 5 if not provided)
- Example:
"max_touch_points": 2
means the device supports two touch-points.