[android-developers] Re: SMSManager sendDataMessage messages going to Mms not my app ...

2010-10-28 Thread moneytoo
Try setting higher intent filter priority. On Oct 25, 11:14 pm, tedx txt...@gmail.com wrote: I'm running the Android 2.2 emulator and trying to send sms data messages to a specific port which I have a broadcast receiver on but the messages end up in the default messaging app inbox. I think the

[android-developers] Re: Do any Andriod 2.+ phones record phone calls?

2010-07-30 Thread moneytoo
Unfortunately no, still blocked/crippled. On Jul 30, 11:03 pm, justSteve am.st...@gmail.com wrote: I just like checking in every couple months to see if any movement on this fundamental functionality has occurred. Still interested in learning why this functionality is being blocked. thx --

[android-developers] Re: UUID

2010-07-28 Thread moneytoo
There's not really a difference in UUID since you have to parse the string anyway. Check the BT chat sample to get to know the BT API. One last thing - it's always good to check if your server is correctly advertising UUID - by running sdptool browse/records on linux. On Jul 29, 4:10 am,

[android-developers] Re: About the testing of Bluetooth

2010-07-10 Thread moneytoo
Currently such thing cannot be done easily. It's possible but you'd have to write your own implementation of OBEX on top of RFCOMM. On Jul 8, 11:17 am, Sam ckjboy2...@gmail.com wrote: Hi All, I have some questions about the testing of bluetooth. I have tried the bluetooth chat and it worked

[android-developers] Re: paypal mobile payment allowed?

2010-07-05 Thread moneytoo
It depends on what you want to charge the user for. From 3.3: All fees received by Developers for Products distributed via the Market must be processed by the Market’s Payment Processor. Definition ofroducts: Software, content and digital materials created for Devices in accordance with the

[android-developers] Re: Receiving MMS

2010-06-09 Thread moneytoo
MMS can't be received the same way as SMS. There's no other official way in the SDK. On Jun 9, 4:43 pm, mike hasitharand...@gmail.com wrote: hi guys, is it possible to receive MMS pro grammatically in Android. couldn't find a way to achieve this this. i have successfully on receiving sms

[android-developers] Re: Bluetooth socket to non Android device

2010-05-19 Thread moneytoo
The other device has to advertise SDP record for Android to be able to connect to it. 1) Find out what's the service UUID - run sdptool browse on linux or 2) Connect directly to specific RFCOMM channel - http://code.google.com/p/android/issues/detail?id=5427 (not official API!) On May 18, 11:06 

[android-developers] Re: I can't find my own application in the market

2010-05-16 Thread moneytoo
Turn off copy protection. On May 15, 8:37 pm, Simone simone.russ...@gmail.com wrote: I just bought an Acer Liquid today, and of course the first application I looked for in the market was my own. I couldn't find it. What gives? Thanks, Simone -- You received this message because you are

[android-developers] Re: Can't connect to SPP device

2010-03-18 Thread moneytoo
createRfcommSocketToServiceRecord() is used for creating server socket, you can only call connect() on client socket. What mode does the device use you are trying to connect to? Please be aware that these unofficial API for 1.x doesn't work in server mode. On Mar 18, 5:00 pm, Gui

[android-developers] Re: Service that injects key events.

2010-03-18 Thread moneytoo
It's possible but only within your activity, not outside. On Mar 17, 6:06 pm, Tim tdh...@gmail.com wrote: Is it possible to have a service running in the background that a) Finds the current foreground activity. b) Sends key press or touch events to it? -- You received this message because

[android-developers] Re: ServerSocket to wake up a sleeping phone

2010-03-18 Thread moneytoo
1. Try waking the device right after receiving something from socket (works for me with Bluetooth) or 2. Set wakelock for whole session. On Mar 17, 1:07 pm, Miguel Paraz mpa...@gmail.com wrote: Hi, I noticed that if the Android phone is listening on a ServerSocket on the 3G network, and is

[android-developers] Re: Problem in read() for Bluetooth

2010-03-16 Thread moneytoo
Try checking InputStream.available() before reading. On Mar 15, 12:13 pm, Praful Sanas madmax.1...@gmail.com wrote: Hey guys,                I'm having problems during the read call of the InputStream. The call gives me a IOException: Software Caused Abort exception. I'm able to get the

[android-developers] Re: Bluetooth API in 2.x problem.

2010-03-16 Thread moneytoo
You can't. Try creating and connecting to specific service instead of using discoverable mode. On Mar 15, 5:09 am, Rafal Z rzaj...@gmail.com wrote: I have written a small app that puts my bluetooth in discoverable mode for a long time (G1 - API 1.6). I use that along with small program on

[android-developers] Re: Need Bluetooth UUID clarification

2010-03-11 Thread moneytoo
 pm, moneytoo m...@seznam.cz wrote: 0003--100­0-8000-00805F9B34FB is 128 bit UUID. 0003 is 32 bit UUID. 0003 is 16 bit UUID. To create record advertising serial service, use the SPP 16 bit UUID and add the BT part. 1101--100­0-8000-00805F9B34FB is UUID for SPP

[android-developers] Re: Bluetooth UUID

2010-03-11 Thread moneytoo
You may have some luck running sdptool browse on linux machine. On Mar 11, 10:41 am, Peter Fortuin peter.fort...@gmail.com wrote: Hello, I want to create a serial connection over Bluetooth to a device I have. But the problem is that I don't know the UUID of the service on that device. How

[android-developers] Re: Need Bluetooth UUID clarification

2010-03-10 Thread moneytoo
0003--100­0-8000-00805F9B34FB is 128 bit UUID. 0003 is 32 bit UUID. 0003 is 16 bit UUID. To create record advertising serial service, use the SPP 16 bit UUID and add the BT part. 1101--100­0-8000-00805F9B34FB is UUID for SPP on Android. On Mar 11, 4:26 am, Arun

[android-developers] Re: MotionEvent ACTION_DOWN throwing security exception for INJECT_EVENT permission

2010-01-25 Thread moneytoo
Injecting events to other applications/activities is not allowed. On Jan 25, 9:57 am, swapnil kamble swap.kam...@gmail.com wrote: Hi,    I have added this line in my androidManifest.xml uses-permission android:name=android.permission.INJECT_EVENT/ I am trying to execute following code,    

[android-developers] Re: Bluetooth UUID

2010-01-22 Thread moneytoo
Just complete it to 128 bit UUID. Like that... UUID.fromString(19088743--1000-8000-00805F9B34FB) On Jan 21, 10:49 pm, Fran franciscojose.bel...@gmail.com wrote: Hi everyone :) I've got a doubt with the uuid. The question is I've the uuid from a J2ME app  with javax.bluetooth.uuid new

[android-developers] Re: Bluetooth UUID

2010-01-22 Thread moneytoo
Ohh, I forgot convert it to hex. UUID.fromString(01234567--1000-8000-00805F9B34FB) On Jan 22, 10:40 pm, moneytoo m...@seznam.cz wrote: Just complete it to 128 bit UUID. Like that... UUID.fromString(19088743--1000-8000-00805F9B34FB) On Jan 21, 10:49 pm, Fran franciscojose.bel

[android-developers] onSignalStrengthChanged and battery life?

2010-01-18 Thread moneytoo
I have a service that runs all the time (opened connection to a BT device). I would like to add listener for signal strength but I'm worrying about the battery life. Listening for battery life events seems fine to but I'm not sure about the signal changes. From experience with other platforms I

[android-developers] Re: READ_SMS permissions not working

2010-01-15 Thread moneytoo
Use content://mms-sms instead if you must but I would recommend you to stick with the official API. On Jan 15, 3:50 pm, draf...@gmail.com draf...@gmail.com wrote: Hi all, I keep getting the following error: 01-15 12:29:28.155: ERROR/DatabaseUtils(115): java.lang.SecurityException:

[android-developers] Re: App not visible in market on HTC Hero

2010-01-12 Thread moneytoo
Do you have minSdkVersion set to 3? On Jan 12, 1:58 pm, Andreas Reuterberg andreas.reuterb...@gmail.com wrote: I have an app in the market and has been for several months but I just heard from someone that it can't be found with the HTC Hero. I'm using the G1 and it works fine for me. Does

[android-developers] Re: Take a screen shot of device?

2010-01-12 Thread moneytoo
DDMS is the only option (for devices without root access). On Jan 12, 1:54 pm, steve sbou...@gmail.com wrote: Greetings, Is there anyway to take screen shots of my device while it is unconnected from DDMS ? Thanks, Steve -- You received this message because you are subscribed to the

[android-developers] Re: Does Nexus One support the SPP Bluetooth Profile?

2010-01-12 Thread moneytoo
Nexus supports SPP (as any Android 2.x device). This page just not displays supported BT profiles. On Jan 12, 10:01 am, DonFrench dcfre...@gmail.com wrote: I read somewhere that the Nexus One supported the SPP profile but now this page seems to contradict that

[android-developers] Re: Developing mobily?

2010-01-12 Thread moneytoo
Scripting languages seem like a perfect choice here. http://google-opensource.blogspot.com/2009/06/introducing-android-scripting.html On Jan 12, 2:57 pm, Jhild jhildz...@gmail.com wrote: Does anyone have any clue if it's possible to develop on an android device or if it will happen anytime

[android-developers] Re: adp1 seeing adhoc networks

2010-01-04 Thread moneytoo
Android does not support connecting to Ad hoc networks. It's possible but it's tricky - you have to have root, modify some files and manually specify all network details cause ad hoc network will not display in the search list. On Jan 5, 4:04 am, Ron ronbruck...@comcast.net wrote: I'm trying to

[android-developers] Re: Any Tips for implementing free versions of applications?

2010-01-02 Thread moneytoo
Here's the Market stuff... http://developer.android.com/intl/zh-TW/guide/publishing/publishing.html#marketintent On Jan 2, 8:34 am, dan.x.sheph...@googlemail.com dan.x.sheph...@googlemail.com wrote: Thanks, I've just uploaded a trail version.  Because it was a puzzle game that takes a certain

[android-developers] Re: Android SDK Version info

2010-01-02 Thread moneytoo
Build.VERSION.SDK_INT Take a look here: http://developer.android.com/intl/zh-TW/reference/android/os/Build.VERSION.html On Jan 2, 12:35 pm, Raja Nagendra Kumar nagendra.r...@tejasoft.com wrote: Hi, How to get the SDK Version at run time of java program. Regards, Raja Nagendra Kumar,

[android-developers] Re: Can you put in duplicate app names on the Android Market?

2009-12-31 Thread moneytoo
I guess it's possible to duplicate the name. Just looking at the stopwatch applications... On Dec 30, 11:52 pm, Philosophistry phili...@gmail.com wrote: On the Apple App Store, you can't. You can even squat name by creating a draft application on iTunes Connect. I just submitted a blank

[android-developers] Re: APK not visible in market for HTC Tattoo Android Phone ?

2009-12-30 Thread moneytoo
Just build your app using 1.6 SDK and add the supports-screens tag. Your app will be visible on devices 1.5 and later if you use uses-sdk android:minSdkVersion=3 / and will work as long you don't use 1.6 specific API. On Dec 30, 12:23 pm, croco zeug...@gmail.com wrote: Thank you Sena for your

[android-developers] Re: Bluetooth SPP question

2009-12-29 Thread moneytoo
Are you advertising the correct SDP record using listenUsingRfcommWithServiceRecord? UUID for BT SPP is 1101--1000-8000-00805F9B34FB. Does the device act as server or client? You might try running sdptool browse on linux to find additional information about your BT device. On Dec 28, 6:15 

[android-developers] Re: Controlling the current MediaPlayer

2009-12-23 Thread moneytoo
You can broadcast intents to control the Android/HTC media player. Check MediaPlaybackService.java source. On Dec 23, 1:43 pm, Alex Corbi a.co...@gmail.com wrote: Hi google devs, This should be easy, but i haven't found anything yet I want to get a reference to the Mediaplayer running

[android-developers] Re: HTC Tattoo Market - New issues after 1.6 upgrade

2009-12-18 Thread moneytoo
In your application (AppAllarm v1.1.3) manifest file, the supports- screens tag is empty (supports-screens/supports-screens). Are you building your project using 1.6 SDK or later? On Dec 18, 3:43 pm, G ghack...@gmail.com wrote: Ok, so I have an app that WAS showing up on the HTC Tattoo's

[android-developers] Re: Anybody know the number of Android user that can buy app against those who cant?

2009-12-15 Thread moneytoo
Hard to tell the number of users but the list of countries is here: http://www.google.com/support/androidmarket/bin/answer.py?hl=enanswer=138294 On Dec 15, 7:52 am, RobGThai thisisr...@gmail.com wrote: While Android seems to be raging recently, however not all users are able to buy application

[android-developers] Re: How do I navigate to the program data with adb shell

2009-12-06 Thread moneytoo
On a real phone this will work with ROM with root access. On Dec 6, 4:49 am, sreeram sdu...@gmail.com wrote: Hi, My program creates a sqlite3 database. With the emulator I have been able to use adb shell and get to the file in /data/data/package/ databases/database to inspect data. But

[android-developers] Re: Questin about gmail intents

2009-12-02 Thread moneytoo
You can receive the intent but you can not cancel the notification. On Dec 2, 7:48 pm, vendor.net vendor@gmail.com wrote: Hi! Is it possible to get an intent when the user recieves a mail and to cancel the gmail notification? I want to filter some messages and I do not want te get

[android-developers] Re: How to access source.android.com in china mainland?

2009-11-25 Thread moneytoo
http://groups.google.com/group/android-developers/browse_thread/thread/30209e18c22036cf/ On Nov 25, 9:28 am, BoBo jiang.bo@gmail.com wrote: I need the source code of Android and the source of SDK API, but I can't access source.android.com:(. what should I do? -- You received this message

[android-developers] Re: Only Droid Support Bluetooth API?

2009-11-25 Thread moneytoo
I've used G1 with beta 2.0 (from xda-devs) for developing Bluetooth application. I have to say it works perfectly. I had no stability issues. I have few testers with Droid and the app I'm working on works fine for them too. On Nov 25, 2:40 am, AGA changxiangzh...@gmail.com wrote: Hi, As we

[android-developers] Re: how to reject a call using Android SDK

2009-11-15 Thread moneytoo
It's not possible for 3rd party app. (No accessible API/no working key injection) On Nov 15, 1:46 am, Muhammad Bilal se.bi...@gmail.com wrote: Hi, My question is really simple and to Geeks and experts in Android development, is it possible to reject a incoming call using Android SDK 1.6 or

[android-developers] Re: BroadcastReceiver for incoming Gmail?

2009-11-08 Thread moneytoo
Gmail does not broadcast any intent on incoming e-mail. In other thread there is a post of a Adnroid developer talking about currently not planning adding this feature. On Nov 7, 11:06 pm, gnugu rho...@gmail.com wrote: Hello, Does anybody know how to setup BroadcastReceiver's action and intent-

[android-developers] Re: BroadcastReceiver for incoming Gmail?

2009-11-08 Thread moneytoo
http://code.google.com/p/android/issues/detail?id=3668 On Nov 7, 11:06 pm, gnugu rho...@gmail.com wrote: Hello, Does anybody know how to setup BroadcastReceiver's action and intent- filter so it can be invoked when Gmail is received? I thing CubeWorks does it, so it's not entirely

[android-developers] Re: Does android have a numeric keypad?

2009-10-31 Thread moneytoo
android:inputType=phone On Oct 31, 3:28 pm, bennyb taw...@gmail.com wrote: Does android have a virtual numeric keypad view? kind of like the phone dialer including the . and the Done signs? I know you can make an EditText numeric, but I just want a virtual keyboard that will display one 0-9

[android-developers] Re: Can anybody share an unofficial download link of android SDK 2.0 eclair?

2009-10-28 Thread moneytoo
http://rapidshare.com/files/299037594/android-sdk-windows.part1.rar.html http://rapidshare.com/files/299045802/android-sdk-windows.part2.rar.html On Oct 28, 1:12 am, Hugh bo...@gmail.com wrote: As some of you may know, URL developers.android.com has been blocked in China, thus I am unable

[android-developers] Re: Can anybody share an unofficial download link of android SDK 2.0 eclair?

2009-10-28 Thread moneytoo
All available SDKs and tools downloaded using the download tool. Hope it helps. http://rapidshare.com/files/299037594/android-sdk-windows.part1.rar.html http://rapidshare.com/files/299045802/android-sdk-windows.part2.rar.html On Oct 28, 1:12 am, Hugh bo...@gmail.com wrote: As some of you