[android-developers] SQLite, android_metadata

2008-12-11 Thread Bradley Kite
Hi fellow developers, I have created an SQLite database on another (non-android) system and have transferred it to my SDCard so that my application can use its data, however I have a problem where Android is expecting some custom tables to exist, as when I call SQLiteDatabase.openDatabase() I

[android-developers] Re: SQLite, android_metadata

2008-12-11 Thread Bradley Kite
Actually, with a bit more reading, I have discovered that I need to use the SQLiteDatabase.NO_LOCALIZED_COLLATORS flag when calling SQLiteDatabase.openDatabase() - this no longer causes the problem. Regards -- Brad. On 11/12/2008, Bradley Kite [EMAIL PROTECTED] wrote: Hi fellow developers

[android-developers] android.graphics, drawing paths, and patterns

2008-12-02 Thread Bradley Kite
Hi fellow developers, I have a requirement to draw a path on a canvas (which is easy enough), but to then stamp symbols over it every few pixels. In particular, the symbols I want to stamp over it are .png images, and basically change the line so that it contains 'x' shapes on it - as an

[android-developers] Re: adb shell permissions on real G1 device

2008-11-07 Thread Bradley Kite
to app-private files from the shell in 1.0. You can create those files as word readable though. On Nov 6, 11:18 am, Bradley Kite [EMAIL PROTECTED] wrote: Hi there, Yes there is a reason. I'm working on an application that requires wifi access and cannot be used within the emulator

[android-developers] Re: adb shell permissions on real G1 device

2008-11-07 Thread Bradley Kite
Indeed. I appreciate your feedback. A search elsewhere has helped me debug my issues further. Regards -- Brad. On 07/11/2008, Michael [EMAIL PROTECTED] wrote: It seems that too many people have believed the media hype, or were under the incorrect impression that T-Mobile's G1 would be

[android-developers] adb shell permissions on real G1 device

2008-11-06 Thread Bradley Kite
Hi there, I am trying to debug some things on a real G1 device, but the shell doesnt have the permissions to do what I'm trying. http://code.google.com/android/reference/adb.html#sqlite documents how to examine a database, however this is one of the things I cannot do on a real device. $ id id

[android-developers] Re: Problems with file permissions on actual G1 platform

2008-11-06 Thread Bradley Kite
Hi It seems quite sensible to have root access disabled by default when the devices ship, but is there really no way that it can be enabled again for the purposes of debugging etc? As owner of the device I feel I should be entitled to such a thing. Does any body know how? Any help will be

[android-developers] Re: adb shell permissions on real G1 device

2008-11-06 Thread Bradley Kite
Hi there, Yes there is a reason. I'm working on an application that requires wifi access and cannot be used within the emulator. There must be a way around this? Regards -- Brad. On 06/11/2008, Michael [EMAIL PROTECTED] wrote: That's pretty intentional. Is there some reason you can't use

[android-developers] Comment spam in android market :(

2008-11-03 Thread Bradley Kite
Hi all (especially googlers) I've noticed a fair bit of comment spam appearing within the android market. Is there any way that these horrible people can be blocked from making further comments/spam next to other peoples applications? I 'spose its inevitable that people will always try to

[android-developers] dalvik bug?

2008-10-30 Thread Bradley Kite
Hi all, I am running this bit of code within the emulator (SDK 1.0r) Log.d(TAG, I am here - 1); Location currentLocation = lm.getLastKnownLocation(LocationManager.GPS_PROVIDER); Log.d(TAG, I am here - 2); The logcat output never shows the second

[android-developers] Re: dalvik bug?

2008-10-30 Thread Bradley Kite
On 30/10/2008, fadden [EMAIL PROTECTED] wrote: On Oct 30, 5:44 am, Bradley Kite [EMAIL PROTECTED] wrote: I am running this bit of code within the emulator (SDK 1.0r) Log.d(TAG, I am here - 1); Location currentLocation = lm.getLastKnownLocation

[android-developers] Re: [android-internals] Location Providers

2008-10-27 Thread Bradley Kite
Hackborn [EMAIL PROTECTED] wrote: They are implemented in the platform code, which hasn't yet been released. I believe subclassing by apps is only for development on the emulator to generate fake location information. On Sat, Oct 18, 2008 at 1:49 PM, Bradley Kite [EMAIL PROTECTED] wrote: Hi

[android-developers] Location Providers

2008-10-18 Thread Bradley Kite
Hi all, The LocationProvider class (android.location.LocationProvider) is documented as being an abstract super-class, However I could not find any concrete classes (eg GPSLocationProvider, CellLocationProvider, WifiLocationProvider etc.). Does any body (either from within google, or otherwise)

[android-developers] Re: Developing Wi-Fi applications in the emulator

2008-09-24 Thread Bradley Kite
. 2008/9/15 Bradley Kite [EMAIL PROTECTED] On 13/09/2008, Bradley Kite [EMAIL PROTECTED] wrote: On 11/09/2008, Bradley Kite [EMAIL PROTECTED] wrote: Hi all, I would like to develop an application that makes use of the wifi API (android.net.wifi

[android-developers] Re: Developing Wi-Fi applications in the emulator

2008-09-13 Thread Bradley Kite
On 11/09/2008, Bradley Kite [EMAIL PROTECTED] wrote: Hi all, I would like to develop an application that makes use of the wifi API (android.net.wifi.*). Is there any way that I can test my application within the emulator? At the moment I am getting this error: E/WifiService( 46

[android-developers] Developing Wi-Fi applications in the emulator

2008-09-11 Thread Bradley Kite
Hi all, I would like to develop an application that makes use of the wifi API (android.net.wifi.*). Is there any way that I can test my application within the emulator? At the moment I am getting this error: E/WifiService( 46): Failed to load Wi-Fi driver. Which I kind of expected, as the