diez
diez

Reputation: 125

Programmatically switch to developer mode in Android

I want to create a tool that allows to switch to developer mode on Android devices with an Android version less than 4.2. I want to create an apk to activate and deactivate the developer mode. Is this possible? How?

Upvotes: 3

Views: 2618

Answers (1)

Aleks G
Aleks G

Reputation: 57316

"Developer" mode is a system setting and therefore can only be modified from a system application (i.e. signed with a manufacturer's key). You cannot create an app that would modify this setting.

Upvotes: 3

Related Questions