Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Programmatically edit the properties of build.prop on Android

I would like to know whether it is possible or not to open the build.prop file programmatically from an Android application and edit certain properties within it. Are there certain restrictions on this file in Android and can it be done without root access?

If someone could point me in the right direction or provide and example that would be great.

like image 477
user2060733 Avatar asked Mar 14 '13 10:03

user2060733


1 Answers

ROOT permission is required to open and edit build.prop file.

Check this App in Play Store. build.prop Editor. Since it's open source, and the code is extremely simple, you can use it as a stating point: https://github.com/nathanpc/Build.prop-Editor

like image 178
Sadeshkumar Periyasamy Avatar answered Nov 15 '22 17:11

Sadeshkumar Periyasamy