Android :: Use PathClassLoader For Files That Are Not Installed?
Mar 12, 2010
I am using PathClassLoader in my application and can get it to load files that are already installe.d But how do I get it to load an apk file that is stored in say the assets folder of my app. IS this even possible?
View 7 Replies
Jul 29, 2009
To android working on eclipse with android 1.5 r2 version when i am running a basic program its showing a error .apk file not found.
View 2 Replies
View Related
Aug 30, 2010
So I installed a theme, and the 8/26 froyo, and the stuff needed to get there, but now I have the .zip's hanging out on my SD card. Once installed, can I delete these from my card?
View 1 Replies
View Related
Aug 23, 2010
Been searching but cant find a clear cut answer.
Once I've installed an .apk file, can I delete that .apk file off my SD card? Will it still function properly?
View 1 Replies
View Related
Oct 29, 2010
I restore angry birds from a titanium backup. is there anyway to get angry birds to show up in the market so i can get the updates?
View 1 Replies
View Related
May 6, 2010
I downloaded the 2.1 zip to sd card, and cleaned all off of sd card, EXCEPT the zip file. Put the other 1.5 files on another sd card Installed 2.1, no issues at all. Runs great. Do I need to put those misc files back on, or are they included in 2.1.
View 3 Replies
View Related
Apr 25, 2013
As the title says how do I remove the unnecessary files from the extra clockwork mod I installed? I know I'm a massive noob, this is my third day on android.I just switched from my iPhone.
View 1 Replies
View Related
Mar 24, 2012
The problem is maintaining apps that were NOT installed from the Market, but from .apk files scattered in various directories on the SD card. What I need is a tool that combines the functionality of an app manager like Easy Installer together with details of all currently-installed apps: In a single big list sorted by app name, I'd like to see the installed version (if any), plus every available .apk file and the version it contains. That would make it SO much easier to know if I need to update installed apps with a newer version, and to delete multiple .apk files of outdated versions.
I've seen lots of apps (including the Apps menu built into Android Settings) to view the installed apps and their version info -- and also lots of apps to scan the whole SD card for .apk files and display the actual app info (name, version, etc.) vs. just the filenames. What's missing is an easy way to compare all these.
View 1 Replies
View Related
Jul 16, 2010
As you may all know Desire has nearly 150mb internal memory for applications so I'm doing my best to use it wisely,
My problem occured when I start to install and uninstall many applications just for testing. I've seen that every installed and uninstalled application leaves some files that fills up this 150mb.
At my phone I had, CoPilot live + Several games + Google Earth. Now I've none and but when I try to install CoPilot or Google Earth I'm facing the fact that there is no space left.
I think applications might be leaving installer file behind when applications installed through HTC Sync, this might be the only logical reason.
View 3 Replies
View Related
Sep 13, 2010
is there an easy way (api) to do this?
View 6 Replies
View Related
Jul 27, 2010
Is there any way I can extract the .apk for an app I downloaded and installed from the market? So I can store the .apk on my PC
View 7 Replies
View Related
Apr 24, 2009
Can anybody advice what is the recommended directory to store files generated by your application: audio files, video files or some images.
If the phone contains SD card, it is clear that files should be saved there, but if there is no any external storage. where would you recommend to save to?
View 2 Replies
View Related
Mar 19, 2009
I wrote an app that downloads web sites and all their assets (images/stylesheets) to "disk" and therefore stores lots of small files on the SD card.
Sometimes it fails to delete large amounts of files and afterward the file system is r/o. To analyze that behavior I tried to do the removal of the files by hand and then go from there. But that already failed.
localhost:~ mkamp$ adb -d shell mount [.. some mounts ..] /dev/block/mmcblk0p1 /sdcard vfat rw,dirsync,nosuid,nodev,noexec,uid=1000,gid=1000,fmask=0711,dmask=0700,codepage=cp437,iocharset=iso8859-1,utf8 0 0 --> R/W
Last login: Wed Mar 18 19:41:49 on ttys005 localhost:~ mkamp$ adb -d shell rm /sdcard/newsrob/a* [.. minutes of silent deletes ..] rm failed for /sdcard/newsrob/a2aade03616c28b30_113.png, Read-only file system localhost:~ mkamp$
localhost:~ mkamp$ adb -d shell mount [.. some mounts ..] /dev/block/mmcblk0p1 /sdcard vfat ro,dirsync,nosuid,nodev,noexec,uid=1000,gid=1000,fmask=0711,dmask=0700,codepage=cp437,iocharset=iso8859-1,utf8 0 0 --> R/O now
The log contained nothing but the usual gc output and random WiFi status changed mumbo jumbo.
Anybody else seeing this behavior?
There were 6.500 files in that directory. Might that be the problem? I don't access the files with queries, I always have the exact name.
View 5 Replies
View Related
Nov 4, 2010
I am working on an android app. Where i need to parse some plist files from assets folder. I do understand how to use assets in android but now problem is that file sizes are more than 1MB and so android gives error Data Exceeds UNCOMPRESS_DATA_MAX (2183588 vs 1048576). how to access such larger files from assets? Also I cant reduce a file into small buffers because i am just sending it to "DocumentBuilder.parse(in)" as a whole so can not use buffer. The error is on line: Document doc = db.parse(in).
View 1 Replies
View Related
Jun 11, 2010
I am trying to overlay route data in KML files on a MapView.
The following code works great:
CODE:................
The only problem I have with this is that I don't need to re download these KML files every time. I have about 10-15 KML files that will rarely change. Also since it has to connect, download, and parse these each time there is a delay in opening the maps.
It would make a lot more since for me to save these as a local resource and have the URI reference it there. Is there a way to construct a URI using the geo: scheme and have it point towards a local resource?
It looks like file:///sdcard support was included in 2.1. The only reference I could find to it was at the end of this bug report thread. I am currently at work and don't have time to play with this yet but I would like to figure it out later. I feel like there are a lot of people on stackoverflow and elsewhere who would really appreciate a reasonable way to do this.
View 1 Replies
View Related
May 11, 2010
I want to know how to get the ringtone,audio files in the device and I want set them as alarm. I am working in the code to set the alarm and I want to know how to retreive audio or ringtones from the device.
View 1 Replies
View Related
Sep 2, 2009
From the Android documentation:
"You can store files directly on the mobile device or on a removable storage medium. By default, other applications cannot access these files. "
I could write to the sdcard (/sdcard/file.tmp) and other apps could access these files, right?
I would like some local storage that I can write files to (and read from later) that are not accessible to other applications, and I will always have access to. The problem with the sdcard is that if someone plugs in a USB cable and turns on MSC, my application (and all applications on the phone) will lose (both read and write) access to the /sdcard directory. So I need something more reliable.
View 8 Replies
View Related
Nov 6, 2010
Sometimes I'm browsing the web and... One more download... And then oops! Another one...Then I realised that those downloads are still in my download list and there's no option to COMPLETELY remove them. Also, where do I clean browser's temporary files?
View 3 Replies
View Related
Apr 4, 2010
I have a Samsung Galaxy I7500 using android 1.5. I extended my phone with a 16GB microSD. I copied a big music collection (around 800 files) into a folder on this SD. Now the problem is that the music player can't find all the files.
I know that there are several threads about android not finding music. The answers are usually that the library hasn't yet been updated or that the ID3 tags are not correct.
I have checked both.
Btw. I can play the files using ASTRO.
In my opinion it seems as if android can't build up a library with too many entries. If I rename the files or put them into different folders, songs disappear and reappear quite randomly.
Do you have any solutions? Is there a music player which doesn't use the native music players index of files?
View 3 Replies
View Related
Oct 21, 2010
I cant send any files(pictures,mp3 files) through bluetooth.
Can anyone give some solution on how it works?
View 2 Replies
View Related
Nov 17, 2009
I uploaded about 50 pictures from iPhoto (using a Mac) just to see what they looked like and then later formatted the Droid's SD card, so the pictures were no longer there.
Now, if I mount the Droid via USB and view the file structure there is a folder named /albumthumbs which contains 50 files, presumably for the 50 pictures a had on the SD card.
To me, these file, unless linking to actual photos stored on the SD card, take up extra space in the phone's memory (not worried about the SD card). I wonder if I can safely delete them (just the files...not the folder)?
View 2 Replies
View Related
Apr 30, 2014
i not able to transfer files from my note 3 n9000 my laptop detects my phone but not able to copy files from my phone but able to send files to my phone
View 1 Replies
View Related
May 7, 2010
How do you go about checking what is stored on your phones memory and deleting content? For example I used dropbox and downloaded a 7mb photo onto my phone. Can't find it in the photos app or anywhere else. Going into SD & phone storage under settings doesn't do anything. It says I have 70mb available space under phone storage but you can't click on that to get any further info. Same goes for the SD card options.
View 1 Replies
View Related
Sep 3, 2013
got a Samsung Galaxy S4 (for several years I had iPhones) and I am enjoying it. Now that I have gotten all my music files away from iTunes' clunky clutches I have reorganized them and they are on my S4's sim card and it works great.
The issue is that I have updated a few of the files and moved a couple more around. I want to update those music files on my S4 from my PC. I could just delete the Music folder on the S4 and recopy everything over, but that seems to be a huge overkill.
What is a good way to compare files between my S4 and folders on the PC and match/update between the two? I am using Windows 7. I have tried to map the Sim Card as a drive but couldn't get that to work. I have Kies from Samsung but that is kinda clunky. I have also tried AirDroid (which I think is great) but I can't really sync files with that. Normally I would use a Windows application like Beyond Compare or WinMerge to do something like this.
View 3 Replies
View Related
Jul 3, 2013
I am on a standard website that has a normal upload button, I need to upload a PDF file, But when I click on the upload button on the web site a popup window from my Android phone appears and says "Choose action" and gives me access to the gallery, camcorder, voice recorder , choose music track, gallery (again), select music track and voice recorder (again).
I need to some how get access to my SD card and my download folder to be able to pick the the pdf file that I need to upload. I have tried this both on the default internet browser and Google Chrome, but both give the same options.
I am on a rooted HTC ONE on ATT
View 3 Replies
View Related
Mar 19, 2014
My Sandisc 64GB SD card went kaputt last week, it froze at 33GB, luckily the existing files are all ok and I was able to copy all the files onto my PC, however nothing new can be written to it. I've tried formatting with no success. So I copied the files onto the PC and just got a new this time Samsung 64GB micro SD card. Problem I'm having now is that on several attempts it's failed to copy the files back to my SD card (from PC) I've formatted the card in the Note 3..the music files about 4 GB transferred just fine, the problem seems to be with the Pix and Videos. I'm currently trying to copy the DCIM folder back onto the micro sd and it's saying it'll take 6 hours.
I have tried: copying from PC to micro SD in the phone via USB copying from PC to micro SD in SD card adapter plugged directly into PC
copying from PC to micro SD in USB adapter plugged into PC
all results the same
View 1 Replies
View Related
Jan 3, 2013
im trying to exchange some files in /system/framework of a stock jellybean 4.2.1 rom that came with my nexus 10.
I have built a workin rom from AOSP sources and made little adjustments that are present in /system/framework/services.jar and services.odex
I have built full_manta-user (not -userdebug!) so that the rom gets odexed and matches my stock rom.
The problem is i get stuck in a boot loop when i use my services.odex file on my stock rom. Is there a way to make it work or debug it?
View 1 Replies
View Related
May 6, 2010
I'm trying to download the SMS app from XDA and the guy has it up as a zip file. I download it and extract it, and it's a folder with random crap in it. No apk.
Then I read that I just change the file name. I'm on a Mac, so I change the filename and it verifies if I want to change it from .zip to .apk and I say "yes." Put it on my card and Astro still doesn't recognize it. It's list, but it's an icon with a window and a gear in front of it.
I installed the Vanilla email app, no problem. Not sure what the deal is with this one.
View 15 Replies
View Related
Dec 11, 2009
I try to create 'foo/bar.txt' in Android's /data/data/pkg/files directory.
It seems to be a contradiction in docs:
To write to a file, call Context.openFileOutput() with the name and path.
http://developer.android.com/guide/topics/data/data-storage.html#files
The name of the file to open; can not contain path separators.
[url]
And when I call
this.openFileOutput("foo/bar.txt", Context.MODE_PRIVATE);
exception is thrown:
java.lang.IllegalArgumentException: File foo/bar.txt contains a path separator
So how do I create file in subfolder?
View 2 Replies
View Related
Jun 29, 2013
My searches all bring back ways to transfer files using my Windows Explorer on my PC Interface via USB and on Android "Es file explorer" using wifi.
I use ES file Explorer to view shared folders on my PC via wifi. I want to do the same thing only faster through USB. Similar to how you connect the android to your pc and it shows the internal sd and external sd in windows explorer.
For example... I want to browse my vast collection of "Justin Bieber's Monkey confiscated by German customs for excessive spanking" pics on my pc to find one that looks good as my android wallpaper. I dont want to use wifi and cant load the 74GB of pics from my pc on my 8 GB SD card on my Android to go through them.
View 5 Replies
View Related