As a java developer for more than 12 years I understand the need for encryption on certain data, and also understand that some devices will not have sd card hardware available. I was under the impression that any DB created will be assumed under the pre-defined data path by the android classes, so simply using /sdcard you put the new DB under /data//sdcard -- this is based on what documentation I've read so far. Maybe I am mistaken... It seems that you're correct, but I'm going to do some tests to see if it will give me exactly what I'm looking for...
Also, does android have an API to directly access the inverted call data or is everything at the reciever image level protected? Or maybe even some inline hook for data/voice? Sent via BlackBerry -----Original Message----- From: "Justin (Google Employee)" <[EMAIL PROTECTED]> Date: Thu, 12 Jun 2008 09:27:26 To:Android Developers <[email protected]> Subject: [android-developers] Re: Need help on supporting IGMP protocol onandroid > Do you know much about the data storage on Android? Keep in mind that Android is a software platform that is designed to run on a variety of hardware. That being said, remember that most mobile devices have very limited internal memory by desktop/server standards. Its likely that not all Android devices will have an SD card. > I know a specific path is followed for DB creation, and such, but is it > possible or will it ever be possible > to store data or create a DB on an SD > card? You can store anything you want on an SD card, if present. The SQLiteDatabase class ( http://code.google.com/android/reference/android/database/sqlite/SQLiteDatabase.html ) takes a path argument when creating a new database. On Android you can access the SD card at /sdcard . Keep in mind that things on the SD card are generally world readable, which means items stored here can be read by other applications. Cheers, Justin Android Team @ Google On Jun 11, 5:25 pm, [EMAIL PROTECTED] wrote: > Justin: > > Do you know much about the data storage on Android? I know a specific path is > followed for DB creation, and such, but is it possible or will it ever be > possible to store data or create a DB on an SD card? > > For example, to store numbers for a phone book application or to maybe store > texts, call logs, etc... > > Sent via BlackBerry > > -----Original Message----- > From: "Justin (Google Employee)" <[EMAIL PROTECTED]> > > Date: Wed, 11 Jun 2008 17:20:24 > To:Android Developers <[email protected]> > Subject: [android-developers] Re: Need help on supporting IGMP protocol on > > android > > Disclaimer: I have no experience with IGMP. > > Possibly you could port it to Java and Android as a Service. Android > has support for Java sockets, so I assume this would provide the basic > networking functionality you need. > > The alternative is adding it as native code and then exposing Java > bindings in Android. This is currently not possible, but once the > Android code is open sourced I would imagine this would be possible. > > Cheers, > Justin > Android Team @ Google > > On Jun 9, 10:13 pm, Rama <[EMAIL PROTECTED]> wrote: > > Hi > > I have ported IGMP v3.0 on Linux. > > I want to expose IGMP API's (like join and leave)to the android > > application which is written in Java > > Please suggest how to do this? > > > Regards > > Rama --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] Announcing the new M5 SDK! http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

