[android-developers] Beta Testing Request - TextWand

2010-05-27 Thread Sam
Hi, We are developing a Text Messaging product called TextWand 'http:// www.textwand.com for the Android platform. I wanted to request the users of your forum to Beta test it and let us know if it works well for Android. How can I post this invitation on your forum without it appearing to be an

[android-developers] Not able to install .APK file .

2011-02-03 Thread sam
Hi everyone, I'm not able to install .apk file into the samsung galaxy tab,Android API *,revision 1 i get an error saying INSTALL_FAILED_MISSING_SHARED_LIBRARY Please help me to over come this problem -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Alert Dialog to display across activities?

2010-03-01 Thread Sam
wrote: On Thu, Feb 25, 2010 at 11:10 PM, Sam samm...@gmail.com wrote: Does anyone know if it's possible to get a Dialog box to display between activities? What are you trying to achieve by doing this? Maybe there's another / better way

[android-developers] How to Clear Activity stack if using same activity multiple times?

2010-03-03 Thread Sam
So I have an app with Activity A. The layout on the activity is dynamic genearted. So it's possible that on Activity A a user hits a button that goes to A and the new page looks different, then a user clicks another button to go to A again. Now I have 2 Activities in the history stack. A, A, and

[android-developers] Re: How to Clear Activity stack if using same activity multiple times?

2010-03-03 Thread Sam
://developer.android.com/guide/topics/fundamentals.html#acttask You can clear the stack upto a particular activity, if you want you can also set that your activity A is never kept in stack. HTH On Mar 4, 2:23 am, Sam samm...@gmail.com wrote: So I have an app with Activity A. The layout

[android-developers] Re: How to Clear Activity stack if using same activity multiple times?

2010-03-03 Thread Sam
to maintain an intent stack all by yourself from A1 through A3, and handle the BACK key event respectively http://d.android.com/guide/topics/manifest/activity-element.html#lmode On Mar 3, 11:58 pm, Sam samm...@gmail.com wrote: Thanks for the info, but no of those intent combination I can seem

[android-developers] Possible to Detect if OnResume is because Back button was hit?

2010-03-10 Thread Sam
Hi, I wanted to know if it is possible to Detect in an Activitiy's OnResume if the Activity is resuming because the devices Back button was hit or not? Sammy -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Re: Possible to Detect if OnResume is because Back button was hit?

2010-03-10 Thread Sam
).  The previous activity won't know anything about this, though.  I use a static music manager and that is how I handle inter- menu game music. What's your specific need?  Maybe I can help out more then. On Mar 10, 6:47 pm, Sam samm...@gmail.com wrote: Hi, I wanted to know if it is possible

[android-developers] Re: Possible to Detect if OnResume is because Back button was hit?

2010-03-11 Thread Sam
, 2010 at 6:47 PM, Sam samm...@gmail.com wrote: I wanted to know if it is possible to Detect in an Activitiy's OnResume if the Activity is resuming because the devices Back button was hit or not? A) Why do you want to do this? Sounds hacky. B) If you start the Activity

[android-developers] Anyway to detect if Broadcast Receiver is registered?

2010-03-11 Thread Sam
again, thus receiving an Exception that Receiver already registered. Anyone know of a way to tell if a Broadcastreceiver is registered and is listening? Sam -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Application wake up

2010-03-17 Thread SAM
server), android OS will start my application. Its possible in Windows Mobile and BREW. Please let me know if its possible in Android and how. Thanks Sam -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Re: Application wake up

2010-03-17 Thread SAM
the application through code. Thanks Sameer On Mar 18, 10:03 am, SAM gulati...@gmail.com wrote: Hi, I have a requirement to wake up my application upon receiving a particular formatted SMS or App directed notification from server. My application is in dead state. Whenever the device receives

[android-developers] Messaging Stopped Unexpectedly (SQLiteException)

2010-04-02 Thread Sam
I'm having an issue using Messaging apps on the device (have tried native + other apps) when my locale is set to Arabic. As soon as I compose a new message and hit send, I get an error saying Messaging Stopped Unexpectedly. From the logcat: V/Telephony( 756): getOrCreateThreadId uri:

[android-developers] Showing Static directions on Google Map View in android

2011-05-24 Thread SAM
. thanks sam -- 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 android-developers+unsubscr...@googlegroups.com For more

[android-developers] Re: Showing Static directions on Google Map View in android

2011-05-25 Thread SAM
Hi TreKing, I am expecting the answer from someone from google MAPs team as I have the code where we can draw directions on the Google Map control but I am not 100% sure whether it will cause any issues for my company. Anyways thanks for your suggestions. ~sam On May 25, 1:43 am, TreKing

[android-developers] Ant and Android

2011-04-13 Thread Sam
Hi, I'm setting up an automated build system using Ant, for our Android project. As a starting point, I've simply exported the required build.xml through Eclipse. If I clean the project, and run ant in the command line at the root of the our Android project, I receive the following compile

[android-developers] Android browser http session gets lost on return from intent

2011-04-13 Thread sam
= new Intent(Intent.ACTION_VIEW, uriUrl); startActivity(launchBrowser); Is there a way to call same browser instance (jsession), that was opened in step 1 to continue the process? It would be very nice if someone could give me a hint. Regards, Sam -- You received this message because you

[android-developers] Table not present in the DATABASE_TABLE

2011-09-22 Thread sam
Hi Guys, I'm having a problem with adding a column in adding it to the table. @Override public void onCreate(SQLiteDatabase db) { // TODO Auto-generated method stub db.execSQL(CREATE TABLE + DataBase_Table + ( + KEY_ID + INTEGER

[android-developers] Re: Table not present in the DATABASE_TABLE

2011-09-22 Thread sam
...@gmail.com wrote: On Thu, Sep 22, 2011 at 7:07 AM, sam hotdude...@gmail.com wrote: Am i going wrong somwere in adding the Column to the table . Have you tried reading the LogCat message you included in your post

[android-developers] Re: Table not present in the DATABASE_TABLE

2011-09-22 Thread sam
Yes , it sayd column not found ... I dono were i'm going wrong , would be great if u guys help me out in this .. http://www.4shared.com/file/vUFD2C_b/SQLDatabase.html? U can download the projecct from this link .. Looking forward for ur help guys .. Regards, Sam On Sep 22, 9:14 pm, TreKing

[android-developers] How to use large database (Sqlite more than 100 MB) in android application?

2011-09-27 Thread Sam
Hello , i develop one application in which require sqlite database. database size is verry large approx. 100 Mb. so i have not any idea which way use these database in my application. database is some private contents so not installed in sdcard... 1) Can android app support or store 100 mb

[android-developers] Re: Thanks, Android Developers are the BEST! Another question about databases?

2011-10-04 Thread Sam
I was planning for everything to run on both a phone and tablet. The phone would be used by field workers to do the documentation and the tablet would be used by another to setup schedules, and among a lot of other things also be used to select a report and have it print. The printing would not be

[android-developers] Re: Thanks, Android Developers are the BEST! Another question about databases?

2011-10-04 Thread Sam
for. Steven Studio LFPhttp://www.studio-lfp.com On Tuesday, October 4, 2011 3:33:25 PM UTC-5, Sam wrote: I was planning for everything to run on both a phone and tablet. The phone would be used by field workers to do the documentation and the tablet would be used by another to setup

[android-developers] Change package name in eclipse

2011-10-19 Thread sam
succefully build a new .Apk file ; but when I try to install to my mobile device. It give out The application XXX(Apps name) (process com.X..xXX) has stopped unexpectedly. Please try again. Thus, I think I make some mistake during rename my packageany solution for me? sam -- You

[android-developers] Open GL glow

2011-10-23 Thread Sam
examples would be appreciated. thanks Sam -- 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 android-developers+unsubscr

[android-developers] Unable to write the SD card from emulator

2011-11-04 Thread sam
I'm using windows vista and Eclipse for developing. I write the simple code to download a file and store it on my sd card. But i'm getting exception (File not found exception) Here is my code public void downloadNewapk () { try { URL url = new

[android-developers] Error in installing dynamically downloaded apk from custom android application programmatically

2011-11-07 Thread sam
Hi everyone, I have downloaded new .apk file in /mnt/sdcard/download/ and i want to install this apk by replacing my old(now using) apk because it is an updated one. This is my install method public void installApplication(){ Uri packageURI = Uri.parse(PackageName.toString());

[android-developers] Error in installing dynamically downloaded apk from custom android application programmatically

2011-11-07 Thread sam
Hi everyone, I have downloaded new .apk file in /mnt/sdcard/download/ and i want to install this apk by replacing my old(now using) apk because it is an updated one. This is my install method public void installApplication(){ Uri packageURI = Uri.parse(PackageName.toString());

[android-developers] Location and sensor data in surfaceview

2012-04-10 Thread Sam
Im fairly new to Android and Java but i've worked my way through a number of guides and tutorials. Im building an app that consists of a main activity and a surfaceview which is updated via a thread. I want to use location data (best of GPS and network) and sensor data to animate my surfaceview,

[android-developers] sipdemo not running on gingerbread 2.3

2012-04-12 Thread sam
sipdemo is running perfectly on emulator but when i run on gingerbread 2.3 it doesnt show any thing , how to solve dis problem -- 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] Android Bluetooth l2cap socket bind()

2012-04-17 Thread Sam
Android version: 2.3.7 Kernel version: 2.6.35-14-CyanogenMod-Arco-Kalim arco@tuxbox #1 Mod version: CyanogenMod-7.1.0.1-click The device has been fully rooted. I have added piece of code in my project which taken from Bluez Utils in hidd.c. The code is the following: if (bind(sk, (struct

[android-developers] Re: Android Bluetooth l2cap socket bind()

2012-04-17 Thread Sam
Anyone could help??? Please... On Apr 17, 4:58 pm, Sam ckjboy2...@gmail.com wrote: Android version: 2.3.7 Kernel version: 2.6.35-14-CyanogenMod-Arco-Kalim arco@tuxbox #1 Mod version: CyanogenMod-7.1.0.1-click The device has been fully rooted. I have added piece of code in my project

[android-developers] Grant the root privilege to the application

2012-04-18 Thread Sam
? Any reply/clue/hint will be highly appreciated. Regards- Sam -- 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 android

[android-developers] What is the difference between Cocos2d-X and Marmalade?

2012-05-03 Thread Sam
Hi, Can any one tell me, How Cocos2d-X and Marmalade are different? Thanks. -- 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

[android-developers] Table layout with different length column

2011-11-24 Thread sam
Hi Everyone, I have a Table layout done in problematically And I want to to develop it as first two rows have only one column and other three rows have two column. First two rows' values should be spread whole row. Can anyone guide me by sending tutorial or any link regarding this Thanks -- You

[android-developers] Adding Apache Commons To Android using the Netbeans IDE

2011-11-28 Thread Sam
Hi there. I'm trying to write an application that requires an FTP link. To do this I need to use the 'org.apache.commons.net.*' import, but I am having problems adding the library I downloaded from the apache website. I have tried adding it from the project properties menu, am I missing something.

[android-developers] InputMethodManager and mServedView

2011-12-09 Thread Sam
The InputMethodManager is connected to an EditText view. After orientation change, I create a new EditText and this one now has focus. However, the IMM does not change its mServedView to the new EditText. Is there anyway to connect the new edit text to the IMM. I dont see any APIs in IMM,

[android-developers] Re: InputMethodManager and mServedView

2011-12-14 Thread Sam
No one knows whats going on, what a pity. -- 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

[android-developers] Using Options Menu in a multi-Fragment Activity

2011-07-27 Thread Sam
I have a FragmentActivity which hosts a FragmentStatePagerAdapter. The pager contains multiple instances of the same fragment, in order that the user can swipe between the items in a list. I want to be able to provide the user with an options menu which will act only on the visible item. For

[android-developers] help me out in TimeTable APP

2012-02-03 Thread Sam
or clicking on that particular professor item, it shud show the timetable of that particular professor. I have tried it, but I am getting a lot of errors. So please help me out frnz... Thanks in advance Sam. -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Application force close after change it from /system/app to /data/

2011-08-29 Thread sam
HI guys, I have a question: my application is installed in /system/app at first, and I run the app for a while. then I remove it from /system/app and install it via adb to /data/ directory. after that, when I click the app to run it again, it always crash with forceclose, the log shows

[android-developers] Every time got zero value when fetch / receive data from external USB Device to Android 3.1 USB Host tab device ?

2011-08-29 Thread Sam
I've written an app to connect an USB Device that have 1 Interfaces with 2 connected Endpoints: i have android 3.1 USB Host tab device and i have external device scanner in which FDTI FT232BM chip and It is a USB device that emulates a RS232 interface it appears as a RS232 port to talk to the

[android-developers] How to read data from external device using android USB Host Api ?

2011-08-31 Thread Sam
Hello , I've written an app to connect an USB Device and read data from external usb device to my android USB Host 3.1 root tab device. i used http://developer.android.com/guide/topics/usb/host.html android USB Host Api. But every time read data value got zero value in every byte from external

[android-developers] Help needed on BUtton CLick

2011-09-03 Thread sam
) { }}); }} How do i call the ImageGallery class after the Button is clicked. Looking forward for reply .. Regards, Sam -- 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

[android-developers] Re: Help needed on BUtton CLick

2011-09-05 Thread sam
{ startActivity(new Intent(Screen1.this,Screen3.class)); } } } On Sep 4, 12:45 am, Michael Banzon mich...@banzon.dk wrote: On Sat, Sep 3, 2011 at 7:46 PM, sam hotdude...@gmail.com wrote: How do i call

[android-developers] Multi Screen help needed !!!

2011-09-05 Thread sam
)); } else { startActivity(new Intent(Screen1.this,Screen3.class)); } } } Please help me to fix this problem Regards, Sam -- You

[android-developers] Re: Help needed on BUtton CLick

2011-09-05 Thread sam
I got it fixed Ratheesh , i had a mistake in ma manifest file .. Can u please guide me how to set the space between the buttons ??? Regards, Sam On Sep 5, 11:53 am, Ratheesh Valamchuzhy android...@gmail.com wrote: hi SAM public void onClick(View v)        {                switch(v.getId

[android-developers] How to use Tap Gesture???

2011-09-06 Thread sam
Hi Guys , Can u please guide me on how to use Tap gesture .. I'm trying to enter into screen2 from screen1 when the user taps the screen How can i do that ?? I googled a lot .. didn't get a clear idea ... Can someone help me on this Please Cheers, Sam -- You received this message because

[android-developers] Re: How to use Tap Gesture???

2011-09-06 Thread sam
() method for that view. Thanks On Tue, Sep 6, 2011 at 11:18 PM, sam hotdude...@gmail.com wrote: Hi Guys , Can u please guide me on how to use Tap gesture .. I'm trying to enter into screen2 from screen1 when the user taps the screen How can i do that ?? I googled a lot

[android-developers] Re: How to use Tap Gesture???

2011-09-06 Thread sam
functionalities . you please check that. On Tue, Sep 6, 2011 at 10:48 AM, sam hotdude...@gmail.com wrote: Hi Guys , Can u please guide me on how to use Tap gesture .. I'm trying to enter into screen2 from screen1 when the user taps the screen How can i do that ?? I googled

[android-developers] Re: How to use Tap Gesture???

2011-09-06 Thread sam
wrote: try making the whole first page as a button , so that it looks better . But I dono if its feasible because me too new to android. On Tue, Sep 6, 2011 at 11:35 AM, sam hotdude...@gmail.com wrote: Is there any other way that u know i can achieve that .. cozz i dnt want to keep

[android-developers] Re: How to use Tap Gesture???

2011-09-07 Thread sam
with height and width set the fill_parent and implement the onClick() method for that view. Thanks On Tue, Sep 6, 2011 at 11:18 PM, sam hotdude...@gmail.com wrote: Hi Guys , Can u please guide me on how to use Tap gesture .. I'm trying to enter into screen2 from screen1 when

[android-developers] How to download Base64 data partly from web server and decode partly from encoded data?

2011-09-15 Thread Sam
Hello , Pls Check this link http://stackoverflow.com/questions/7427089/how-to-download-base64-data-partly-from-web-server-and-decode-partly-from-encoded -- 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] Re: Application force close after change it from /system/app to /data/

2011-09-19 Thread sam
Thanks all for your reply, I just want to know the root cause, looks like UID change cause this. On 8月30日, 上午11时26分, James 030440...@163.com wrote: When removing your application, a full uninstall is required. On Aug 26, 11:09 am, sam hrlixi...@gmail.com wrote: HI guys, I have

[android-developers] How to set selected color effect when click on any image button or image view same as iphone?

2011-09-19 Thread Sam
I have one screen with some image buttons and image view. when user click on these buttons or image view i need to show selected effect not replace any image instead of these. only selected dark shade effect on button or imageview same as iphone. How it's possible ? i have not any selected image

[android-developers] Eclipse Image Bug

2012-06-12 Thread Sam
Hello everyone. I had a serious problem with Eclipse and it pretty much renders my app useless if it isn't fixed. When i'm in the XML editor of one of my XML files, and i place an image, all of the code below the image cannot be edited. In fact, when i even click or try to highlight anything below

[android-developers] Re: Eclipse Image Bug

2012-06-15 Thread Sam
Anyone? On Tuesday, June 5, 2012 5:38:02 PM UTC-7, Sam wrote: Hello everyone. I had a serious problem with Eclipse and it pretty much renders my app useless if it isn't fixed. When i'm in the XML editor of one of my XML files, and i place an image, all of the code below the image cannot

Re: [android-developers] Eclipse Image Bug

2012-06-16 Thread Sam
No im using the XML editor itself. But whenever i use the visual editor to drop a picture into place, and then go back to the XML editor to edit it, all the code underneath the images code becomes weird when i try to highlight or type anything On Friday, June 15, 2012 9:46:40 PM UTC-7, Todd

[android-developers] Re: Eclipse Image Bug

2012-06-16 Thread Sam
Tried that...many, many times On Friday, June 15, 2012 11:36:36 PM UTC-7, Rajis wrote: save and close the xml file and open again -- 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] Re: Eclipse Image Bug

2012-06-17 Thread Sam
So...is there any way to fix this? On Sunday, June 17, 2012 11:59:27 AM UTC-7, G. Blake Meike wrote: While I've never seen this happen in Indigo, it happens *constantly* in Juno. I know, I know: not supported. It is, however, certainly a way to drive a similar bug, consistently. G.

Re: [android-developers] Re: Eclipse Image Bug

2012-06-18 Thread Sam
Never heard of DroidDrawI'll have to check it out! Thanks! -- 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

Re: [android-developers] Re: Eclipse Image Bug

2012-06-18 Thread Sam
It can be reproduced. 1. In the visual editor, drag an image from the left hand side, to anywhere on the screen 2. Drag anything else and place it under the image (for example, some text) 3. Go to the XML code and try to edit the item you dragged below the image 4. It will mess up the code and

[android-developers] In App Billing Limits

2012-07-11 Thread sam
I would like to know what the maximum number of items that can be placed in In App billing for both Android. I seem to remember reading around 3000 but I cannot find the reference. Also if 3000 is the maximum what are the legitimate way to get around this. My app will sell content and I thought a

[android-developers] Re: In App Billing Limits

2012-07-14 Thread sam
the limit (must be documented in the API reference or some developer tutorial on In App Billing). If there is a good reason for the limit, Google won't hesitate to remove your app from Google Play if you try to circumvent that limit. Am Mittwoch, 11. Juli 2012 15:05:09 UTC+2 schrieb sam

[android-developers] Re: Android makefile to generae the static executable

2012-07-17 Thread Sam
Hi, if any of you have any clue. Please let me know. This has puzzled me a couple of days long. Thanks Sam於 2012年7月17日星期二UTC+8下午4時47分45秒寫道: I am trying to generate the executable something like adbd in /sbin. The executable I wish to have is iwlist with ARM format and the type is static

[android-developers] Re: Android makefile to generae the static executable

2012-07-17 Thread Sam
Ok, thanks for letting me know. : ) On 7月17日, 下午7時22分, Jim Graham spooky1...@gmail.com wrote: On Tue, Jul 17, 2012 at 02:27:52AM -0700, Sam wrote: Hi, if any of you have any clue. Please let me know. This has puzzled me a couple of days long. The reason you aren't getting an answer here

[android-developers] show an image in Android gallery via url

2012-10-10 Thread Sam
Is it possible to show the image from url by using the default android gallery app? I can actually play the video from url by using the default android video player. Below is the snippet of my code: Intent intent=new Intent(); intent.setDataAndType(Uri.parse(ImageUrl,Image);

[android-developers] Android HAL version

2013-07-25 Thread Sam
Hi, I look into Android graphic document recently. I noticed that in the official website, it mentions the following... Jellybean MR1 introduces a new version of the HAL. We recommend that you start using version 1.1 of the hardware composer HAL as it will provide support for the newest

[android-developers] Durability Engineer – Automotive AT Detroit, MI, USA

2016-11-08 Thread Sam
*Hit reply to all Or send resumes on h...@smdconsultants.com * Please let me know if you have any one available for the following opening. *Job description: Durability Engineer – Automotive* *Contract Period: 1 Year* Job Location: *Detroit, MI, USA* Tentative

[android-developers] Oracle LSH Senior Consultant | NJ

2016-11-04 Thread Sam
Position : Life Sciences Senior Consultant Location : Jersey city , NJ Duration- 6 + months Rate – Open Client name will be disclosed later ( it’s a health care client ) · Engage with HealthCare to drive consultancy and global services/support in the area of Life Sciences Hub

[android-developers] Job| Life Sciences Senior Consultant | Jersey city , NJ

2016-11-07 Thread Sam
*Hit reply to all Or send resumes on h...@smdconsultants.com * Please let me know if you have any one available for the following opening. Position : Life Sciences Senior Consultant Location : Jersey city , NJ Duration- 6 + months Rate – Open Client name will be

[android-developers] Technical Business Analyst - Should be local to MI

2016-10-19 Thread Sam
Hi Please let me know if you have anyone available for the following opening. Position – Technical BA Location – Dearborn, MI Duration – 6 + months Rate - $40/hr on C2C Need local candidate who can go for F2F (Candidate Should be strong in SQL) *Job Summary:* Technical Business

[android-developers] AEM Developer at Dearborn, MI

2016-10-17 Thread Sam
Position: AEM Developer Location : Dearborn, MI Local Candidate highly preferred . *Other Responsibilities: * 1. Safeguard the company’s assets. 2. Adhere to the company’s compliance program. 3. Maintain comprehensive knowledge of industry standards, methodologies, processes, and

[android-developers] Technical Business Analyst - Should be strong in SQL | MI

2016-10-18 Thread Sam
Hi Please let me know if you have anyone available for the following opening. Position – Technical BA Location – Dearborn, MI Duration – 6 + months Rate - $40/hr on C2C Need local candidate who can go for F2F (Candidate Should be strong in SQL) *Job Summary: * Technical Business

[android-developers] Urgent Need| Siebel- Toronto, Canada| AEM Dev- Dearborn, MI

2016-10-20 Thread Sam
Hi, Please let me know if you have anyone available for the following openings. Siebel EAI – (4-6 Years Exp) – 70/hr on C2C - Toronto ,Canada Siebel Configurator - (6-8 Years ) – 80/hr on C2C - Toronto ,Canada Position: AEM Developer Location : Dearborn, MI Local Candidates Only.

[android-developers] Req. | Siebel AT Toronto , Canada

2016-10-24 Thread Sam
Hi, *Hit "REPLY to ALL" and send your responses on h...@smdconsultants.com * Please find positions on Siebel AT Toronto , Canada . Please submit accordingly . VISA: PR and TN Start date will be on 5th Dec 2016 . Position Experience location term rate

[android-developers] Technical BA/PM AT Dearborn, MI

2016-11-18 Thread Sam
Hi, Please let me know if you have anyone available for the following opening. Position – Technical BA/PM Location – Dearborn, MI Rate - $40/hr on C2C *Essential Job Functions: * Areas of Responsibility: • Manage, take ownership and hold accountability of Agile solution deliveries •

[android-developers] Position - staffer/integrator with Adaptive Experience | Dearborn, MI

2016-11-03 Thread Sam
Hi, Please reply me on h...@smdconsultants.com Position - staffer/integrator with Adaptive Experience Location – Dearborn, MI Duration – 6 + Months Rate - $50/hr on C2C Need candidate locally or who can relocate Here is more of a job description for and Adaptive role: The

[android-developers] Life Sciences Senior Consultant with Oracle’s Life Science Hub exp.

2016-11-03 Thread Sam
Position : Life Sciences Senior Consultant Location : Jersey city , NJ Duration- 6 + months Rate – Open · Engage with HealthCare to drive consultancy and global services/support in the area of Life Sciences Hub (LSH) for ensuring definition of and population of all

[android-developers] Need Java Developer, local to CA.

2016-12-08 Thread Sam
Hi, Please send me resumes on *h...@smdconsultants.com * Do you have any genuine Java guy local to Sunnyvale, CA @ $45/hr? *Skills required: Java Developer, with Angular and nodes.js, basic JavaScript, backend services.* Thanks and Regards Sameer Sinha Manager

[android-developers] Fwd: Need Java Developer, local to CA.

2016-12-08 Thread Sam
Hi, Please send me resumes on *h...@smdconsultants.com * Do you have any genuine Java guy local to Sunnyvale, CA @ $45/hr? *Skills required: Java Developer, with Angular and nodes.js, basic JavaScript, backend services.* Thanks and Regards Sameer Sinha Manager

[android-developers] SAP PI Developer - Bellevue

2016-12-12 Thread Sam
Please send me resumes on hr2@smdconsultants,com Role – 2 SAP PI Developers Duration – 6 Months + Rate - $50 / Hr. (Max), All inclusive (No Travel) Location – Bellevue, WA While sending the resume please mention e-mail id, skype ID, LinkedIn profile, Bill Rate & key skills (one/two

[android-developers] Required: Micro Strategy Developer

2016-12-13 Thread Sam
Please send me resumes on hr2@smdconsultants,com Title: *Micro Strategy Developer* Client: Accenture/Cisco Location: San Jose, CA Duration: 6 Months Rate: $60/hr. *Job Description:* · At least 3 Year of Experience with MicroStrategy products, with experience as both a developer

[android-developers] Java Production Support Engineer | Sunnyvale CA | 6 + Months

2016-12-06 Thread Sam
Hi, * Send me Resumes on h...@smdconsultants.com * Please let me know if you have any one available for the following opening. If yes, please send me your resume with the desired rate information. *Support Engineer* Location: Sunnyvale, CA Duration: 6+ Months

[android-developers] SAP FICA/RMCA Consultant - Sunnyvale, CA

2016-12-12 Thread Sam
Please send me resumes on hr2@smdconsultants,com Sunnyvale, CA 6+ Months *Request Summary: * · 10+ years of SAP functional experience specializing in design and configuration of SAP Finance modules. Two full life cycle implementation experience of SAP FICO/FICA/RMCA modules. ·

[android-developers] Java Developer with experience on Spring Boot | Milwaukee, WI

2017-01-10 Thread Sam
Hi Please let me know if you have anyone available for the following opening. If yes, please send me your resume with the desired rate information. Send it on h...@smdconsultants.com *Position Title/Role: Java Developer* *Location: Milwaukee, WI* *Duration: Long Term* *Rate: $45 C2C All

[android-developers] Job| Support Enginee (XML, JSON and REST services)r- Sunnyvale, CA|

2016-12-05 Thread Sam
Hi, *Send me replies on h...@smdconsultants.com * Role: *Support Engineer* Location: Sunnyvale, CA Duration: 6+ Months Description: • Extensive experience in providing L1 & L2 support for enterprise systems • Well verse with the use of XML,

[android-developers] OTC Functional Resource with Brazilian Tax. experience

2016-12-05 Thread Sam
Hi, *Send me replies on h...@smdconsultants.com * *OTC Functional Resource with Brazilian Tax. experience* Location: Seattle, WA Duration: 6+ Months *Description:* - Order to cash (OTC) FA with Brazilian tax experience - Functional Analyst

[android-developers] Need | Java Developer- Milwaukee, WI

2016-12-27 Thread Sam
Hi Please let me know if you have anyone available for the following opening. If yes, please send me your resume with the desired rate information. Send it on h...@smdconsultants.com *Position Title/Role: Java Developer* *Location: Milwaukee, WI* *Duration: Long Term* *Rate: $55 C2C All

[android-developers] Job| QA ETL tester with Hedis- Raleigh, NC

2016-12-19 Thread Sam
Hi Please let me know if you have anyone available for the following opening. If yes, please send me your resume with the desired rate information. Send it on h...@smdconsultants.com *Role: QA ETL tester with Hedis* Location: NC-RALEIGH *Duration: Contract- 6+ Months* Position Qty:

[android-developers] SAP FICA/RMCA | Sunnyvale CA | 6+ Months

2016-12-06 Thread Sam
Hi, * Send me Resumes on h...@smdconsultants.com * Please let me know if you have any one available for the following opening. If yes, please send me your resume with the desired rate information. *SAP FICA/RMCA Consultant* Sunnyvale, CA 6+ Months Best Rate: $70/Hr

[android-developers] Android on Motorola A810...

2008-11-25 Thread Sam Android
Hello ALL, Can Android be ported on Motorola A810? Has anyone done this? A little I have come to know that Android was ported on Motorola Ming A1200, the predecessor of Motorola A810. Regards, - sam. Connect with friends all over the world. Get Yahoo! India Messenger at http

[android-developers] Location API and JSR-179/OpenLAPI

2008-11-29 Thread Sam Halliday
Hi all, When Android was first announced, I offered to help out write any missing parts of the Location API and port over any code that was part of the OpenLAPI project (open source LGPL implementation of JSR-179). I never heard a response back at the time. I'm just checking now to find out the

[android-developers] Re: Location API and JSR-179/OpenLAPI

2008-11-29 Thread Sam Halliday
also, OpenLAPI is able to provide a JSR-179 API from an external bluetooth device, Google Earth XML file (excellent for development) or the LandmarkStore . Might be of use to you. On Nov 29, 12:55 pm, Sam Halliday [EMAIL PROTECTED] wrote: Hi all, When Android was first announced, I offered

[android-developers] Re: Why the webkit just send to plugin 20 bytes through NPP_Write

2008-12-27 Thread Tang Sam
Thanks. I have resolved it. 2008/12/27 Mark Murphy mmur...@commonsware.com Slacker wrote: I am developing a new plugin for web browser via NPAPI as google default android gears plugin. But I always get 20 bytes from browser. Every time browser call my plugin API NP_Write and then send

[android-developers] Re: Why the webkit just send to plugin 20 bytes through NPP_Write

2008-12-29 Thread Tang Sam
1.0 no plugin support. 1.1 has. So you must start from 1.1. 2008/12/29 qvark joseluishuertasfernan...@gmail.com Hi Slacker, I'm very interested in developing a plugin for the Android browser, but I have no clue about where to start. Would you be so kind to give me some tips or point out

[android-developers] Beginner

2009-01-19 Thread Sam Bender
Hi, this is my first post and I might as well let you know that I have just a little bit of experience in java. Also I'm 15. I just got a G1 and I want to create an application to turn of the ringer volume off at 7:57am and back on at 3:00pm on weekdays Its been to long and I am very confused

[android-developers] Beginner, help with system clock

2009-01-19 Thread Sam Bender
Hi, this is my first post and I might as well let you know that I have just a little bit of experience in java. Also I'm 15. I just got a G1 and I want to create an application to turn of the ringer volume off at 7:57am and back on at 3:00pm on weekdays Its been to long and I am very confused

[android-developers] Intent for opening browser

2009-04-12 Thread sam aldis
Can anyone post me the intent for opening the Browser on the url specified.? --~--~-~--~~~---~--~~ 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] Invitation to connect on LinkedIn

2009-09-23 Thread Sam Aldis
LinkedIn Sam Aldis requested to add you as a connection on LinkedIn: -- Michele, I'd like to add you to my professional network on LinkedIn. - Sam Accept invitation from Sam Aldis http://www.linkedin.com/e/LLkLpmh1

<    1   2   3   4   5   6   7   >