How to change a device product properties (manufacturer, model, etc.) with Genymotion SaaS?

There is no system.prop in the Genymotion OS build. The system.prop file is merged with build.prop. The build.prop file is partially read-only.

To modify these properties, overload the properties with persist. properties. For example, change the Product Name (ro.product.name) property value by creating the persist.ro.product.name property with the desired value.

To do so, use adb. 1. Connect the virtual device to ADB. See . 2. Use the command:

   adb shell setprop persist.ro.product.name "Your value"
   
3. Reboot the virtual device with adb reboot.

The following read-only properties can be changed with this method:

> Warning: We assume no liability resulting from the use of modified properties. You are responsible for the use that you make of your virtual device.