Re: [android-developers] SDcard booting on blaze board through fastboot

2012-04-27 Thread Mark Murphy
On Fri, Apr 27, 2012 at 12:44 AM, Mamatha K wrote: >        I am facing problem in sdcard booting on blaze board. Step #1: Visit http://source.android.com Step #2: Click on the Community tab Step #3: Find a Google Group of relevance to your question Step #4: Ask your question there -- Mark M

[android-developers] SDcard booting on blaze board through fastboot

2012-04-26 Thread Mamatha K
Dear All, I am facing problem in sdcard booting on blaze board. Blaze board also has nand flash. So when the given fastboot is executed its going on flash memory. But in my project we are using blaze board WITHOUT internal memory ( i.e, it has to boot from sdcard). So we need to fastboot t

Re: [android-developers] /sdcard

2011-10-22 Thread TreKing
On Sat, Oct 22, 2011 at 2:33 AM, bob wrote: > Can someone tell me how to put a file in my /sdcard dir so I can try this > thing? > http://tinyurl.com/66jg4ws - TreKing

[android-developers] /sdcard

2011-10-22 Thread bob
So, I'm trying to load a 3d model with this thing: http://sourceforge.net/projects/objloaderforand/ Of course, it crashes. I found out, it's because of this line in the demo: model=parser.parseOBJ("/sdcard/windmill.obj"); Can someone tell me how to put a file in my /sdcard dir so I can try thi

[android-developers] sdcard MEDIA_MOUNTED_SHARED

2011-06-20 Thread Joel Gwynn
This is driving me nuts. I'm trying to write data to the sdcard, but the state returned from Environment.getExternalStorageState() is "shared". I've tried unmounting the drive from windows, disabling the driver, mounting it with sdutil. Nothing works. The android device won't mount the sdcard.

[android-developers] SdCard removal issue

2011-06-18 Thread Shrinivas Sahukar
Hi all, while playing the music if sdcard is removed the file keeps on playing the buffered data, what i think is sdcard bad removal intent listener is not there in ginger bread.. while in eclair its handled in setting application where it recieves the events of sdcard where as this class is miss

[android-developers] SDCard installs - auto or preferExternal?

2011-05-04 Thread Droid
I am guessing my manifest entry is better (from the users point of view) as: android:installLocation="preferExternal" Would users prefer android:installLocation="auto"? Would app users prefer installing to their SDCard by default rather than to internal memory? -- You received this message beca

Re: [android-developers] SDCARD device access

2011-03-19 Thread Mark Murphy
On Fri, Mar 18, 2011 at 10:31 PM, Twobrat wrote: > I'm looking for a way to "wipe" as in write zeros to the sdcard. Is it > possible to dd if=/dev/zero of=/dev/sdcard as an application? I doubt it, considering that there is no /dev/sdcard, and there are likely files open on external storage. > O

[android-developers] SDCARD device access

2011-03-19 Thread Twobrat
I'm looking for a way to "wipe" as in write zeros to the sdcard. Is it possible to dd if=/dev/zero of=/dev/sdcard as an application? Otherwise, I could delete all files from sdcard and then copy over a really big file of zeros. -- You received this message because you are subscribed to the Google

Re: [android-developers] SDcard mount point in portable way?

2011-02-25 Thread Mark Murphy
On Fri, Feb 25, 2011 at 6:41 AM, Dmitry Golubovsky wrote: > In my program, I need to access the full contents of the sdcard for > reading and writing. > > I have found that the sdcard is itself mounted at /system/media/sdcard > (on Pandigital Novel 9" tablet, Android 2.0). Is there any library > f

[android-developers] SDcard mount point in portable way?

2011-02-25 Thread Dmitry Golubovsky
Hi, In my program, I need to access the full contents of the sdcard for reading and writing. I have found that the sdcard is itself mounted at /system/media/sdcard (on Pandigital Novel 9" tablet, Android 2.0). Is there any library function that would return this path correctly for any other Andro

Re: [android-developers] SDCard question

2011-01-26 Thread Kostya Vasilyev
Scott, You can't. Install to sd is only available if the phone is running 2.2 (or later). There might be custom firmwares based on earlier versions of Android with this function back-ported, but that's not a typical runtime environment. -- Kostya 26.01.2011 8:39, Scott Deutsch пишет: Tha

Re: [android-developers] SDCard question

2011-01-25 Thread Scott Deutsch
Thanks for that article. So, how can i make it install on the on the sd card if they have below API Level 8? Or, is most devices Level 8 and above now a days so I don't have to worry about that? Thanks. -- You received this message because you are subscribed to the Google Groups "Android De

Re: [android-developers] SDCard question

2011-01-25 Thread Kostya Vasilyev
25.01.2011 21:21, Scott Deutsch пишет: Hello Group, How do you enable the Move to SD Card button? Is it a permission thing? http://developer.android.com/guide/appendix/install-location.html Also, Is there a way to make the drawable folder automatically go to the SD Card or make the whole pro

[android-developers] SDCard question

2011-01-25 Thread Scott Deutsch
Hello Group, How do you enable the Move to SD Card button? Is it a permission thing? Also, Is there a way to make the drawable folder automatically go to the SD Card or make the whole program automatically download to the SD Card? Thanks group. -- You received this message because you are subs

[android-developers] SDcard tmpfs mount for Gallery application on Gingerbread not working

2011-01-18 Thread kumar23
HI, I tried to use tmpfs mount for sdcard but is not working for Gingerbread. We are trying to run Gallery to view the pictures on sdcard. but unfortunately sdcard tmpfs mount is not detected by Android GB. We used the following commands. mount -t tmpfs none /sdcard/ copy image files to /sdcard/

[android-developers] SDCard mounted read-only for one app but not for the other?

2011-01-18 Thread Tux
Hi all, I have an application which can write/read files on SDcard. Every time I launch the emulator, I run: emulator -sdcard sdcard. It's working fine. But, I have another application where I'd like to read files wrote by the first one. But this particular application, after getExternalStorageDi

[android-developers] SDCard, file exists for one application but not for the other?

2011-01-14 Thread guillaume benats
Hi all, I have an application writing xml files on the SDcard, working, I checked by mounting the card as an image. Another application try to access the same file, but says it does not exists which is totally wrong (and yes I unmounted the sdcard). File is in /mnt/sdcard/file.xml and applicati

[android-developers] sdcard can't be recognized by android(app) after mounting

2010-08-29 Thread Nikkea Dong
Hey guys I think something wrong with my vold.fstab or some other issues. I lunched emulator in from eclipse avd. I set 128M sd card, but can't be detected in android. Then I used "mount -t vfat /dev/block/mmcblk0p1 /mnt/* sd**card* ", use df can show sd card under /mnt/sdcard. But the andr

[android-developers] sdcard MEDIA_MOUNTED, File.canRead = true, File.canWrite = false

2010-08-06 Thread john brown
Hello, I am using Android 2.1 update 1, API level 7, Eclipse, and HVGA skin. When the AVD is running, I check settings > sdcard total 49.21MB, available 49.07MB. Programatically checking Environment.getExternalStorageState() equals MEDIA_MOUNTED which I think means that the sdcard is available a

[android-developers] sdcard and music player app

2010-04-16 Thread Channa
Hi, I have some doubt with respect to the Music player application. When I insert the SDcard , MediaScannerService scans the SDcard for any media content. When I start the Music player application I can the Aritst/album/songs list etc. When I remove the SDcard and start the Music player again the

[android-developers] sdcard file permissions for "system" user

2010-04-07 Thread Niraj
When I insert SD card in my android device, /sdcard directory has permissions: d---rwxr-x with “system” as owner. d---rwxr-x system sdcard_rw 2008-08-23 13:17 sdcard Here, the owner is system and doesn't have any permissions. When I tried to write a file from android applic

[android-developers] SDCARD images/audio/video not reflected in gallery.

2009-09-26 Thread Umesh
Hi all, I have pushed around 10 files of each image(*.png ), audio(*.mp3) and video(*.mp4 & *.3gp) after that I have restarted the emulator and when I open the gallery application I see only a few files being present in sdcard. (in my case 1 video, 2 images and 2 audio clips) . is this a bug

[android-developers] sdcard mounted but not detected by android system.

2009-07-29 Thread mssmison
I'm having a problem with sdcard detection. I've gotten the sdcard mounted, it lists as a mount point and the SD card and phone storage read it and can list available space, however any apps requiring the card still do not detect it. Here is my mount info; # mount rootfs on / type rootfs (rw) pr

[android-developers] sdcard mount detection

2009-06-08 Thread jonathan
is there a way to be notified from my application of sdcard mount? any services etc? thanks! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-deve

[android-developers] sdcard mount detection

2009-06-08 Thread jonathan
is there a way to be notified from my application of sdcard mount? any services etc? thanks! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-deve

[android-developers] SDCard becoming un-writeable

2009-05-29 Thread GiladH
Hey, My app occationaly fails with this/that sort of an IO error when trying to _write_ a file to the sdcard. No problems in reading files. I have tested it on both textual files ( via FileWriter etc) and binary files ( new RandomAccessFile( filepath, "rw"); ). I have no reasun to believe that

[android-developers] SDCard error

2009-05-10 Thread nwmotog...@gmail.com
I have moved my development to a Vista x64 system and I have the emulator and Eclipse running but I can't seem to get the sdcard image to mount. The emulator loads and a notification appears that states: "Removed SD Card. The SD has been removed. Insert a new SD card." Has anyone seen this and

[android-developers] sdcard - remaining space

2009-05-07 Thread Sheado
hello, sorry if this has already been answered (hard to search for this one).. is there any way to detect remaining space on the sdcard through the API? I prefer not to make native or shell calls. Thanks! --~--~-~--~~~---~--~~ You received this message because you

[android-developers] sdcard on emulator mounted read only !!

2009-05-04 Thread Dan Raaka
Using "android-1.5" tagged source from cupcake branch created an sdcard image $ ./out/host/linux-x86/bin/mksdcard 64M sdcard.img launched the emulator to use the above image $ emulator -sdcard ./sdcard.img -scale 0.75 & $ adb shell ls -l drwxrwxrwt root root 2009-05-04 18:00 sql

[android-developers] sdcard in avd SDK 1.5

2009-04-28 Thread longhairedsi
Hello, I've been trying to figure out how to use the sdcard that was generated when I created the avd file for the emulator in SDK 1.5 r1. In previous SDKs I set this in the Eclipse run configurations -sdcard c:\android\sd500m.img I could then access the sdcard through DDMS etc. How do i spec

[android-developers] sdcard

2009-04-10 Thread Nithin
Hi to all I push the one video file... and tried to play that video file in emulator.. But i got error... Can any tell me how can i check weather video file insert or not... Thank You Nithin N V --~--~-~--~~~---~--~~ You received this message because y

[android-developers] sdcard file permissions for services

2009-02-26 Thread ATrubka
Hi, guys. I'm trying to download a file to sdcard. When I do it from Activity everything works fine. As soon as I run the same code from a service (which runs in :installerservice process) it complains about directories being write protected. My sdcard has the following permissions: d---rwxrwx s

[android-developers] Sdcard issue

2009-02-04 Thread krish24
Hi All, We have ported android to our hardware. I am facing some issues related to sdcard. Here is the test scenario and issues: First issue : 1> On hardware, insert the card and copy a file to sdcard using dd command. 2> Remove the card from hardware. 3> do ls /sdcard It shows the file pre

[android-developers] SDCard and SQLiteOpenHelper problem

2008-10-29 Thread wescorp
Hello, I need to be able to work with databases on the sdcard. I've been using the following code snippet from the NotePad application and works perfectly on the emulator without using the sdcard. private static class DatabaseHelper extends SQLiteOpenHelper { DatabaseHelper(Context context) { s