Overview
There is no system.prop in the Genymotion OS build. The file is merged with build.prop and is partially read-only.
Modify properties
To modify these properties, you need to overload them with persist properties.
Example: change Product Name
To change the Product Name (ro.product.name) property value, create the persist.ro.product.name property with the desired value.
Apply changes with ADB
To apply the change, connect your virtual device to ADB.
See How to connect Genymotion SaaS virtual devices to ADB?
Use the command:
adb shell setprop persist.ro.product.name "Your value"
adb reboot
Properties that can be changed
The following read-only properties can be changed with this method:
- ro.build.fingerprint
- ro.product.name
- ro.product.manufacturer
- ro.product.device
- ro.product.board
- ro.product.brand
- ro.build.display.id
- ro.serialno
- ro.build.type
- ro.build.tags
- ro.build.description
Liability
We assume no liability resulting from the use of modified properties. You are responsible for the use that you make of your virtual device.