Re: [android-developers] ICS Hardware Acceleration steals my OpenGL textures?

2011-12-30 Thread dan raaka
can you post an example code /test app which demonstrates this .. (yes, i saw your image already) -Dan On Wed, Dec 28, 2011 at 1:23 PM, carlrice wrote: > I have an Android app which uses a bit of OpenGL running on a Galaxy > Nexus with ICS. After turning on hardware acceleration and using my

Re: [android-developers] Clarification on DPI

2011-12-30 Thread dan raaka
the math for the doing the calculations to determine the tiping point in terms classifications changed in HC, and hence the above comment. -Dan On Thu, Dec 29, 2011 at 8:06 PM, Jonathan wrote: > This quote was taken from an official Android blog post ( > > http://android-developers.blogspot.co

Re: [android-developers] Re: How can apps sending and receiving SMSs be visible on the market for the new Galaxy Tablets?

2011-12-27 Thread dan raaka
in your manifest explicitly declare the hardware.telephony and set the required="false". This solves the market filtering issues. However, you will now have to @ runtime check if the device does indeed support SMS !! -Dan 2011/12/22 Kostya Vasilyev > While I don't have a workaround - sorry -

[android-developers] Re: USB Host mode on galaxy tab 10.1 / android 3.1 - Device repeatedly re connecting in dmesg output

2011-09-27 Thread Dan Raaka
on the galaxy tab 10.1, what is the build fingerprint ? $ adb shell getprop | grep -i finger -Dan On Sep 27, 11:52 am, Taylor Alexander wrote: > Glad to help! :) > -Taylor > > > > On Tue, Sep 27, 2011 at 11:36 AM, Anil Sasidharan wrote: > > Hi Taylor, > > > Thanks a million. Awesome suggestions

Re: [android-developers] App appears to be missing for a number of devices on Android Market

2011-09-21 Thread dan raaka
I have seen similar issues mainly due to the market app trying to infer android.hardware.screen.portrait even though you may not have declared it in your manifest. workaround : add this to your manifest -Dan On Sun, Sep 18, 2011 at 9:48 AM, cpick wrote: > Our app seems to be disappearing fro

RE: [android-developers] Bizarre OpenGL performance on Samsung Galaxy.

2011-08-17 Thread Dan Raaka
Can you tell me the fingerprint of the device you are seeing this behavior ? $ adb shell getprop | grep fingerprint -Dan -Original Message- From: android-developers@googlegroups.com [mailto:android-developers@googlegroups.com] On Behalf Of calderwa Sent: Tuesday, August 16, 2011 3:30 PM

[android-developers] What are the filesize limitation imposed by DownloadManager

2011-08-06 Thread dan raaka
The maximum value seems to be defined at ./packages/providers/DownloadProvider/src/com/android/providers/downloads/StorageManager.java /** the max amount of space allowed to be taken up by the downloads data dir */ private static final long sMaxdownloadDataDirSize = Resources.getSystem(

[android-developers] DownloadManager to sdcard fail due to missing Download directory

2011-07-25 Thread Dan Raaka
This peice of code fails mostly because the "Download" directory is missing on the mounted /sdcard. Who is responsible for creating the directories .. my app or the DownloadManager ? public void onDownloader(View view) { dm = (DownloadManager) getSystemService(DOWNLOAD_SERVICE);

Re: [android-developers] Detecting app is pre-installed after it gets updated via android market

2011-07-20 Thread dan raaka
l 19, 2011 at 8:08 PM, dan raaka wrote: > >> I have a app with versionCode=1, pre-installed on the device (ie. the app >> is placed under /system/app partition) >> Then I post an app updated, versionCode=2, on the android market and the >> user download the updates the

[android-developers] Detecting app is pre-installed after it gets updated via android market

2011-07-19 Thread dan raaka
I have a app with versionCode=1, pre-installed on the device (ie. the app is placed under /system/app partition) Then I post an app updated, versionCode=2, on the android market and the user download the updates the app. So, the updated app on the device is located @ /data/app Under this scenario

Re: [android-developers] Re: Odp: SoundPool and DualCore (Samsung Galaxy S2) : Random Crashes ingame

2011-07-17 Thread dan raaka
can you provide the build fingerprint of the device you are testing and being able to reproduce ? Also code snippet will be helpful ... -Dan On Sat, Jul 16, 2011 at 9:53 PM, Daniel wrote: > I have been getting reports of S2 crashes too... and based on this thread, > and since i use SoundPool e

Re: [android-developers] sgs i9000 + adk

2011-06-29 Thread dan raaka
Check the device if the device support. Supporting accessory mode is optional and not all device with 2.3.4 will support it. $ adb shell pm list features | grep accessory -Dan On Sun, Jun 26, 2011 at 8:04 PM, bash wrote: > Hello android developers, > I was wondering if anybody has been able to

Re: [android-developers] Accelerometer Senor

2011-06-29 Thread dan raaka
can you post the following from your device $ adb shell getprop | grep fingerprint -Dan On Mon, Jun 27, 2011 at 11:44 PM, Sati wrote: > Hi, > I am trying to read accelerometer sensor values on Samsung Galaxy Fit > mobile. > > With reference to the android documentation, sensor has to output >

Re: [android-developers] App crashes on Samsung devices shortly after startup.

2011-06-29 Thread dan raaka
can you post the snippet of code ? Also try this on your device .. $ adb shell getprop | grep heap to known the limitation on the device. you can probably simulate these values on the emulator and check the behavior without the device. -Dan On Wed, Jun 29, 2011 at 2:29 AM, Raghav Sood wrote:

Re: [android-developers] Re: Anyone developing on the Galaxy Tab and a Mac?

2011-06-11 Thread dan raaka
adb should be working all fine for development purposes on google i/o device. Also, 3.1 was OTA'ed to these devices starting yesterday : check this.. "SamsungJohn John Imah Google I/O 3.1 Update is available, see details in link! http://ow.ly/5eoTu"; -D

Re: [android-developers] Setting Ringtones

2011-06-11 Thread dan raaka
which device... this will help to find it .. $ adb shell getprop | grep -i fingerprint -Dan On Thu, Jun 9, 2011 at 12:24 PM, MCON Dev wrote: > ContentValues values = new ContentValues(); >values.put(MediaStore.MediaColumns.DATA, resourcePath); >values.put(MediaS

Re: [android-developers] Re: BackupAgent

2011-06-11 Thread dan raaka
see what you find here... $ adb shell dumpsys backup -Dan On Fri, Jun 10, 2011 at 5:07 AM, b_t wrote: > Thank you for your response. > > All of these options are enabled in my phone but backup still doesn't > work. > > Maybe the problem is about my ROM, I don't know > > On Jun 10, 1:14 pm, Kos

Re: [android-developers] Will Android ever natively support Arabic language?

2011-06-11 Thread dan raaka
@Mark Murphy NexusS is pure vanilla AOSP software. So, it should reflect whatever you find in a emulator (SDK image). So, it was not a Samsung decision. There are some discussions on the contrib email list of the RTL support in general ... -Dan On Fri, Jun 10, 2011 at 6:34 AM, Mark Murphy wrote:

Re: [android-developers] Bluetooth is driving me nuts -- Galaxy tab lockups and pairing stupidity

2011-05-26 Thread dan raaka
can you post some logs & $ adb shell getprop | grep -i finger info -Dan On Thu, May 26, 2011 at 6:58 PM, keyeslabs wrote: > I'm trying to use bluetooth SPP to establish a socket connection > between two Android devices. There are a few things that are really > driving me crazy in this ef

Re: [android-developers] Re: All Renderscript samples fail to run on actual device (Samsung Galaxy Tab 10.1 'google io edition')

2011-05-26 Thread dan raaka
thanks .. xav -Dan On Thu, May 26, 2011 at 6:37 PM, Zsolt Vasvari wrote: > I have to say, Xavier, Romain and Dianne are awesome. How come some > of this awesomeness cannot rub off on the Android Market team? > > On May 27, 8:42 am, Streets Of Boston wrote: > > Awesome! > > Thank you. > > --

Re: [android-developers] Re: All Renderscript samples fail to run on actual device (Samsung Galaxy Tab 10.1 'google io edition')

2011-05-26 Thread dan raaka
Is the failure only on Google I/O devices ? What about Moto Xoom - does it fail on 3.0.1 and 3.1 ? -Dan On Thu, May 26, 2011 at 8:11 AM, Streets Of Boston wrote: > I tried the following: > In the sample's onCreate() method, i created the mentioned file in the > cache-dir (0 size, readable, writ

Re: [android-developers] Rtsp Http Streaming

2011-05-26 Thread dan raaka
If this is a generic issue - please file a bug under b.android.com -Dan On Thu, May 26, 2011 at 1:55 AM, Hitendrasinh Gohil < hitendra.virtuei...@gmail.com> wrote: > hi, > > then just try to log the url that ur applying to datasource.and first check > it out with vlc player that is it working o

[android-developers] MonkeyImage.writeToFile error

2011-01-30 Thread dan raaka
I am running this as ./monkeyrunner test.py 17 # Takes a screenshot 18 result = device.takeSnapshot 19 20 # Writes the screenshot to a file 21 result.writeToFile('shot1.png','png') This throws an error as.. any thoughts ... mini@tools$./monkeyrunner test.py 110130 03:47:34.316:S [main] [com

[android-developers] access to getprop values pro-grammatically

2011-01-18 Thread Dan Raaka
I need to access a system property like ro.device.keypad (which probably can be easily seen as $ adb shell getprop | grep keypad, on the shell). I could use a hidden api, SystemProperties.get, but I don't want to. What is the API to get the getprop value/key pairs ? -Dan -- You received this me

Re: [android-developers] Re: 2.3 emulator and xhdpi support

2010-12-25 Thread dan raaka
which addon are you referring to ? AFAIK there is only one addon for GalaxyTab that was released sometime ago ... -Dan On Thu, Dec 23, 2010 at 7:01 PM, James Wang wrote: > We noticed Samsung has released one addon for Nexus S but it is only > 240 hdpi. > > There is no way to test xhdpi with em

Re: [android-developers] Re: Restricted location in publisher GUI is not working on some devices

2010-12-02 Thread dan raaka
> disappearing, paging not working, screenshots disappearing so guess > this issue is low on their list... > > On 13 Nov, 02:21, dan raaka wrote: > > market filtering goes beyond geo-restriction > > go through this onehttp:// > developer.android.com/guide/appendix/market-f

[android-developers] Right value getRefreshRate in android devices ..

2010-12-02 Thread Dan Raaka
What is the expected value for this API on android devices ? http://developer.android.com/reference/android/view/Display.html#getRefreshRate() Should it match the claimed screen display refresh rate or 60 ? -Dan -- You received this message because you are subscribed to the Google Groups "Andro

Re: [android-developers] Re: Product images for marketing materials

2010-11-14 Thread dan raaka
M, Phil Endecott > > > > > > > > wrote: > > > On Nov 13, 1:24 am, dan raaka wrote: > > >>http://www.samsung.com/us/support/contact > > > > > Thanks Dan. Actually I had spent quite a long time on the phone > > > trying to

Re: [android-developers] Re: Product images for marketing materials

2010-11-12 Thread dan raaka
http://www.samsung.com/us/support/contact -Dan On Wed, Nov 10, 2010 at 12:43 PM, Kostya Vasilyev wrote: > Phil, > > If you want to get a response from Samsung, you might have better chance > contacting the team that specifically maintains their web site, especially > since you probably download

Re: [android-developers] Restricted location in publisher GUI is not working on some devices

2010-11-12 Thread dan raaka
market filtering goes beyond geo-restriction go through this one http://developer.android.com/guide/appendix/market-filters.html -Dan On Wed, Nov 10, 2010 at 1:20 PM, Chister Nordvik wrote: > We have an application that is restricted to one country (Norway). But > I am sitting here with multip

Re: [android-developers] multiple mime type in email

2010-11-07 Thread dan raaka
bump .. -Dan On Thu, Nov 4, 2010 at 8:24 PM, Dan Raaka wrote: > I have a email body in HTML and I need to attach an text file, xml > file and an image to the email. I am starting with xml > > In my app with package name com.danraaka.apper > > String filePath = "/data/

[android-developers] multiple mime type in email

2010-11-04 Thread Dan Raaka
I have a email body in HTML and I need to attach an text file, xml file and an image to the email. I am starting with xml In my app with package name com.danraaka.apper String filePath = "/data/data/com.danraaka.apper/Results.xml"; Intent emailIntent = new Intent(

Re: [android-developers] Re: Life after G1

2010-10-24 Thread dan raaka
You *can* do app development with captivate. -Dan On Sun, Oct 24, 2010 at 9:16 AM, Dianne Hackborn wrote: > On Sun, Oct 24, 2010 at 9:05 AM, mikek wrote: > >> It appears that the captivate is quite a good phone but it's not >> obvious that an app can be installed and debugged through the USB >

Re: [android-developers] samsung galaxy tab - fullscreen problem

2010-10-13 Thread dan raaka
and this one too http://innovator.samsungmobile.com/galaxyTab.do -Dan On Wed, Oct 13, 2010 at 10:35 AM, Kumar Bibek wrote: > Go thru this > > http://developer.android.com/guide/practices/screens_support.html > > > On Mon, Oct 11, 2010 at 5:12 PM, smidik wrote: > >> Hello, >> >> i am running a

Re: [android-developers] Upgrading OS to 2.2

2010-10-13 Thread dan raaka
you would want to wait till JI6 which would happen as a over the air .. http://androidspin.com/2010/10/07/samsung-states-t-mobile-vibrant-ji6-ota-update-is-rolling-out/ -Dan On Wed, Oct 13, 2010 at 8:50 AM, olegkon wrote: > Hi, > > I just got Samsung Vibrant (Galaxy S) from T-mobile, > it cam

Re: [android-developers] Re: Is Samsung Galaxy Tab NOT a large screen from application developer's point of view?

2010-10-12 Thread dan raaka
& > > > Configuration.SCREENLAYOUT_SIZE_LARGE) == > > > Configuration.SCREENLAYOUT_SIZE_LARGE returns false on my Samsung > > > Galaxy Tab. > > > > > Dan, have you tested your comment on an actual Galaxy Tab? > > > > > Regards, > > >

[android-developers] bugreport tutorial

2010-10-08 Thread Dan Raaka
Is there any documentation around how to interpret adb bugreport -Dan -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to an

Re: [android-developers] Live wallpaper not showing up on Samsung Captivate 2.1 update 1 while shows up fine on Droid1 Froyo

2010-10-07 Thread dan raaka
Do you specify the the uses-feature string "android.software.live_wallpaper" on you manifest ? -Dan On Wed, Oct 6, 2010 at 7:41 AM, Jai wrote: > I have a live wallpaper published in the market called "Painter ants > live", it shows up fine on my Droid1 froyo but not on Samsung > Captivate 2.1

Re: [android-developers] Is Samsung Galaxy Tab NOT a large screen from application developer's point of view?

2010-10-05 Thread dan raaka
rom the layout-large. I dont >> have a tab to test it out. May be if anyone else can confirm this? >> >> >> On Wed, Oct 6, 2010 at 12:59 AM, dan raaka wrote: >> >>> GalaxyTab is a LARGE/HDPI device. >>> >>> Having android:largeScreens

Re: [android-developers] a good way to do screen cast on android

2010-10-05 Thread dan raaka
galaxyS does screen replication on the video output http://www.samsung.com/us/mobile/cell-phones-accessories/ECC1TX1BBEGSTA -Dan On Mon, Oct 4, 2010 at 10:15 AM, Mark Murphy wrote: > On Mon, Oct 4, 2010 at 1:11 PM, dadada wrote: > > is there a good way to do screen cast on android? > > If you

Re: [android-developers] Is Samsung Galaxy Tab NOT a large screen from application developer's point of view?

2010-10-05 Thread dan raaka
GalaxyTab is a LARGE/HDPI device. Having android:largeScreens="true" in your manifest just makes sure that the android market doesn't filter your app out of LARGE devices. Similar arguments holds true for android:anyDensity="true" -Dan On Tue, Oct 5, 2010 at 11:44 AM, Argon Konay wrote: > Hi,

Re: [android-developers] Re: MediaPlayer cant play audio files from program data folder ?

2010-09-26 Thread dan raaka
post code snippet -Dan 2010/9/23 dmtrl...@gmail.com > Thank you for reply, but i think its not correct behavior for > platform. My data in my folder not playing from my program > > On 23 сен, 06:49, dan raaka wrote: > > That is due to filepermissions. > > I doub

Re: [android-developers] getFlashMode method

2010-09-26 Thread dan raaka
Have you thought about adding the following into your AndroidManifest.xml -Dan On Thu, Sep 23, 2010 at 11:54 AM, runt wrote: > Ok, > > I am trying to write an app that will only run if the phone has a > camera flash (i.e. not on my HTC Hero but on a HTC EVO 4G or Samsung > Epic 4G, etc...).

Re: [android-developers] Re: Problem with AudioRecord on Samsung Moment

2010-09-26 Thread dan raaka
you should first check if the particular combination is supported or NOT. Raun "AudioCaps" on this device build and see if the issue causing samplerate/encoding combination is supported or NOT. -Dan On Sun, Sep 26, 2010 at 2:29 AM, Omer Gilad wrote: > Samsung devices (all of them) have many b

Re: [android-developers] Re: Android devices supporting OpenGL ES 2.0 (at least through NDK) as of September 2010

2010-09-22 Thread dan raaka
are you looking to target devices which supports openGL 2.0 or just want to know the extensions supported ? -Dan On Tue, Sep 21, 2010 at 2:21 PM, RS wrote: > That sums it Robert. Thanks a lot. > So on Snapdragon / PowerVR SGX 5xx, OpenGL ES 2.0 should work at least > through NDK (assuming SDK

Re: [android-developers] MediaPlayer cant play audio files from program data folder ?

2010-09-22 Thread dan raaka
That is due to filepermissions. I doubt this issue is specific to T959, that should be behavior on all android devices. -Dan On Wed, Sep 22, 2010 at 10:11 AM, dmtrl...@gmail.com wrote: > Hi all! > > When i record my audio from MIC and store file in /data/data/. why > MediaPlayer can't play

Re: [android-developers] Creating a Galaxy Tab AVD without waiting for Samsung's release?

2010-09-17 Thread dan raaka
in case of tab, it is really straight forward set ro.sf.lcd_density=240 -Dan On Tue, Sep 14, 2010 at 7:44 PM, grge wrote: > This question is also for future devices, how do I create AVDs that > report "fake" information, I can't make one that is 1024x600, > 170density but reports as HDPI from

Re: [android-developers] Re: Samsung Galaxy S and Bluetooth Issues

2010-09-12 Thread dan raaka
let me know the build fingerprint of your device -Dan On Fri, Sep 10, 2010 at 4:21 AM, snedex wrote: > Hi Don, > > Thanks for responding, Sorry about the slow response. > OK at least that gives me more information on trying to circumvent > this issue, still having no joy with it. > Have you ha

Re: [android-developers] AudioRecord weirdness on Samsung Moment (SPH-M900)

2010-09-08 Thread dan raaka
-Dhw:0,0 or > -Dhw:0,1 depends on ur sound card. its the capturing device. If this works > fine...then something has gone wrong in android when passing audio > parameters to kernel. > > Regards, > -D Krishna Mohan > > On Tue, Sep 7, 2010 at 2:29 AM, dan raaka wrote: >

Re: [android-developers] runs on emulator crashs on galaxy s

2010-09-08 Thread dan raaka
what app is this ? -Dan On Wed, Sep 8, 2010 at 8:33 AM, Sebastián Treu wrote: > On Wed, Sep 8, 2010 at 12:22 PM, momojo wrote: > > I have an app the runs fine on my emulator and my incredible with > > android 2.2. Users say my app won't run on the galaxy s. What options > > exist to troublesho

Re: [android-developers] 1024x600 emulator: no access to 'menu' or other buttons

2010-09-06 Thread dan raaka
you can always scale the emulator so you can reduce the size on the screen (Check -scale or -dpi options) -Dan On Fri, Sep 3, 2010 at 9:12 PM, Xavier Ducrohet wrote: > what Matthew said. > > for reference you can get the list by doing "emulator -help-keys" > > On Thu, Sep 2, 2010 at 1:04 PM, M

Re: [android-developers] AudioRecord weirdness on Samsung Moment (SPH-M900)

2010-09-06 Thread dan raaka
what is the build fingerprint on your device ? $ adb shell getprop | grep finger -Dan On Wed, Sep 1, 2010 at 12:44 PM, Steve Hugg wrote: > Our app has a problem with AudioRecord where the recorded audio is > very slw (sound like it's 2x slower). We use > AudioRecord.getMinBufferSize to try

Re: [android-developers] Re: Developing Android app for tablet

2010-09-06 Thread dan raaka
If you app depends on a specific feature - make sure you define it properly with the uses-feture string in your AndroidManifest.xml or atleast do some graceful degradation of features at runtime by checking getSystemAvailableFeatures() Also, when creating a P1 AVD note that the lcd density must be

[android-developers] Re: Galaxy Tablet and Android Market

2010-09-03 Thread Dan Raaka
yes, physically if you calculate the height/width by pixels .. but the device uses hdpi resources for apps - so it is setting the lcd_density as 240 .. -Dan On Sep 3, 1:42 pm, Mark Murphy wrote: > On Fri, Sep 3, 2010 at 4:39 PM, Dan Raaka wrote: > > [ro.sf.lcd_dens

[android-developers] Re: How to detect device support multi touch without OnTouchListener's event?

2010-09-03 Thread Dan Raaka
If your app requires multitouch and you dont want your app to show up on non-multitouch devices .. define the following in your android manifest .. android.hardware.touchscreen.multitouch android.hardware.touchscreen.multitouch.distinct -Dan On Sep 3, 2:14 am, eric wrote: > I want to get inform

[android-developers] Re: Galaxy Tablet and Android Market

2010-09-03 Thread Dan Raaka
[ro.sf.lcd_density]:[240] DeviceMetrics.xdpi = 168 DeviceMetrics.ydpi = 168 So, GalaxySTab is a *large* screen, *hdpi* device. For difference, NexusOne is a *med* screen, *hdpi* device. You can mimic the behavior of density using the emulator, however the dpi changes requires you to rebuild the e

Re: [android-developers] How to send an specific key event to FG app using adb?

2010-08-14 Thread dan raaka
http://developer.android.com/guide/topics/testing/testing_android.html "With instrumentation, you can set up mock system objects such as Contexts before the main application starts, control your application at various points of its lifecycle, send UI events to the application, and examine the appl

Re: [android-developers] about handle the home key

2010-08-11 Thread dan raaka
can you post $ adb shell getprop | grep finger on the device you are trying .. -Dan On Sat, Aug 7, 2010 at 9:47 PM, 实 wrote: > I'm working on a slide-unlock program and I want it take the place of > Android KeyguardLock. > > there is one last thing todo.it's the home key. > > I google it and f

Re: [android-developers] Samsung Captivate sdcard issues.

2010-08-04 Thread dan raaka
The device does come with MyFiles app for users to transfer between /sdcard/sd and /sdcard in case the user needs to move the contents around. -Dan On Wed, Aug 4, 2010 at 10:02 AM, Mark Murphy wrote: > On Wed, Aug 4, 2010 at 12:11 PM, Jeremiah Sellars > wrote: > > Are there any talks of how th

Re: [android-developers] Problem with reading contacts on Samsung Galaxy Europa

2010-08-04 Thread dan raaka
Is this happening only on Europa ? -Dan On Wed, Aug 4, 2010 at 12:26 PM, Alok Kulkarni wrote: > Hi , i am using > startActivityForResult(intent,PICK_CONTACT); > Its working on Android 1.5 to 2.1 except for the 2.1 device Samsung > Europa..On that device , i am not able to read the contacts, it

Re: [android-developers] Camera preview - strange on Samsung Galaxy S (2.1update1)

2010-07-09 Thread dan raaka
what verison does your device have ? use below .. $adb shell getprop | grep fingerprint -Dan On Fri, Jul 9, 2010 at 9:39 AM, Mathias Lin wrote: > In my activity I show the camera preview on a surfaceView. It works > perfectly fine on Nexus One (2.1update1, 2.2) and HTC Desire (2.1update1), > bu

Re: [android-developers] Samsung Galaxy Spica (I5700) Bluetooth SPP with Android 2.1

2010-07-08 Thread dan raaka
What version are you using .. Try this on your device .. $ adb shell getprop | grep fingerprint Did you try upgrading the Spica using Samsung Kies ? -Dan 2010/7/7 Rafał Grzybowski > Any well known issues with this? I cannot create SPP connection on > that phone, many other phones work great on

Re: [android-developers] Re: what hardware platform do you use?

2010-07-08 Thread dan raaka
Not just ATT all major carriers in US are getting the GalaxyS counterparts .. http://innovator.samsungmobile.com/bbs/stars.ThreadBoard.do?starMbrId=SteveHa&viewType=rss&messageId=87666 -Dan On Thu, Jul 8, 2010 at 5:03 AM, Al Sutton wrote: > It's highly unlikely the G1 will ever see an official

[android-developers] Re: how to use adb tool on SAMSUNG GALAXY?

2010-06-15 Thread Dan Raaka
Install the USB drivers that come with the device .. -Dan On Jun 15, 2:03 am, Vinay S wrote: > Check for the driver.. > > I had the same problem withGalaxy. > > I found in one of the forums the link for custom driver and installed > it.. > > That worked for me.. > > -Vinay > > On Jun 11, 2:16 am

Re: [android-developers] Re: samsung app store

2010-05-23 Thread dan raaka
Galaxy S (GT-I9000) http://www.gadgetvenue.com/samsung-galaxy-i9000-android-21-smartphone-announced-03241453/ -Dan On Sun, May 23, 2010 at 4:39 PM, schwiz wrote: > samsung had a really sick looking phone at IO I wanted it really > bad :P > > On May 19, 9:24 pm, Nathan wrote: > > SamsungApps.c

Re: [android-developers] Re: how to connect android phone to pc using adb

2010-05-23 Thread dan raaka
this might help http://bradchow.wordpress.com/2009/02/16/adb-on-windows-and-ubuntu-linux/ -Dan On Tue, Apr 27, 2010 at 8:06 AM, applesquash wrote: > Did you install the SDK USB driver? > > > On Apr 26, 9:38 pm, karteek wrote: > > @Rogerio > > My OS is ubuntu.And I already used these commands.

Re: [android-developers] Hello My name is Youngrok Song from ZDNet Korea

2010-05-22 Thread dan raaka
you might have better luck here - www.kandroid.org -Dan On Thu, May 13, 2010 at 10:05 PM, sabbit wrote: > Hello My name is Youngrok Song from ZDNet Korea Planning dept. > > We have 3 times conferences for a year for Android developers. We > completed a huge conference 4times like the advanced

Re: [android-developers] Re: Is Google working on the Bluetooth bug? Any estimated date of completion?

2010-05-22 Thread dan raaka
; My device is a i5700 Samsung spica. The stackoverflow links and > the > > > > > > logcats i pasted to pastebin.com (again, see my last post above) > all > > > > > > relate to the issue on the spica. Do you have a similar issue > with a > > > > >

Re: [android-developers] Re: samsung app store

2010-05-22 Thread dan raaka
There are already several including few from 3rd parties, carriers and OEMs SlideME Shopapps from Motorola Vodaphone to launch its own app store ( http://www.intomobile.com/2010/04/13/vodafone-to-launch-its-own-android-app-store.html ) AndAppStore (http://andappstore.com) Playnow by Sony Ericsson

Re: [android-developers] Re: Is Google working on the Bluetooth bug? Any estimated date of completion?

2010-05-01 Thread dan raaka
a. Do you have a similar issue with a > spica? > > On 1 Mai, 00:13, dan raaka wrote: > > is the device being referred here Spica (i5700)? > > > > -Dan > > > > > > > > On Fri, Apr 30, 2010 at 12:10 PM, DonFrench wrote: > > > I am not

Re: [android-developers] Re: Is Google working on the Bluetooth bug? Any estimated date of completion?

2010-04-30 Thread dan raaka
is the device being referred here Spica (i5700)? -Dan On Fri, Apr 30, 2010 at 12:10 PM, DonFrench wrote: > I am not sure if it is the same issue but it sounds related. My app > was eventually able to connect to the device I was having trouble with > but only after I manually unpaired it. I n

[android-developers] md5sum on the file

2010-04-03 Thread Dan Raaka
Is there way to generate md5 checksum (like md5sum on linux) of a file in android ? the closest I found was this http://www.androidsnippets.org/snippets/52/ -Dan -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send e

Re: [android-developers] Re: user agent of the device ..

2010-04-03 Thread dan raaka
yes that is correct, the restriction is mainly on the browser UA string to have any structure and that is the one that needs some validation for change. -Dan On Sat, Apr 3, 2010 at 2:36 PM, Mark Murphy wrote: > dan raaka wrote: > > This is not for driving any logic - but for an app

Re: [android-developers] Re: user agent of the device ..

2010-04-03 Thread dan raaka
ings in a way that > it doesn't matter of the UA string is modified. > > If it's just for information purposes -- it's a lot easier to display > this information from a simple web application. There are a number of > them out there that do this for diagnostic purposes, or i

Re: [android-developers] Re: user agent of the device ..

2010-02-21 Thread dan raaka
want to use a WebView. > > What would you do with this information in an app? > > I guess you could run a little web server in your app, direct the > browser to it, pick up the UA string, and redirect to somewhere else. > Bleh. A whole lot of hackery for something that hardly eve

[android-developers] user agent of the device ..

2010-02-19 Thread Dan Raaka
is there a way to get the User Agent of the Browser on the android device pro grammatically from within an app ? -Dan -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com

[android-developers] spreadsheets.google.com using raw http/xml

2010-02-18 Thread dan raaka
It looks like my example refuses to work with spreadsheets.google.com list worksheet feed. Here is the code snippet authenticate() succeeds and I get the proper auth token. However getWorksheetContents() fails with 404 Not found error. I have double check the URL (worksheetsheetURL) using curl (i

Re: [android-developers] Need Samsung Moment user to help troubleshoot problems

2010-02-16 Thread dan raaka
what game is this ? can you give the class name of your app for me to search -Dan On Sat, Feb 13, 2010 at 6:28 PM, ernestw wrote: > Hi all - I'm currently getting some problem comments from people > claiming that my game FRG crashes on the Samsung Moment immediately > when a bullet hits an ene

Re: [android-developers] Incoming SMS

2010-01-25 Thread dan raaka
You cannot un-install/remove the apps which are preinstalled. If you just restart the device - you start see the default SMS app. Assuming you re-imaged - you should still be able to see and download the 3rd party app. -Dan On Mon, Jan 25, 2010 at 5:32 AM, Mohan wrote: > Hi friends, > > I am a

Re: [android-developers] AudioRecord on Samsung Moment

2010-01-20 Thread dan raaka
What build does this device have? There is new update for this device. Did you try on this build ? http://community.sprint.com/baw/thread/26322?featured=true -Dan On Mon, Jan 18, 2010 at 12:02 PM, Rico wrote: > When switching between the emulator (which supports 8KHz) and a real > phone like

[android-developers] creating random sizes of the emulator screen

2010-01-17 Thread dan raaka
Does anyone face similar issues as I do with the latest 2.1 SDK I am trying to create emulator screen sizes which are non-standard but the emulator fails to show up .. I can still see the "emulator" process running .. The size i was trying out are .. XGA 1024 x768, SXGA 1280x1024,and few others .

Re: [android-developers] Re: Where to get a Samsung Moment for development

2010-01-17 Thread dan raaka
tough luck !! -Dan On Sat, Jan 16, 2010 at 8:53 AM, Don wrote: > Hi Dan, > I'm actually based in the UK! > But Cheers anyway! > Don > > On Jan 8, 8:47 am, dan raaka wrote: > > if you are local to mountain view let me know. I can help > > > > -Dan &g

[android-developers] Market behavior questions ..

2010-01-15 Thread dan raaka
As the subject says .. #1 I can see the update available icon on the notification bar - what is the time interval used by the market/vending app to check if there is any update availability ? #2 If I buy an app and then reset the device - Will market allow me to install the app which I paid for a

Re: [android-developers] screen capture

2010-01-13 Thread dan raaka
!! stop cross posting !! and yes, there was a way to grab /dev/fb0 in android 1.0 and since then it been removed due to security concerns by Google. The READ_FRAME_BUFFER permissions are the remnants of that 1.0 feature -Dan On Tue, Jan 12, 2010 at 4:54 AM, yog wrote: > Hi all, > > 1) Is the

Re: [android-developers] Re: About Android SDK 2.1 Gallery.

2010-01-13 Thread dan raaka
3D in emulator is little flacky - the openGL 2.0 is expected to be in native support only (no java bindings), directly calling the functions in the 3D chipset vendor in the hardware. Assuming - we do get the gallery or newer homescreen - how useful it will be ? On the contrary - it will be helpfu

Re: [android-developers] adb devices not seeing my phone

2010-01-10 Thread dan raaka
Most likely, you have not enabled your adb on this device try this ... remove the usb connection kill the adb start adb again connect the behold2 check the usb connection using lsusb -v now try adb devices verify if adb is enabled #1 settings -> phone settings -> USB settings (make sure you selec

Re: [android-developers] Re: Where to get a Samsung Moment for development

2010-01-08 Thread dan raaka
if you are local to mountain view let me know. I can help -Dan On Thu, Jan 7, 2010 at 4:53 AM, Don wrote: > Hello, > I'm now having the exact same problem, a customer is reporting an > issue with my application on their Samsung Moment, but I can't debug > the issue as I don't have the device!

Re: [android-developers] Re: Android drivers programming

2009-12-31 Thread dan raaka
its been in existence for a long time now :) -Dan On Thu, Dec 31, 2009 at 1:45 PM, Mark Murphy wrote: > Lance Nanek wrote: > > http://pdk.android.com/online-pdk/guide/index.html > > Odd question: where did you find this? I can't find anything that links > to it. It seems rather useful! > > Than

Re: [android-developers] Re: Merge gives odd z order hiding between custom views

2009-12-13 Thread dan raaka
could be related to http://code.google.com/p/android/issues/detail?id=2828 -Dan On Sat, Dec 12, 2009 at 10:54 PM, Ethan Rublee wrote: > Thanks, I realized this has been discussed at length else where. > > My solution has been to fully stop the activity on pause. It seemed > that > after a paus

Re: [android-developers] Re: SensorManager.registerListener gives unexpected results

2009-12-13 Thread dan raaka
the IK series have the fix. -Dan On Thu, Dec 10, 2009 at 12:28 AM, TonyDoc wrote: > I'm running firmware 1.5, > baseband I7500XXII5, > kernel 2.6.27.35, > build no 76XXCSDCBALUM6375 > > On Dec 10, 4:51 am, dan raaka wrote: > > what is the full version name ? &g

Re: [android-developers] Re: SensorManager.registerListener gives unexpected results

2009-12-09 Thread dan raaka
test I think). Do you know which > > firmware gives correct sensor updates? > > > > On Dec 8, 6:31 pm, dan raaka wrote: > > > > > If you use NPS studio - it allows you to update your device software > tonewer > > > builds. > > > -Dan > &g

Re: [android-developers] Re: DatePicker: years before 2000

2009-12-08 Thread dan raaka
DatePicker demo? > > Regards > Thomas > > On 7 Dez., 21:16, dan raaka wrote: > > The user can still manually edit the box change the value. > > -Dan > > > > > > > > On Mon, Dec 7, 2009 at 12:03 PM, Thomas > wrote: > > > Hello. >

Re: [android-developers] Re: SensorManager.registerListener gives unexpected results

2009-12-08 Thread dan raaka
If you use NPS studio - it allows you to update your device software tonewer builds. -Dan On Tue, Dec 8, 2009 at 3:24 AM, TonyDoc wrote: > What do you mean? Newer builds? Do you mean 1,6, 2.0? I'm using 1.5 > SDK to try this... > > On Dec 7, 5:45 pm, dan raaka wrote: > >

Re: [android-developers] Samsung devices and 3D performance

2009-12-07 Thread dan raaka
can you check DroidBench and NeoCore as well? -Dan On Mon, Dec 7, 2009 at 9:34 AM, dan raaka wrote: > Do you have a apk for testing .. which shows difference in performance ? > -Dan > > > > On Thu, Dec 3, 2009 at 9:16 PM, SoftwareForMe.com > wrote: > >> Greeting

Re: [android-developers] Re: DatePicker: years before 2000

2009-12-07 Thread dan raaka
; I have not read of any limitations in the DatePicker / > DatePickerDialog docs from Google. Why would anyone alter the > behaviour of a gui component? > > Can anybody shed some light on this? Perhaps some kind folks from > Google, please?? > > Regards > Thomas > >

Re: [android-developers] SensorManager.registerListener gives unexpected results

2009-12-07 Thread dan raaka
The newer versions of the build dont exhibit this problem .. -Dan On Mon, Nov 30, 2009 at 6:30 AM, TonyDoc wrote: > I'm registering a sensor listener with this line of code. > > mSensorManager.registerListener(this,mSensorManager.getDefaultSensor > (Sensor.TYPE_ACCELEROMETER), SensorManager.SEN

Re: [android-developers] DatePicker: years before 2000

2009-12-07 Thread dan raaka
yes that is correct. -Dan On Sun, Dec 6, 2009 at 1:05 AM, Thomas wrote: > My app (TKBirthdayreminder) is heavily relying on DatePicker and > DatePickerDialog. A few users have reported problems while entering > the birthday date, specifically years prior to 2000. I was told by one > user that o

Re: [android-developers] Samsung devices and 3D performance

2009-12-07 Thread dan raaka
Do you have a apk for testing .. which shows difference in performance ? -Dan On Thu, Dec 3, 2009 at 9:16 PM, SoftwareForMe.com wrote: > Greetings, > > We acquired a Samsung Moment today, and find that it's 3D performance is > very poor compared to the HTC and Motorola devices. I've tried all th

[android-developers] Re: what is wrong with eclair SDK mapsview ..

2009-12-04 Thread Dan Raaka
got it .. had inadvertently added maps.jar via external jars to eclipse. On Dec 4, 10:29 pm, Dan Raaka wrote: > I have mapstest app .. > > ---AndroidManifest.xml > > http://schemas.android.com/apk/res/android"; >       package="com.dan.maptest&quo

[android-developers] what is wrong with eclair SDK mapsview ..

2009-12-04 Thread Dan Raaka
I have mapstest app .. ---AndroidManifest.xml http://schemas.android.com/apk/res/android"; package="com.dan.maptest" android:versionCode="1" android:versionName="1.0">

  1   2   3   >