General :: How To Store Data On SD Card
Jun 27, 2013
I'm using a Blu Tank 4.5 running Android 4.1.1
Everything (apps, email, txts, etc) all file to the internal phone memory even though, on the settings page, (Settings/Storage/Phone Storage) I have highlighted the SD Card button. The SD card is recognised by the phone and reports 29.57 GB available. I want data to file to the SD card.
View 1 Replies
May 24, 2010
Using the guide at Android Developers (http://developer.android.com/guide/topics/data/data-storage.html) I've tried to store some data to the SD-Card. This is my code...
View 1 Replies
View Related
Jul 30, 2009
Is there a way to store android application data on the SDCard instead of the internal memory? I know how to transfer the application sqlite database from the internal memory to the SDCard, but what if the internal memory gets full in the first place? how does everyone handle this?
View 6 Replies
View Related
Mar 4, 2010
I'm making an Android Java app game (although this question applies to all languages really) and hope to release the first version soon. I'm nervous about how I save data in my game. My problem is that, if in a later update, I decide to store more data or store the same data in a different way, I need to be careful I don't lose or corrupt data for users that upgrade (i.e. I want users to be able to use data created by an old version in the new version, like their high scores from before).For example, say I want to save high scores in version 1.
View 3 Replies
View Related
Jan 14, 2012
Does your SIM card store the email address(s) associated with your carrier account or email address(s) that are set up on a phone?
View 2 Replies
View Related
Apr 3, 2012
I've occasionally had some issues with seeing the white HTC screen between switching apps and what not, is this because all of them are on my phone? Is it better to put some on the sd card?
View 7 Replies
View Related
Oct 30, 2011
Not possible with Ice Cream Sandwich 4.0.4. The only way is to use Titanium Backup, and better than that, Nandroid Backup. You can as well extract data from a Nandroid backup with Titanium Backup.
I have a Nexus S and I wonder if, with the option Settings -> Accounts and sync -> Background data & Auto-sync & Manage accounts (sync is on) the settings and savegames are automatically stored "on the cloud", let it be my Google account or similar, because I don't have a rooted phone and don't want to do that to preserve warranty.
So, the apps for wich I want to save data are:
Air Penguin
Angry Birds
Angry Birds Rio
Angry Birds Seasons
ArmySniper
Clouds & Sheep
Dolphin Browser HD
eBay
EGGGZ
Flight Director
Jewellust
Jewellust Xmas
Labyrinth
MultiGrain
X Construct
View 7 Replies
View Related
Jun 12, 2012
I just hooked up my Credit Card to the Google Play Store, and bought a couple of apps, and after that, attempted to remove it. I went to [URL] and went to the 'Payment Methods' and tried removing the card. But it warned me:
Quote:
The following purchases will be affected:
*All the apps I purchased*
Will removing the card remove these apps from my Google account? And I won't be able to update/redownload them later?I have to remove it really soon.
View 1 Replies
View Related
Mar 14, 2013
I think lots of people here hold back a little bit on how much data they expose to google. I have a specific question. When apps access address book, what address book are they accessing? The phone address book? What if it's a tablet, which has no address book, is it access your google contacts?
Quote:
YOUR ACCOUNTS
FIND ACCOUNTS ON THE DEVICE
Allows the app to get the list of accounts known by the tablet. This may include any accounts created by applications you have installed. Allows the app to get the list of accounts known by the phone. This may include any accounts created by applications you have installed.
I have an account used specifically for playstore and my tablet and phone. I also access my personal gmail through my tablet or phone, using a different account. Does that mean that Angry Birds knows about both the account used by playstore AND my personal gmail account?
View 1 Replies
View Related
Feb 19, 2014
i just got myself a Galaxy S4 clone, and wanted to install san andreas on it. Problem is, the phone has only 1.2 GB of internal memory, while san andreas has around 2.3 gbs of data. Now in order to install the game, i gotta put the files in the 'obb' folder in the 'android' folder of the internal memory, but since the game is so large, i cant install it. I tried putting the game on an SD card and linking the SD card to the internal memory with Folder Mount (yes, my phone is rooted), but i couldn't seem to get it to work.
View 1 Replies
View Related
Jan 2, 2014
How do I save data to the external SD card? I would like music, pictures and apps to be stores at the SD card (32 GB) and not on the "normal" internal storage. My phone is a Samsund Galaxy Trend.
View 3 Replies
View Related
Jan 25, 2014
I ported rom from OPPO R817T for Lenovo A390 and everything is working, except the issue of 3G data. I have to replace from stock rom and the signal was already out . but in setting can not be set 3G Data and every time I make a call * 123 # signal is lost and changed to "no sim card".
View 9 Replies
View Related
May 1, 2012
When I setup my A100 (running the ICS OTA update), I didn't have an SD card installed. It created it's own "fake" sdcard which applications use.
Now that I've added a real external sdcard, I can't get the applications to use that for their data instead of the "fake" location.
I've copied everything from the "fake" location to the new sdcard.
I suspect the problem is that the new, real sd card is called "external_sd" and the old, "fake" location is called "sdcard".
Do I need to reinstall those applications?
I am NOT trying to move applications to the external SD card; I just wants apps that normally store data there to do so instead of in the "fake" location.
Also, I am not rooted.
View 1 Replies
View Related
Mar 27, 2012
I have a 4gb sd and had it for a while. yesterday i got a new phone and it came with a 16gb sd card pre installed. at first i was going to use it for something else but this phone records hd videos and in doing so may take much more memory than normal, including that this phone takes mp4 videos. So I want to know a safe way to move all my data, music photos, video etc to the 16gb. I seen some people say drag all the data, do i actually drag ALL FOLDERS, or only certain folders?
View 3 Replies
View Related
Mar 6, 2013
I recently went about updating my tablet, and in the back of my mind I was under the impression that TWRP would backup the internal sdcard's files during the normal backup, so I thought nothing of wiping the internal sdcard. Whoops. It, of course, didn't, and now I find myself with a whole slew of stuff gone. Not much else was written to the internal sdcard (which is on an ext4 filesystem), so I suspect that a good bit of my stuff can still be sitting there in the data graveyard.
Since I'm on Linux and can't mount the sdcard directly (since for some odd reason Linux has issues with MTP), all I've been able to do was this:
I booted the tablet into recovery mode and opened up adb, and ran the following command through the adb shell:
Code:
~ # dd if=/dev/block/mmcblk0p8 of=/dev/block/mmcblk1p1
Where mmcblk0p8 is the internal sdcard with the lost data, and mmcblk1p1 is an external sdcard. I thought that by running that command, I could create a carbon copy of each and every little thing on the old sdcard, write it onto something my computer could read, and then go through the normal recovery process. In this case I planned to use a Linux tool called "extundelete."
Here's where I get stuck. The sdcard appeared to have cloned correctly, given that the entire thing is now filled up and reads as an ext4 filesystem on gparted (when it was previously fat32), but now I can't mount it. And if I can't mount it, I can't restore anything. Here's what I get when I try to mount it:
Code:
Error mounting /dev/sdb at /media/user/57f8f4bc-abf4-655f-bf67-946fc0f9f25b: Command-line `mount -t "ext4" -o "uhelper=udisks2,nodev,nosuid" "/dev/sdb" "/media/user/57f8f4bc-abf4-655f-bf67-946fc0f9f25b"' exited with non-zero exit status 32: mount: wrong fs type, bad option, bad superblock on /dev/sdb,
missing codepage or helper program, or other error In some cases useful info is found in syslog - try dmesg | tail or so
So to sum it up, I accidentally wiped my tablet's internal sdcard using TWRP 2.3.3.0, and now I want to recover what was lost during the wipe. Not that it matters, my tablet is a Transformer Infinity.
View 5 Replies
View Related
Jan 6, 2013
I'm running JB 4.1.2 and I've pretty much used up all the internal phone storage with installing games and other apps. I have an 8MB external SD with nothing on it and I'm basically wanting to transfer either the whole of android onto it if thats possible, or alternatively if thats not possible then just the larger files and folders like game data (for example GTA vice city obb takes up a whopping 1.5gb alone).
View 2 Replies
View Related
Sep 22, 2013
Is there a way to put transfer/backup/ store all internal Data onto my SD card? If not maybe App Data?
View 3 Replies
View Related
Aug 8, 2012
I have a SAMSUNG Galaxy SII, and a Sandisc 16 GB HD micro SD card, 3 days ago I noticed a notification that says:"SD card blank or has unsupported filesystem"
I tried several times to take it off and put it back but with no luck, I put the card in the card reader & connected it to my laptop, the laptop (windows 7) did't recognized it either, and it suggested to do FORMAT to the card, So I did, and choose to format to FAT32 system..I was sure that recovery programs will recover my photos and videos...
I tried 4 programs to recover them, no single photo was recovered, it just looks like a brand new Sd card now...the card now is working normally now...
View 2 Replies
View Related
Jan 31, 2013
Ascend P1
Is it possible to put game data in memory card and run the game. i mean should the game data be on internal storage in order to run the games or it is ok with memory card too? will the game search for game data only in internal storage or it searches the memory card as well?
View 2 Replies
View Related
Jun 11, 2013
I have karbonn A15 android ICS(4.0.4) smartphone, its not rooted. I want to move the app Data to my external sd card, i tried to move the data folder from the internal SD (android/data) to External SD (root folder), just to check whether it releases any memory in the storage section in phone settings. but the internal storage was same, there was no change, where does the app data resides in the internal memory, its fine if i can move app data manually to the external sd card.
I also want some clarification on below questions:
1. Also i want to know whether there is any risk rooting phone like (Bricking Phone), as i have bricked my previous Galaxy Ace when i rooted and used ROM manager.
2. Also i have heard about Folder Binding app which automatically transfers App Data to External Sd Card, is there any risk of bricking phone.
3. Whats the easiest method to root Karbonn A15 phone, i am not that tech savvy, so easiest method would be grateful in rooting device.
My concern is just to move App Data to External Sd Card, because i have some app whose Data increase very frequently (E.g: FireFox app).
View 8 Replies
View Related
Nov 14, 2010
I am writing an application that needs to store keys that will be compared against later. How can I do this securely? I have looked into using a SQLite database, but this doesn't seem to be secure at all...any thoughts?
View 2 Replies
View Related
Sep 16, 2010
I write app that hold route information (array of GeoPoint ) for every race.At the end of each race I want to save information about race. They may have 100-200 GeoPoints (70.22222, -20 33333), each race.Example for one race:
70.22212, -20 33253
70.25222, -20 33463
70.26232, -20 33573
70.27242, -20 33683
Now I store this information in this array List<GeoPoint> race = new ArrayList<GeoPoint>(); Where to save information for every race in Android (Database, internal XML)?
View 1 Replies
View Related
Jun 22, 2009
I'm writing an application that needs to store some small jpeg or pngs. Looking at the documentation i have seen that databases are stored under /data/data/package_name/databases I decided to store my data under /data/data/package_name/files. With the emulator i can see all these files (databases and images) under the proposed directories but moving the application on a real device and installing a file system browser i cannot see any file under /data. Can anyone explain me why? My application works perfectly on my mobile (HTC magic) so i think that data is downloaded and stored. If this is a security constraint,do i need to put the application under debug on the mobile in order to inspect file system?
View 3 Replies
View Related
Apr 13, 2012
How can I move dalvik-cache and data/data to sd card or sd ext2?
HTC Explorer A310e
View 9 Replies
View Related
Feb 23, 2010
For a particular activity - what is the best way to store data that needs to be displayed. The issue is that when the user changes orientation, you need to be able to re-render your activity which means you need to get back at that data that you use to render. I understand the MVC design pattern, but I guess I'm wondering where the M should be stored. Global variables? Static members of your activity? Serialized to private storage?
View 2 Replies
View Related
Aug 19, 2010
I am looking for something like SugarSync, but something that does not store data in the cloud. I want to sync folders from my Incredbile to my PC and vice versa.
View 10 Replies
View Related
Sep 19, 2009
I need to store data securely. So can some one tell me what should be the best way to store it on device. Is there something like registory in android.
View 2 Replies
View Related
Sep 14, 2010
- Hide quoted text -
View 6 Replies
View Related
Feb 4, 2009
This issue has troubled me a lot, please help if you have any ideas.
- I am accessing an xml file from withing the apk, (stored in /res/ raw). The xml is read succesfully. My goal is to use this xml file as data that can be changed in the apk.
- I tried unpacking and packing the apk file with ZIP compression and the newly packed apk worked on the phone.
- I changed the xml file and packed the contents of the apk into a new apk
- "install was unsuccesful" was the result of installing the new apk
As I see it, for every file stored into the apk, there are equivalent references stored in the manifest and cert files:
for example: SHA1-Digest: YS8iSCii71WMNrK7CHy5XLXBo+k=
Do you have any other ideas of how I can store/alter information into the APK?
View 7 Replies
View Related
May 25, 2010
Well this is actually a question for someone else but I didn't know the answer. So can you buy cell phones using a Best Buy store credit card? Told them why not use cash or another credit card, but this person loves reward zone points.
View 3 Replies
View Related