Where Is My Android Application?
I installed my Android application on the sdcard adding the manifest directive: android:installLocation=preferExternal But I can't locate my application on the sdcard if I browse
Solution 1:
Adding android:installLocation=preferExternal
does not gurantee it will end up on the external storage. From Google developer guide:
If you declare "preferExternal", you request that your application be installed on the external storage, but the system does not guarantee that your application will be installed on the external storage. If the external storage is full, the system will install it on the internal storage. The user can also move your application between the two locations.
Post a Comment for "Where Is My Android Application?"