How To Change The Installation Path Of An Android Application?
I am developing an android application. By default it is getting stored in /data/data/ path As my device is in warranty period, I don't have privilege to access
Solution 1:
If you do not declare android:installLocation
attribute, your application, by default, will be installed on the internal storage but, you can move it to the external storage.
You can use android:installLocation="preferExternal"
to install in external storage or
android:installLocation="internalOnly"
for internal storage.
Hope this helps.
Post a Comment for "How To Change The Installation Path Of An Android Application?"