[android-developers] Re: Using JNI to call C lib on android platform

2009-02-04 Thread Android development
I find the folder in android source code: frameworks\base\media\jni I think thats the one you want. you can use the code as sample. For example, the code below defined all the methods of class MediaPlayer: static JNINativeMethod gMethods[] = { {"setDataSource", "(Ljava/lang/String;)V",

[android-developers] Connect G1 to Vista via Ad Hoc Wifi

2009-02-18 Thread Android Development
An Android Dev Phone G1 has attempted to be set up to access the internet by connecting to an ad hoc wireless network. The ad hoc Wifi network has been set up on a computer running Vista and can be seen from other computers and connected to successfully. However the network does not appear in the

[android-developers] Re: Connect G1 to Vista via Ad Hoc Wifi

2009-02-19 Thread Android Development
nt android, also > for G1. > > BRs > 2009/2/19 Android Development <> > > > > > An Android Dev Phone G1 has attempted to be set up to access the > > internet by connecting to an ad hoc wireless network. > > > The ad hoc Wifi network has been s

[android-developers] A Query on JAXBs portability on Android

2009-09-05 Thread Android Development
Hello, This is regarding the usage of the JAXB API on Android. There is an issue on this topic here: http://code.google.com/p/android/issues/detail?id=314 However it has been declined on the basis of an ad-hoc solution proposed by one user that does not work for the rest. Is it possible for the A

[android-developers] Re: USIM and ISIM Support

2009-09-09 Thread Android Development
USIM or ISIM applications will reside on the UICC card. For the ISIM application, and the interface it exposes, please refer to the 3GPP standards. On Fri, Aug 28, 2009 at 10:13 AM, santosh kumar wrote: > > Hi Suziki, > > Thanks for quick reply. > > Can you please tell me where can i find in Andr

[android-developers] Re: Android IMS support

2009-09-09 Thread Android Development
I have tried to contact the developers, as i wanted to contribute to this project. However, i have not heard from them yet. On Wed, Aug 26, 2009 at 12:38 AM, Roman ( T-Mobile USA) < roman.baumgaert...@t-mobile.com> wrote: > > The IMS code which you find on sourceforge is far from being > complete

[android-developers] Re: Deep sleep behaviour

2009-09-09 Thread Android Development
I also have a query regarding this. I have two questions: 1) Suppose, i want my service to go into deep sleep initially. If my phone receives an incoming VoIP call (over the underlying IP connectivity, which may be WiFi), then i wish to start an activity, and alert one of my services to handle th

[android-developers] Re: Deep sleep behaviour

2009-09-09 Thread Android Development
I got the answer to question number 2 here: http://developer.android.com/reference/android/telephony/PhoneStateListener.html <http://developer.android.com/reference/android/telephony/PhoneStateListener.html>Only question 1 remains now. On Wed, Sep 9, 2009 at 2:15 PM, Android Development

[android-developers] Re: Threads and Screen Orientation Change

2009-09-09 Thread Android Development
Hello, >From the conversation above, i understand that having a static reference to the activity can be used by background threads (that we may spawn), to send callbacks to the activity (which can then render stuff on the UI). However, It would be helpful, if someone can also provide an example of

[android-developers] Re: Threads and Screen Orientation Change

2009-09-09 Thread Android Development
oops. forgot to override handleMessage ( ) in the pseudo code above. Let us assume, that in the handleMessage ( ), we decide which processxyz to call, depending on the message received ! sorry.. On Wed, Sep 9, 2009 at 3:01 PM, Android Development wrote: > Hello, > From the conversation ab

[android-developers] Using Broadcast Receivers

2009-09-09 Thread Android Development
Hello everyone, I had one question: Is it feasible to use a BroadcastReceiver as a glue layer between the user interface and the underlying business logic ? Example use case: Suppose i am maintaining the state of a call, and providing callbacks to the UI by invoking sendBroadcast with the releva

[android-developers] Re: Deep sleep behaviour

2009-09-10 Thread Android Development
oes it incur a considerable cost on the system battery/resources due to the PARTIAL_WAKE_LOCK ? Thanks for your time.. On Wed, Sep 9, 2009 at 10:11 PM, Dianne Hackborn wrote: > On Wed, Sep 9, 2009 at 1:45 AM, Android Development > wrote: > >> 1) Suppose, i want my service to go into

[android-developers] Re: Using Broadcast Receivers

2009-09-10 Thread Android Development
IPC back to each application that is receiving it, copying all of > the data in it each time). > For stuff happening in the local process, Handler and direct callbacks are > the preferred approach. > > On Wed, Sep 9, 2009 at 5:42 AM, Mark Murphy wrote: > >> >> Android De

[android-developers] Re: Deep sleep behaviour

2009-09-10 Thread Android Development
ks for referring me the WiFiManager...i will take a look at it. ..and, thanks for taking the time to reply to my message. Its been of great help to me. On Thu, Sep 10, 2009 at 4:43 PM, Mark Murphy wrote: > > Android Development wrote: > > 2. Now, if my application is idle (there is no i

[android-developers] Re: Deep sleep behaviour

2009-09-10 Thread Android Development
On Thu, Sep 10, 2009 at 5:40 PM, Mark Murphy wrote: > > Android Development wrote: > > Only when i start receiving packets from the underlying IP Connectivity > > Network and my protocol listeners intercept the messages,then i want to > > re-start these other services

[android-developers] Re: Deep sleep behaviour

2009-09-10 Thread Android Development
ing the cleanup job. This way i can avoid the expensive Wake Lock. On Thu, Sep 10, 2009 at 6:22 PM, Mark Murphy wrote: > > Android Development wrote: > > Ok, i will tell what the application is supposed to do. It is a SIP > > client. > > And *that* explains a lot! > >

[android-developers] Re: Deep sleep behaviour

2009-09-10 Thread Android Development
Yes. it worked..first the stack threw an exception..and then this nested exception: Caused by: java.net.BindException: Cannot assign requested address: Datagram send failed On Thu, Sep 10, 2009 at 6:28 PM, Android Development wrote: > >And *that* explains a lot! > lol !! > > Than

[android-developers] Re: XML parser

2009-09-11 Thread Android Development
XML parsing is definitely a pain point in Android. I will be processing XML heavily in the future, and the current status of parsing support has me worried. There is an issue for it here regarding the resolution of a JAXB bug, that has been declined, God only knows why : http://code.google.com/p/an

[android-developers] Recommended uses of a class extending android.app.Application

2009-09-11 Thread Android Development
Hello, The docs here: http://developer.android.com/reference/android/app/Application.html say that, if the application needs to maintain global state, it should do it here. Suppose, i need to load some configurable data from a config file (to be used later at runtime by my application's various co

[android-developers] Re: Recommended uses of a class extending android.app.Application

2009-09-11 Thread Android Development
; > http://blog.tomgibara.com/post/126377651/global-application-state-in-android > > 2009/9/11 Android Development > > Hello, >> The docs here: >> http://developer.android.com/reference/android/app/Application.html say >> that, if the application needs to maint

[android-developers] Android License compatibility with LGPLd code

2009-09-11 Thread Android Development
Hello, I have a query: Is LGPL'd code compatible with Android applications ? Or are there any gotchas ! Thanks. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send

[android-developers] Re: Battery Status and Signal Strength Acheivement

2009-09-11 Thread Android Development
You can use: http://developer.android.com/reference/android/telephony/PhoneStateListener.htmlto listen to the signal strength changes, just like the Android notification bar does. On Fri, Sep 11, 2009 at 9:16 PM,

[android-developers] Re: Contact Listener

2009-09-11 Thread Android Development
try this link: http://stackoverflow.com/questions/866769/how-to-call-android-contacts-listIt might be of some help. On Fri, Sep 11, 2009 at 9:23 PM, Alex Tang wrote: > > It seems only Observers and onChange() function can work now. > > On Sep 10, 11:06 am, Stephen Leong wrote: > > Is there any

[android-developers] Re: Android License compatibility with LGPLd code

2009-09-11 Thread Android Development
gt; ·T· · ·Mobile· stick together > The views, opinions and statements in this email are those of the > author solely in their individual capacity, and do not necessarily > represent those of T-Mobile USA, Inc. > > > > On Sep 11, 8:49 am, Android Development wrote: > > Hello

[android-developers] Invitation to connect on Linkedin.

2009-09-16 Thread Android Development
Hello, An invitation to connect on linked in. Feel free. http://www.linkedin.com/in/abhatnagar19 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android

[android-developers] Using the AlarmManager as a timing service.

2010-01-19 Thread Android Development
Hello, I wanted to ask a question regarding the Alarm Manager. I have a requirements of setting long running timers in my application. The minimum duration for my timer is 1 hour...and the maximum may be for 4-5 days. This timer is supposed to run in the background, and when it fires/expires, i ha

Re: [android-developers] Using the AlarmManager as a timing service.

2010-01-19 Thread Android Development
Yes Mark. The GUI wont be running when the alarm goes off. On receipt of the alarm, i want to start an activity. So, i think i will need to use alarm manager as the choice, as i want the device to wake up when the alarm goes off. On 1/19/10, Mark Murphy wrote: >> Interesting Mark... is there no

[android-developers] Understand Device deep sleep behavior and its affect on the application.

2010-01-20 Thread Android Development
Hello, When the device goes to sleep, any activity that was in the foreground is paused. It is like someone has launched a black screen activity on top. Is this understanding correct ? I have some doubts on device sleep impact during the following scenarios: 1. If my device goes to sleep just wh

Re: [android-developers] Re: Fetch IMSI or detect SIM change?

2010-01-20 Thread Android Development
Did you get a solution to this issue? I also need the MSIN. On Mon, Nov 23, 2009 at 3:24 PM, vasanthmatrix wrote: > Hi Roman, > I'm trying to get the IMSI using > TelephonyManager.getSubscriberId(), but all I'm getting is MCC(Mobile > Country Code ),MNC(Mobile Network Code ) and not MSIN(

Re: [android-developers] Re: Creating dialogs from a thread

2010-01-22 Thread Android Development
You can also spawn an AsyncTask from the UI thread. Whenever it needs to show a dialog, this task can call publishProgress() method..that automatically runs on the UI Thread and the dialog can be shown in the onProgressUpdate method. On Fri, Jan 22, 2010 at 3:41 AM, Kevin Duffey wrote: > Ah yes

[android-developers] Regarding network connectivity on Android.

2010-01-23 Thread Android Development
Hello, Problem Statement: -- I wish to achieve the following: 1. Create a GPRS connection from my application and get the assigned IP address. 2. Send and Receive data through this connection. I can find whether GPRS is in use using TelephonyManager's getNetworkType

[android-developers] Re: Regarding network connectivity on Android.

2010-01-25 Thread Android Development
Any feedback on this friends ? On Sun, Jan 24, 2010 at 11:11 AM, Android Development wrote: > Hello, > > Problem Statement: > -- > > I wish to achieve the following: > > 1. Create a GPRS connection from my application and get the assigned IP &g

Re: [android-developers] Re: Regarding network connectivity on Android.

2010-01-26 Thread Android Development
Thanks for the replies Mark. So, this means that the PDP context establishment and APN resolution is done by android OS automatically ? I simply have to re-use it at the application. On Mon, Jan 25, 2010 at 8:45 PM, Mark Murphy wrote: > Android Development wrote: > > 1. I cannot f

[android-developers] Regarding ContactsContract

2010-01-27 Thread Android Development
Hello, I wanted to inquire about the ContactsContract API family. I have one requirement: 1. I wish to store the Presence Status of the user which i receive over a custom protocol. I wish to re-use these APIs for this purpose: http://developer.android.com/reference/android/provider/ContactsCont

[android-developers] Picking a contact and returning to the parent activity.

2010-01-28 Thread Android Development
Hello, I wish to re-use the Contacts application in a way to enable the user to pick a contact and return it to the parent activity (my application's activity). For achieving this, I want to inquire about the kind of Intent that will be needed to launch the contacts application. Intent i = new I

[android-developers] Re: Picking a contact and returning to the parent activity.

2010-01-29 Thread Android Development
I point to ? Will i need to execute a DB query to get the actual user data for the contact ? Kindly guide.. Help is appreciated. Thanks in advance Indodroid. On Fri, Jan 29, 2010 at 9:15 AM, Android Development wrote: > Hello, > > I wish to re-use the Contacts application in a way to

Re: [android-developers] Re: sdk setup.exe and windows 7

2010-01-29 Thread Android Development
Set the ANDROID_SWT environment variable to the folder that contains the swt.jar file. It is located in the \tools\lib\x86_64 folder of your SDK installation. Best Regards Indodroid. On Thu, Jan 28, 2010 at 12:01 PM, Lambda Developer < lambda.develo...@gmail.com> wrote: > hi, i have the same pr

[android-developers] Re: Picking a contact and returning to the parent activity.

2010-01-29 Thread Android Development
Regards Indodroid On Fri, Jan 29, 2010 at 4:11 PM, Android Development wrote: > Ok, i am able to start the Contacts application...and I pick a contact from > there. Now this operation succeeds too (-1 Result Code). > > I use the following code: > > Intent i = new Intent(

Re: [android-developers] Re: sdk setup.exe and windows 7

2010-01-31 Thread Android Development
Xavier Ducrohet wrote: > You really shouldn't have to do that at all. > > If you have problem with SDK Setup.exe, it would be nice to launch it > from the command line to see what the error output. > > We're improving this for the next version of the tools. > > Xav >

Re: [android-developers] Development on sip

2010-02-01 Thread Android Development
your sip uri syntax is wrong. it should be sip:andr...@ip:port (u...@host:port format). On Mon, Feb 1, 2010 at 12:15 PM, Tony wrote: > Is there anyone developing sip (libosip2) related Apps on android > platform,I have tried my best to test my sip App , but finally failed as i > didn't know h

Re: [android-developers] Re: DNS Query

2010-02-03 Thread Android Development
What if the application requires to send a query to a DNS server installed at a particular IP address. how do i configure my DNS server in *hosts/**resolv**.**conf from the application ?* *** * On Wed, Feb 3, 2010 at 8:40 PM, Lewske Wada wrote: > Hi Radhika, > > radhika wrote: > > Hi All, > > >

Re: [android-developers] Re: DNS Query

2010-02-03 Thread Android Development
Bob, making a DNS query by the application is a standardized procedure of 3GPP (3rd generation partnership project). All Mobile devices need to query a DNS server installed in the VoIP network to find the address of the server which will process their requests. This DNS server is under the control

Re: [android-developers] Re: DNS Query

2010-02-06 Thread Android Development
rthwhile; I don't know, I'm just trying to give you helpful context > and info, not technical judgments. > > Fun historical fact: In 39 days (March 15), it will be the 25th > anniversary of the very first DNS registration, Symbolics.com. (The > domain name was recentl

[android-developers] Using IPSec on Android

2010-02-09 Thread Android Development
Hello, How do I establish IPSec Security Associations on Android ? Is there a standard API for doing so ? Or will I need to issue shell commands to achieve it ? Best Regards Indodroid. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To p

[android-developers] Status bar notifications only for touch screens ?

2009-10-05 Thread Android Development
I was creating a status bar notification in my application. Once the notification was received, i had to drag the upper part of the screen to view it fully and then clicked on it. What if the phone does not have a touch screen ? How will the user bring the status bar notification's content into t

[android-developers] Re: Status bar notifications only for touch screens ?

2009-10-05 Thread Android Development
iously this is less than > > convenient. > > > > On Mon, Oct 5, 2009 at 3:08 AM, Android Development > > > wrote: > >> > >> I was creating a status bar notification in my application. Once the > >> notification was received, i had to drag th

[android-developers] Relationship between Activities & Dialogs: Recommended usage suggestions.

2009-10-05 Thread Android Development
Hello, I have a requirement for showing dialogs in my application. Alert dialogs fulfill by needs for now. I wish to discuss..and conceptually understand in the process, the exact relationship between the Activity that is being displayed at a given point of time...and the Dialog that pops up on th

[android-developers] Re: Relationship between Activities & Dialogs: Recommended usage suggestions.

2009-10-05 Thread Android Development
SaveInstanceState() is called and you later receive that state > in onCreate(). > > > On Mon, Oct 5, 2009 at 10:34 PM, Android Development > wrote: > >> Hello, >> I have a requirement for showing dialogs in my application. Alert dialogs >> fulfill by needs fo

[android-developers] Re: Status bar notifications only for touch screens ?

2009-10-05 Thread Android Development
someone builds such a device (or the > platform is updated to support them), then access to the status bar will be > dealt with in an appropriate way that applications don't need to worry > about. > > > On Mon, Oct 5, 2009 at 10:20 PM, Android Development > wrote: > >&g

[android-developers] Re: Relationship between Activities & Dialogs: Recommended usage suggestions.

2009-10-05 Thread Android Development
ttp://developer.android.com/reference/android/app/Dialog.html#setOwnerActivity(android.app.Activity)> method. I was referring to this in option # 2. I think the docs meant the explicit call to new Dialog in that section? On Tue, Oct 6, 2009 at 11:46 AM, Android Development wrote: > Thanks for the answer Dian

[android-developers] Android tracing gives me errors: Please help.

2009-10-06 Thread Android Development
Hello, I created a SD card image and mounted it to the emulator. I could see it mounted on the emulator. Then, in my onCreate method, i made a call to Debug.startMethodTracing("myTrace"); When i install the application on the emulator, i get an error as shown below Am i doing something wrong ?

[android-developers] Re: Android tracing gives me errors: Please help.

2009-10-07 Thread Android Development
Thanks for replying so quickly Romain. I am using 1.6 indeed. did the trick. Thanks. On Wed, Oct 7, 2009 at 12:12 PM, Romain Guy wrote: > > If you are using 1.6 you need to ask for the permission to write on the > sdcard. > > On Tue, Oct 6, 2009 at 11:15 PM, Android Devel

[android-developers] Re: Issue with allocation tracker: I cannot get it to work.

2009-10-07 Thread Android Development
. Thanks On Wed, Oct 7, 2009 at 9:33 PM, RichardC wrote: > > In the AndroidManifest.xml have your marked your application as > debuggable? > > e.g. > >... > android:debuggable="true"> > ... > > -- > RichardC > > > > On Oct 7, 4

[android-developers] Re: Using IPSec on Android

2010-02-27 Thread Android Development
I managed to achieve this. Thanks. Indodroid. On Tue, Feb 9, 2010 at 3:46 PM, Android Development wrote: > Hello, > > How do I establish IPSec Security Associations on Android ? Is there a > standard API for doing so ? Or will I need to issue shell commands to > achieve it ? &

[android-developers] Configuring a DNS server IP address on android while using 3G

2010-03-26 Thread Android Development
Hello, I wish to configure the IP address of the primary DNS server while using 3G access from an android application. This is because, the DNS server is part of a private infrastructure and I need the application to resolve domain names from this particular DNS server only. For WiFi access, I ha

Re: [android-developers] Re: OutOfMemoryError: how best to transfer large video files into a byte array?

2010-04-21 Thread Android Development
Select a fixed buffer size first. Then start writing the byte array to a file. Once the file size reaches the buffer size configured, copy that file to a temporary location (a temp file). Then transfer this temp file to the web server. Once transferred successfully, make sure to delete this temp f

Re: [android-developers] Re: javax.xml.bind.annotation.XmlAccessType and Android

2010-04-25 Thread Android Development
http://code.google.com/p/android/issues/detail?id=314 On Fri, Apr 2, 2010 at 10:46 AM, Nik wrote: > I'm getting the same error. In a different context though. I'm trying > to include java classes created by JAXB's XJC (from XSD to Java) in my > project. But the annotations generated by the XJC

[android-developers] Re-using the Android Call Log / Contacts and sms capabilities.

2010-08-19 Thread Android Development
Hello developers/community. I am making an internet telephony application based on a proprietary protocol which connects to a web server for call setup. As with other telephony applications this app also has three basic requirements: The need for a call log, a contact book and the ability to send

[android-developers] Re: A Question regarding Android system preferences: Settings.Secure

2010-08-19 Thread Android Development
Any pointers for this question will be really helpful.. Thanks in advance Indodroid On Fri, May 21, 2010 at 11:31 AM, Android Development wrote: > Hello, > > This is regarding the DATA_ROAMING property given here: > http://developer.android.com/reference/android/provider/Settings

[android-developers] A Question regarding Android system preferences: Settings.Secure

2010-05-20 Thread Android Development
Hello, This is regarding the DATA_ROAMING property given here: http://developer.android.com/reference/android/provider/Settings.Secure.html#DATA_ROAMING What exactly does it mean to enable/disable data roaming ? If the user is roaming in the same access technology (say GSM), then handoffs will ta

[android-developers] Persistent Android Activities

2010-05-22 Thread Android Development
What is the meaning of having a persistent activity ? There is a permission that can be used in the manifest: android.permission.PERSISTENT_ACTIVITY Does anyone know of any practical use case of having this permission in the application ? What can be done with it ? Best Regards Indodroid. --

Re: [android-developers] Re: CursorAdapter notifyDataSetChanged doesn't work? What am I doing wrong?

2010-07-02 Thread Android Development
I think for getting this callback, you need to call setNotifyOnChange(true). On 7/2/10, Mark Murphy wrote: > On Thu, Jul 1, 2010 at 10:51 PM, Moto wrote: >> But not sure if design wise is good? Why doesn't >> notifyDataSetChanged() work? what's the difference on what I just did? > > requery() re

[android-developers] A question regarding AsyncTasks

2009-12-21 Thread Android Development
Hello, In the documentation, I read that it is not possible for executing 2 Async Tasks. If execute is called again, it should throw an exception. The following is given under the heading of "Threading Rules", and i quote: "The task can be executed only once (an exception will be thrown if a sec

Re: [android-developers] A question regarding AsyncTasks

2009-12-21 Thread Android Development
> > On Mon, Dec 21, 2009 at 2:23 AM, Android Development > wrote: > >> Hello, >> >> In the documentation, I read that it is not possible for executing 2 Async >> Tasks. If execute is called again, it should throw an exception. >> >> The following is g

Re: [android-developers] A question regarding AsyncTasks

2009-12-25 Thread Android Development
"instance" here is the magic word. On Tue, Dec 22, 2009 at 12:49 AM, Frank Weiss wrote: > It was clear to me that the documentation meant the instance of AsyncTask > cannot be executed again. > > -- > You received this message because you are subscribed to the Google > Groups "Android Developer

[android-developers] Regarding SharedPreferences and my use-case.

2009-12-25 Thread Android Development
Hello, Shared Preferences are accessible to all clients (a single instance of the preferences). I wanted to understand the following: 1. Are these preferences shared across android applications or only within the given application ? I saw a note in the documentation that read: Note: currently t

[android-developers] Re: Regarding SharedPreferences and my use-case.

2009-12-25 Thread Android Development
PS: forgot to add one more question to the trailing mail: 4. Shared Preferences data becomes persistent once committed. What is the persistence scope ? Is the data persistent across application re-start ? On Sat, Dec 26, 2009 at 11:44 AM, Android Development wrote: > Hello, > &g

Re: [android-developers] Regarding SharedPreferences and my use-case.

2009-12-27 Thread Android Development
Thanks for the clarifications Dianne. On Sat, Dec 26, 2009 at 11:56 PM, Dianne Hackborn wrote: > On Fri, Dec 25, 2009 at 10:14 PM, Android Development > wrote: > >> 1. Are these preferences shared across android applications or only within >> the given application

[android-developers] Regarding Audio and Video send/receive on Android.

2009-12-28 Thread Android Development
Hello, Android provides a use-friendly API for playing and handling media (audio/video). However, I have the following requirements which i wish to realize with this framework : 1. My requirement is to have knowledge of the ports that the android media framework opens and uses for sending/receiv

[android-developers] Re: Regarding Audio and Video send/receive on Android.

2009-12-28 Thread Android Development
Any thoughts friends? On 12/28/09, Android Development wrote: > Hello, > > Android provides a use-friendly API for playing and handling media > (audio/video). > > However, I have the following requirements which i wish to realize with > this > framework : > >

Re: [android-developers] Re: Regarding Audio and Video send/receive on Android.

2009-12-28 Thread Android Development
under the framework media. > > 2009/12/29 Android Development > >> Any thoughts friends? >> >> On 12/28/09, Android Development wrote: >> > Hello, >> > >> > Android provides a use-friendly API for playing and handling media >> > (au

Re: [android-developers] Re: Regarding Audio and Video send/receive on Android.

2009-12-30 Thread Android Development
Thanks Piyush.. I was using this framework for RTP handling as a workaround ! On Wed, Dec 30, 2009 at 2:00 PM, piyushn wrote: > you can use JRTP open source framework for RTP in android. > https://jrtp.dev.java.net/ > > On Dec 29, 9:15 am, Android Development wrote: > > An

[android-developers] Listening to a video stream and rendering it on the screen

2009-12-30 Thread Android Development
Hello, *My Cases:* 1. I have a RTP stack, using which i am receiving raw audio and video streams from the network. 2. Similarly, I will be sending audio and video streams towards the network using the same RTP stack. *Following are my questions/doubts:* For working with audio formats to realiz

[android-developers] New Year Wishes to the Android team/community.

2009-12-31 Thread Android Development
Hello community, Wishing you a very prosperous new year 2010 ahead. May this new year bring with itself health and happiness for you and your family. Also looking forward to experiencing exciting new features of the android framework in the new year and a plethora of new Android powered devices

[android-developers] Re: Listening to a video stream and rendering it on the screen

2010-01-03 Thread Android Development
Hello Devs Any ideas regarding inline ? On Thu, Dec 31, 2009 at 12:19 PM, Android Development wrote: > Hello, > > *My Cases:* > > 1. I have a RTP stack, using which i am receiving raw audio and video > streams from the network. > > 2. Similarly, I will be sending

Re: [android-developers] Re: Android and VOIP

2010-01-03 Thread Android Development
The biggest problem for supporting SIP based VoIP on android is the capability of the android media framework. As for example, if you refer to this table: http://developer.android.com/guide/appendix/media-formats.html..most of the media encoders are not present. There is no use for having only a

Re: [android-developers] Re: J2EE client on Android

2010-01-03 Thread Android Development
Why don't you invoke some web service from the client which in turn talks to your EJB ? On Thu, Dec 3, 2009 at 6:33 AM, Bruce Xia wrote: > What I was trying to do is really to have an app client who can talk to EJB > on server side. This is simply done by adding @EJB annotator in JEE but in > A

[android-developers] Regarding port re-directions on the android emulator.

2010-01-04 Thread Android Development
Hello devs, I had the following query: The IP address of my development machine is 192.168.128.10. This machine is connected to a LAN. I wish to redirect all incoming packets on IP 192.168.128.10 and port 5060 to the emulator instance that runs on 10.0.2.15 For doing so, I have issued the follo

Re: [android-developers] Regarding port re-directions on the android emulator.

2010-01-04 Thread Android Development
instances. > > Thanks, > Upendra > > On Mon, Jan 4, 2010 at 2:20 PM, Android Development > wrote: > >> Hello devs, >> >> I had the following query: >> >> The IP address of my development machine is 192.168.128.10. This machine >> is conne

[android-developers] Initiating a GPRS connection

2010-01-04 Thread Android Development
Hello, If I wish to initiate a GPRS data connection programatically through a configured access point on the device, how do I go about it ? Any ideas are appreciated. Thanks in advance Indodroid. -- You received this message because you are subscribed to the Google Groups "Android Developers"

[android-developers] Broadcast Receiver works sometimes/sometimes not.

2010-01-06 Thread Android Development
Hello, I wish to listen to android.intent.action.BOOT_COMPLETED. However i am not getting the broadcast intent, if i specify com.test.BootBroadcastReceiver in the manifest. When i change this value to simply BootBroadcastReceiver, then i am getting the broadcast intent.

[android-developers] Re: Initiating a GPRS connection

2010-01-07 Thread Android Development
Hello, Any feedback on how to achieve this task? On 1/4/10, Android Development wrote: > Hello, > > If I wish to initiate a GPRS data connection programatically through a > configured access point on the device, how do I go about it ? > > Any ideas are appreciated. >

[android-developers] Re: Initiating a GPRS connection

2010-01-08 Thread Android Development
Really need to find a way to do this guys. Help really appreciated. On Thu, Jan 7, 2010 at 6:13 PM, Android Development wrote: > Hello, > > Any feedback on how to achieve this task? > > On 1/4/10, Android Development wrote: > > Hello, > > > > If I wish t

Re: [android-developers] Activity and Interface

2010-01-09 Thread Android Development
For passing stuff from Activity-A to Activity-B, use a bundle and pass it in the intent while starting the target activity. Intent intent = new Intent(ActivityA.class, ActivityB.class); intent.putExtra("name", "myName"); intent.putExtra("age", 24);

Re: [android-developers] How to access USIM and ISIM

2010-01-12 Thread Android Development
You should have the ISIM/USIM application loaded on your smart card for you to read it. On Wed, Nov 11, 2009 at 11:53 PM, neeloor2004 wrote: > Hi > Is there any API to access ISIM ? If not how can I get it tthrough > RIL, Please provide example code > > Neeloor > > -- > You received this message

[android-developers] Re: error while building the android code using make

2009-07-17 Thread Android development
Hi Asif k, Have you resolved this problem? I have the same problem. [...@myandroid]$ make build/core/product_config.mk:232: WARNING: adding test OTA key TARGET_PRODUCT=generic TARGET_BUILD_VARIANT=eng TARGET_SIMULATOR= TARGET_BUILD_TYPE=release TAR

[android-developers] Re: Any plan for support OMA-DM?

2009-07-21 Thread Android Development
OMA DM is very essential in my opinion. If Android supports it, it will be a positive step indeed. On Sat, Jul 18, 2009 at 10:09 AM, John Smith wrote: > 2009/7/17 timj.wdsglo...@googlemail.com > >> >> The question for me is: Why would Android support OMA-DM? What >> problem are we trying to so

[android-developers] Re: import org.apache.commons.httpclient.HttpClient library error

2009-07-22 Thread Android Development
i confirm that my library works well on android. I tried it out with a sample application. My library is an extension of the apache http commons client api. On Sun, Jul 5, 2009 at 11:44 AM, Android Development wrote: > I will try out my library in a PoC application today to see what happ

[android-developers] Re: ALL DEVELOPERS PIRATED APPLICATION ALL OVER!

2009-07-22 Thread Android Development
Maybe an activation licensing key for each binary may be the solution for this. But then again, its easier said than done. On Wed, Jul 22, 2009 at 8:20 PM, Moto wrote: > > I know that piracy will never end, I mean I'm a solo developer trying > to fight a war that multi-million companies have spe

[android-developers] Re: ALL DEVELOPERS PIRATED APPLICATION ALL OVER!

2009-07-22 Thread Android Development
okay. I think it is the only way out of this. A secret key that you generate and provide for each instance of the application sold. On Wed, Jul 22, 2009 at 8:27 PM, John Smith wrote: > > > 2009/7/23 Android Development > >> Maybe an activation licensing key for each binary m

[android-developers] Re: ALL DEVELOPERS PIRATED APPLICATION ALL OVER!

2009-07-22 Thread Android Development
There is also LM-X licensing server, that is promising. On Wed, Jul 22, 2009 at 9:03 PM, Moto wrote: > > Mmm slidelock sounds like I'm gonna try it... I guess that's another > way to distribute an app instead of using the Android Market... > > > --~--~-~--~~~---~--~

[android-developers] Re: Clearing the cache of your app on exit

2009-07-26 Thread Android Development
Hello Dianne, Speaking of clearing the application's cache data...what is the difference in deleting the cache when the application exits as opposed to clearing the cache data by the user himself? I have 2 use-cases: 1. When the application exits gracefully, I should be able to clean all the data

[android-developers] Re: Service performance

2009-08-15 Thread Android Development
Should we be using thread priorities to control application behavior ? I dont think its a good practice. On Sat, Aug 15, 2009 at 7:11 PM, Mark Murphy wrote: > > Christine wrote: > > On Aug 15, 2:55 pm, Mark Murphy wrote: > > > >> By "posts a task", do you mean executes an AsyncTask, or something

[android-developers] Re: import org.apache.commons.httpclient.HttpClient library error

2009-07-02 Thread Android Development
Hello, I have a custom library that is built as a wrapper around the apache commons http client libraries. Is it possible for me to use this library on android ? Or am i only limited to use the http client libraries as part of android ? On Fri, Jul 3, 2009 at 10:43 AM, Nithu wrote: > > Thanks fo

[android-developers] Re: import org.apache.commons.httpclient.HttpClient library error

2009-07-03 Thread Android Development
Thanks for the reply Markuz05. My API is a wrapper over the Apache HTTP Client API..which is a well tested and proven API: http://hc.apache.org/httpclient-3.x/apidocs/ As you said, that the libraries being used in an Android application need to be comp

[android-developers] A question regarding Activities and Tasks.

2009-07-03 Thread Android Development
I had a question regarding this concept. Suppose i have an application that defines a task. This task has some activities that belong to another Android application. The Dev guide says, that to maintain a uniform user experience, Android will maintain such 'distributed' activities as part of the sa

[android-developers] Re: A question regarding Activities and Tasks.

2009-07-03 Thread Android Development
s presented with OI File manager to select a file location > (because that is the activity on top of the OI Notepad stack). > > Peli > www.openintents.org > > On Jul 3, 12:06 pm, Android Development wrote: > > I had a question regarding this concept. > > Suppose i

[android-developers] Re: import org.apache.commons.httpclient.HttpClient library error

2009-07-04 Thread Android Development
I will try out my library in a PoC application today to see what happens. The library i have, is implementing the XCAP protocol( http://www.ietf.org/rfc/rfc4825.txt) which is a wrapper over the HTTP client API. On Fri, Jul 3, 2009 at 11:43 PM, Dagvadorj Galbadrakh wrote: > > Android doesn't use

[android-developers] Memory profiling an android application.

2009-07-06 Thread Android Development
How do we profile an android application's memory ? Help appreciated Thanks in advance --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developer

[android-developers] TTS not inheritable?

2010-11-17 Thread Leon Moreyn-Android Development
i have setup a basic TTS class to run for all files in a my app. When I pass items to synthesis speak the app crashes. I have tried many different ways of passing the variable changing returns and what not. I compiles every time but the app still crashes when the synthesis is suppose to occur. The

  1   2   >