AndoAiron
AndoAiron

Reputation: 694

Dynamic PackageName on android

I want to change my application package name at run time using some script or some other way. But I don't know whether it is feasible in android or not.

Can anybody help me out to achieve the same?

Thanks in advance.

Upvotes: 1

Views: 697

Answers (1)

Felix
Felix

Reputation: 89606

You can't dynamically change the package name of your application. Your package name is basically the ID Android uses to identify your application. Also, it's pretty much "burned" into the APK, so the only way to change it would be to open up the APK and change it in there. However, that would probably require root.

Upvotes: 1

Related Questions