[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 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 > emulator mu

[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 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 -- You receive

[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, perumal31

[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 wrote: > Hi All, > > I have some questions about the testing of bluetooth. > > I have tried the bluetooth chat and it worked pretty well on

[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 Andr

[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 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 messages in android

[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 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 subscribed to th

[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 wrote: > Hi, > I noticed that if the Android phone is listening on a ServerSocket on > the 3G network, and is then put to sleep

[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 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 you are subsc

[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 wrote: > Hi,

[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 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 > windows to lock/unl

[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 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 BluetoothSocket and

[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 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 > can I found out wha

[android-developers] Re: Need Bluetooth UUID clarification

2010-03-11 Thread moneytoo
 pm, Arun wrote: > You're right on the money! :-) > Thank you! 0003--100­0-8000-00805F9B34FB did not work. I could > connect to BT headset on 1101--100­0-8000-00805F9B34FB! > Where can I find more information on these well known UUIDs like HFP, > OBEX, etc? >

[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 wrote: > I am

[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 wrote: > Hi, >    I have added this line in my androidManifest.xml > > > > I am trying to execute following code, > >                         long downTime = SystemClock.uptimeMillis(); >        

[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 wrote: > Just complete it to 128 bit UUID. Like that... > > UUID.fromString("19088743--1000-8000-00805F9B34FB") > > On Jan 21, 10:49 pm,

[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 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 UUID(19088743L); and I'd lik

[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 gue

[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" wrote: > Hi all, > > I keep getting the following error: > > 01-15 12:29:28.155: ERROR/DatabaseUtils(115): > java.lang.SecurityException: Permission Denial:

[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 wrote: > Does anyone have any clue if it's possible to develop on an android > device or if it will happen anytime soon? -- You received

[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 wrote: > I read somewhere that the Nexus One supported the SPP profile but now > this page seems to contradict that > :http://www.google.com/support/android/bin/stati

[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 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 Google Groups "A

[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 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 anyone know why it might not

[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 wrote: > I'm trying to set up my adp1 to see a

[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 wrote: > Hi, > > How to get the SDK Version at run time of java program. > > Regards, > Raja Nagendra Kumar, > C.T.Owww.tejasoft.com -

[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" wrote: > Thanks, I've just uploaded a trail version.  Because it was a puzzle > game that takes a certain length of time to do I just

[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 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 "Weather" app to the

[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 and will work as long you don't use 1.6 specific API. On Dec 30, 12:23 pm, croco wrote: > Thank you Sena for your hint, > > i developped my app on version 3 > > > the

[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

[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 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 currently on th

[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 (""). Are you building your project using 1.6 SDK or later? On Dec 18, 3:43 pm, G wrote: > Ok, so I have an app that WAS showing up on the HTC Tattoo's Android > Market, but users are reporting that it is no

[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=en&answer=138294 On Dec 15, 7:52 am, RobGThai wrote: > While Android seems to be raging recently, however not all users are > able to buy application through Market (Th

[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 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// > databases/ to inspect data. > > But with a real phone, I just ca

[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" 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 notifications > fr

[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 wrote: > Hi, > As we know, bluetooth-related A

[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 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 because you are sub

[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 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 higher ? > > re

[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 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 impossible. > > Any he

[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 wrote: > Hello, > Does anybody know how to setup BroadcastReceiver's action and intent- > filter so it

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

2009-10-31 Thread moneytoo
android:inputType="phone" On Oct 31, 3:28 pm, bennyb 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" butt

[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 wrote: > As some of you may know, URL develo

[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 wrote: > As some of you may know, URL developers.android.com has been blocked > in China, thus I am unable to download the ne