[android-developers] HTTPS SSL error running SDK Setup.exe

2010-01-12 Thread John
Failed to fetch URL https://dl-ssl.google.com/android/repository/repository.xml, reason: HTTPS SSL error. You might want to force download through HTTP in the settings. env : D:\android\android-sdk-windows>systeminfo Host Name: WIN2K3 OS Name: Microsoft(R) Windo

[android-developers] How does ATK generate its list of apps?

2010-09-21 Thread John
I need a way to find out which User initiated apps/processes are running on the device. Similar to what ATK and other task killers do. I've been looking at ActivityManager.getRunningAppProcesses(), but I can't tell from ActivityManager.RunningAppProcessInfo which processes are system processes an

[android-developers] True SAX parser on android

2010-10-13 Thread john
I am trying to implement a robust RSS/Atom reader for android, and since Xerces won't compile I am struggling to find an alternative. I am using org.xmlpull.v1.sax2.Driver(), however this just wraps a DOM parser with SAX callbacks. Is there anything comparable to Xerces on Android? -- You receiv

[android-developers] Re: handeling StartActivityForResult on back button

2009-07-14 Thread john
try setResult(RESULT_CANCELED); add if (resultCode==RESULT_OK) { . } in SporeAPI.onActivityResult On 7月15日, 上午5時46分, schwiz wrote: > ahh ok yeah it is showing an uncaught exception for not returning the > result along with more errors > > 07-14 21:42:54.501: INFO/ActivityManager(570): S

[android-developers] Re: SQLite DROP Database

2009-07-14 Thread john
uninstall the application On 7月15日, 下午1時07分, Saurav Mukherjee wrote: > if have rights to the shell, then u can jus try this: > rm > > On Wed, Jul 15, 2009 at 2:44 AM, Kumaravel Kandasami < > > > > kumaravel.kandas...@gmail.com> wrote: > >  How to drop a database in Android SDK? > > > Did not se

[android-developers] Re: A Big BUG when read a Chinese string from /res/raw/xxxx.txt? what the mothed to this problem.

2009-07-29 Thread john
Try PHP json_encode() $arr = array (N'=>'啤酒鸡翅','K'=>'鸡翅'); echo json_encode($arr); You will find correct format. On 7月27日, 下午12時46分, Yaccke wrote: > mydata locates /res/raw/.txt. it's a long Chinese String. > such as : > !...@#$%^&*()[{'N':'啤酒鸡翅','K':'鸡翅','A':'啤酒、生姜、桂皮、八角','S':'1','M':'1、翅中

[android-developers] How to use android's built in zoom controls for View or ImageView

2009-06-04 Thread John
I can use the built in zoom controls for WebView or MapView. But don't know how to access the control for View or ImageView. If the control is not implemented, can we access the bitmaps for the zoom control supporting WebView or MapView. Thanks in advanced!

[android-developers] How to use android's built in zoom controls for View or ImageView

2009-06-04 Thread John
I can use the build in zoom control for WebView and MapView. Can we use it for View or ImageView? Or can we use the icons/bitmaps if the the zoom control is not available? Thanks! -John --~--~-~--~~~---~--~~ You received this message because you are subscribed to

[android-developers] How to use android's built in zoom controls for View or ImageView

2009-06-04 Thread John
I can use the build in zoom control for WebView and MapView. Can we use it for View or ImageView? Or can we use the icons/bitmaps if the the zoom control is not available? Thanks! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Goo

[android-developers] Where to find Google I/O presentations?

2009-06-04 Thread John
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 android-develo

[android-developers] ACTION_PHONE_STATE_CHANGED working in 1.5 SDK?

2009-06-05 Thread john
hanks for any help you guys can give me! This group has been a great help since the beginning. -John Batka --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this grou

[android-developers] Re: ACTION_PHONE_STATE_CHANGED working in 1.5 SDK?

2009-06-05 Thread john
Thanks, I wasn't aware of PhoneStateListener. Of course, if I want my program to work consistently I need to get this Broadcast Receiver working. I've had some very bad experiences with long-running services (they tend not to run very long)! Everything in the documentation says to use Broadcast R

[android-developers] Re: problems with my htc magic

2009-06-18 Thread john
HTCSync_1.0.0.exe is in the 2G SDcard On 5月20日, 下午3時01分, dj_thossi wrote: > Hi, > > i have the same Problems with theHTCMagicand the Link is broken. > can you upload again, please. Thanks. --~--~-~--~~~---~--~~ You received this message because you are subscribe

[android-developers] Re: How to use android's built in zoom controls for View or ImageView

2009-06-23 Thread John
Thanks for your response. I posted multiple times while ago since I couldn't see my previous postings. I don't think I can use WebView to implement my application. Appreciated anyway. On Jun 4, 11:01 am, hanged_man wrote: > i was investigating into the same issue and it seems like that it is > n

[android-developers] WebView Link with SDK 1.5

2009-06-23 Thread John
With previous SDK, clicking on the link of telephony number triggers the dialer. But it does not work with new SDK, is it right? Thanks! -John --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Devel

[android-developers] Re: WebView Link with SDK 1.5

2009-06-25 Thread John
The same issue is posted at: http://osdir.com/ml/AndroidDevelopers/2009-02/msg03441.html Is it a SDK 1.5 bug?? On Jun 23, 3:59 pm, John wrote: > With previous SDK, clicking on the link of telephony number triggers > the dialer. But it does not work with new SDK, is it right? Thanks! >

[android-developers] Re: Can't install usb driver because Windows do not pop "New hardware wizard"

2009-07-09 Thread john
1.insert 2G SDCARD 2.plugin the connecting cable to your phone 3.open usb notification in status bar ,agree USB connect to your phone 4.open usb driver in you computer,double click HTCSync_1.0.0.exe On 7月9日, 下午7時32分, Mark Murphy wrote: > Victor Lin wrote: > > Hi, > > > I want to install usb driv

[android-developers] Re: How to send MMS in Android Mobile

2009-07-10 Thread john
You could send it programatically but you would probably need to look deep within the messaging application code. Start here - http://android.git.kernel.org/?p=platform/packages/apps/Mms.git;a=tree;h=refs/heads/master;hb=master good luck! On 7月10日, 上午9時47分, Jimmy Huang wrote: > Thank Yusuf. Y

[android-developers] How to communicate with sim card on android?

2012-02-15 Thread john
Does android suuport PC/SC ? l want to get some information from sim card, on windows can use winscard.dll, but on android l can't find any usrful function. do l need read MF/DF files with file read functions? even so, l still don't know the path simcar mounted to android system. l am sure andro

[android-developers] monkeyrunner device.type() dropping characters

2012-02-29 Thread John
trying to learn how to write monkeyrunner scripts in python: device.startActivity( component='com.android.calculator2/.Calculator' ) time.sleep(1) device.type( '2*3=' ) starts the calculator, accepts the input and displays the proper result. However device.startActivity( component='

[android-developers] monkeyrunner device.type() dropping characters

2012-02-29 Thread John
trying to write a simple demo monkeyrunner python script device.startActivity( component='com.android.calculator2/.Calculator' ) time.sleep(1) device.type( '2*3=' ) this works as I expect, starts the calculator and it displays the correct result, having some difficulty with the browser

[android-developers] Article Not Listed in "Articles" Menu

2011-03-18 Thread John
There doesn’t seem to be a way to provide feedback on the Android developer’s website, so I am posting this message with the hope that someone with appropriate authority fix this. Recently I found an article – Using the Contacts API (http://developer.android.com/ resources/articles/contacts.html)

[android-developers] Out of Memory With Alert Dialog and Screen Rotation

2011-03-22 Thread John
s? Thanks, John -- 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.

[android-developers] Re: Out of Memory With Alert Dialog and Screen Rotation

2011-03-22 Thread John
On Mar 22, 2:51 pm, Justin Anderson wrote: > How many times does it take to crash if you skip rotating the phone 30 times > while displaying the bitmap? I'm not sure I understand the question? If I don't rotate the phone, it doesn't run out of memory. It also appears to not run out of memory when

[android-developers] Re: Out of Memory With Alert Dialog and Screen Rotation

2011-03-22 Thread John
On Mar 22, 3:05 pm, Miguel Morales wrote: > Are you holding on to the dialog reference?  That's probably it. I don't think so. I am using onCreateDialog. The code is below. My understanding is that Anroid itself is supposed to handle the memory management for me. protected Dialog onCreateDia

[android-developers] Re: Out of Memory With Alert Dialog and Screen Rotation

2011-03-22 Thread John
On Mar 22, 3:24 pm, Miguel Morales wrote: > Well it should, but I suspect you are doing something wrong by creating a > new AlertDialog every time. > I haven't really used that method to construct dialogs, but rather keeping > track of them myself. > (by holding on to the reference and releasing i

[android-developers] Re: Out of Memory With Alert Dialog and Screen Rotation

2011-03-22 Thread John
On Mar 22, 4:01 pm, Justin Anderson wrote: > Your description said that you rotate the phone 30 times without displaying > the dialog.  After that, you rotate the phone 9 times while the dialog was > displayed. Ah. I see I was being unclear in my original message. Actually I meant that I test my

[android-developers] Reading From Serial Ports Disrupts Bluetooth

2011-03-31 Thread John
I have an app that checks for data on the serial ports. It uses JNI to read from /dev/ttys*. When it does not find the data on the serial ports, it then uses the Java APIs to open a bluetooth socket and check for the data via bluetooth. The problem is that the BluetoothSocket.connect call fails w

[android-developers] Re: Reading From Serial Ports Disrupts Bluetooth

2011-03-31 Thread John
I don't need help porting Android to different hardware. I am using JNI to read the serial ports, and the sdk to open a bluetooth connection. This is a device that is already running Android. -- You received this message because you are subscribed to the Google Groups "Android Developers" group.

[android-developers] Re: Reading From Serial Ports Disrupts Bluetooth

2011-03-31 Thread John
Yeah, thanks. After reading your post it does make sense that there might be some conflict there. So I'm going to have to agree with you that messing with those ports is a bad idea. Just to hopefully satisfy your curiosity, we're actually porting PC software to Android. The serial ports were from

[android-developers] HTC Driver 3.0.0.005 failed on windows 7

2012-04-10 Thread john
Hi, I am trying to install HTC Sync 3.0.5517on my windows 7 syatem(32-bit).Whenever I am trying to run its setup it is throwing me the same error "HTC Driver 3.0.0.005 appearss to be failed". I have done the following setps:- 1)Uninstall the HTC Sync setup several times. 2)Reboot the system again

[android-developers] Your Version of Market May be out of Date

2012-05-21 Thread John
I'm trying to run the billing sample Dungeon app on an old HTC Hero test phone. I get the message that says, "This app cannot connect to Market. Your version of Market may be out of date." I opened the Market app and it does not update to the latest version. It does show apps, so I assume I am con

[android-developers] How To Debug Hangs

2012-01-03 Thread John
I have a customer with a 2.2 Samsung device. He claims that my app is displaying a busy dialog for 15 minutes, at which point he presses the home button. He then goes into Settings and does a Force Stop. Is there any way to get a stack trace of where the app was at the time of the force stop? Is

[android-developers] Re: Gallery Intent to pick image --- Picasa-based images are invalid (Android 4.0+)

2012-01-08 Thread John
I can confirm having this same bug only with picasa images on Honeycomb and ICS. Code: file = new File(getPath(intent.getData())); java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=1, result=-1, data=Intent { dat=content:// com.google.android.gallery3d.provider/p

[android-developers] Newbie questions about best practices

2012-01-08 Thread John
I am kinda new to this all and have a question or two about the proper way to do some things when designing an app. my first question is, is it okay to use the built in SQLite database for an app? i ask this because it seems as if the database is supposed to be used for the operating system data li

[android-developers] ListActivity and Email Link

2012-01-10 Thread John
Anyon know why when I have an email address linked in a ListActivity my onItemClickListener doesn't work? To link the email I'm using a TextView with autoLink="email" Thanks, John -- You received this message because you are subscribed to the Google Groups "Andr

[android-developers] ScrollView (fill_parent)

2012-01-21 Thread John
s not appear to be filling the height of the parent. Does anyone know why this might be? Thanks, John -- 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.

RE: [android-developers] ScrollView (fill_parent)

2012-01-22 Thread John
Sun, Jan 22, 2012 at 12:55 AM, John wrote: the LinearLayout does not appear to be filling the height of the parent. Does anyone know why this might be? I think ... if the parent is a ScrollView, it will only fill up as much as is needed. If it's more than is available, then it sc

RE: [android-developers] ScrollView (fill_parent)

2012-01-22 Thread John
avity="bottom" won't work in a vertical linear layout. You can use layout_weight on the table layout, or replace linear layout with relative layout, using android:layout_alignParentBottom and android:layout_above on its children. -- K 22 января 2012 г. 10:55 пользователь John на

[android-developers] Re: Two webview windows in one app

2012-01-23 Thread John
Completely possible, though keep in mind that due to the design of the WebKit/Android integration some things are shared app wide (http cache, AppCache, android.net.http.* RequestQueue stack, etc). On Jan 23, 6:51 am, Mark Murphy wrote: > On Fri, Jan 20, 2012 at 9:18 PM, William wrote: > > Is it

[android-developers] Re: SQLiteDatabase.execSQL() not behaving as expected

2012-01-26 Thread John
It's because of the use of the TEMPORARY TABLE clause I think. # MATCH clause variance http://www.sqlite.org/fts3.html # iOS sqlite support http://stackoverflow.com/questions/3142575/iphone-ios-2-0-to-ios-4-0-sqlite-compatibility # Android sqlite support http://stackoverflow.com/questions/242118

[android-developers] Re: SQLiteDatabase.execSQL() not behaving as expected

2012-01-26 Thread John
Oh and from the same session: sqlite> sqlite> CREATE VIRTUAL TABLE pages USING fts4(title, body); SQL error: no such module: fts4SQL error: near "sqlite": syntax error sqlite> On Jan 26, 3:15 pm, Robert Hawkey wrote: > SQlite supports FTS3 and FTS4 (full text searching).  I've seen > documentati

[android-developers] Re: SQLiteDatabase.execSQL() not behaving as expected

2012-01-28 Thread John
ng to note is that the flash drive on most Android devices is abysmally slow and SQLite is constantly doing fsyncs (especially on ext3 devices). execSQL("PRAGMA synchronous=OFF"); can give up to a 4x speed boost depending on the device, YMMV. John On Jan 27, 9:33 am, Robert Hawkey wrote

[android-developers] Re: Javascript binding issues

2012-01-30 Thread John
and just directly adding to a couple of nodes? d.) Binding mouseup/down might be problematic with jQuery (due to multitouch, trackball, etc). John On Jan 29, 10:28 pm, Greg Donald wrote: > I'm working up some new code that uses Javascript binding, described here: > > http://develop

[android-developers] User Generated Content on Google Maps. Legality.

2012-01-30 Thread John
I am interested in creating an application that allows users to draw on top of google maps and then store the information on the local device. For example, create a line of their favorite hiking trail. I may also make a site (ala, http://scribblemaps.com/) that allows users to generate shapes(line

[android-developers] Re: Javascript openDatabase callback never executes

2012-01-30 Thread John
Martin, The creation callback is only supported on ICS (it might be supported on Honeycomb, I never checked there). It's definitely not supported in the 2.x codebase. Cheers, John On Jan 29, 1:26 am, Martin wrote: > Hi. > > I'm using the Database Storage API in a We

[android-developers] BrowserForFolder

2011-09-19 Thread John
Newbie question: Does Android have a BrowserForFolder function? Scenario: My app needs to ask the user to pick a folder. Is there a way to spawn an OS widget that will return the user's choice, or do I have to roll my own using a ListView activity and java.IO? Thanks. -- You received this mess

[android-developers] video resolution trans-coding

2011-09-21 Thread John
Hello developers, i have a many mp4 videos files in sdcard , that video file contains different width,height resolution. i want give a single constant resolution to that file by code. Plz need help, -- You received this message because you are subscribed to the Google Groups "Android Developer

[android-developers] want talk with android-system level community

2011-09-21 Thread John
I want to ask some question regarding android framework with android sdk system level api community . how to post issue and interact with android-system level developer -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group,

[android-developers] want talk with android-system level community

2011-09-21 Thread John
I want to ask some question regarding android framework with android sdk system level api community . how to post issue and interact with android-system level developer -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group,

[android-developers] how to implement ffmpeg video codec for video player +android

2011-09-21 Thread John
how to implement ffmpeg video codec for video player +android -- 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-dev

[android-developers] What is need of libomxil-bellagio in android

2011-09-22 Thread John
What is need of libomxil-bellagio in android -- 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] File.ListRoots

2011-09-25 Thread John
What is the equivalent of Java.IO.File.ListRoots? When I call this function targeting android 3.2 I get one entry with a path "/". On this particular device, I was expecting two entries "Removable", "sdcard", which are the top level items when I use the File Manager. Thanks -- You received this m

[android-developers] Re: File.ListRoots

2011-09-25 Thread John
Thanks, that's a useful link, but it doesn't answer my question. I'm looking for the equivalent Java.IO.ListRoots, which lists the filesystem root volumes. On Sep 25, 8:53 pm, TreKing wrote: > http://developer.android.com/guide/topics/data/data-storage.html > > ---

[android-developers] Re: File.ListRoots

2011-09-26 Thread John
and what did it return? For me it returned one entry "/", which, akaik is worthless. On Sep 26, 12:10 am, Zsolt Vasvari wrote: > Have you actually tried looked for listRoots()?  Because it took me > less than 30 seconds to find it. > > On Sep 26, 12:42 pm, John wrote: &g

[android-developers] call startActivityForResult from button

2011-10-08 Thread John
Here is another absolute newbie question. I seem to have a fundamental misunderstanding of how Android works. My problem is simple: I need to call startActivityForResult from the OnClick handler of a button on my main application. The result is needed by the application. My reasoning to solve thi

[android-developers] Re: call startActivityForResult from button

2011-10-09 Thread John
"this" is the button. How do I get the Activity that the button is housed in inside the Button.OnClick() event handler? On Oct 8, 11:28 pm, TreKing wrote: > On Sun, Oct 9, 2011 at 12:14 AM, John wrote: > >  ((Activity) getApplicationContext()).startActiv

[android-developers] Anyone else notice that WebKit in ICS has some serious bugs?

2011-10-31 Thread John
I've found numerous (show stopping) bugs in the new version of WebKit shipped with ICS: Basic usage produces errors: http://code.google.com/p/android/issues/detail?id=21177 (note the above has the "D/chromium(2735): Unknown chromium error: -6" explanation as well...not sure if I should open a sep

[android-developers] StackWidget - StackView Widget sample download

2011-11-08 Thread John
How do I download the sample the StackWidget - StackView Widget sample for the Windows SDK? It, apparently, is supposed to be found here: "The file containing the source code shown below is located in the corresponding directory in /samples/android-/..." I have downloaded the samples for versions

[android-developers] createRfcommSocket

2011-11-21 Thread John
Our app uses a bluetooth connection and has been working fine for about a year. On a new Samsung G S2 phone we are seeing a problem connection the socket. The error is 'Service discovery failed'. Now we've seen this on HTC phones, and the solution was to include a call to createRfcommSocket, if th

[android-developers] Re: urgent help for the project

2011-11-21 Thread John
Take a look at the documentation at http://developer.android.com/index.html. Be prepared to spend a few hours looking it over. Start with the Dev Guide. If you've read the Dev Guide and still your questions are not answered, look at the Resources tab where you can find sample code. -- You recei

[android-developers] What is audio focus in class AudioManager?

2011-07-05 Thread John
Hi everyone: The class AudioManager class has a method "abandonAudioFocus()" and another method "requestAudioFocus()". I wonder what is audio focus? And what happens if an AudioManager object gets the audio focus or losts the audio focus? Thank you! -- You received this message because you are su

[android-developers] Resource - font size

2011-08-01 Thread John
I'm trying my best to figure out how the default resource size system works in android without much success. Working on an ASUS eeePad Transformer tablet 1) I worked through the notepad tutorial and the font size is so small for the row entries that I can't select rows. 2) Tried some market apps

[android-developers] Multiple onTouchListeners

2011-08-01 Thread John
Hi, I'm trying to create multiple ImageView's each with its own onTouchListener that will redraw a bitmap on motion events. I dynamically create a new object for each ImageView and this works fine but the onTouchListener seems to only be tied to the last view created. I think this is because th

[android-developers] Creating a Basic Layout

2011-08-03 Thread John
Can someone please explain to me why the below code does not display anything? I am very confused. import android.app.Activity; import android.os.Bundle; import android.widget.LinearLayout; import android.widget.LinearLayout.LayoutParams; import android.widget.TableLayout; import android.

RE: [android-developers] Creating a Basic Layout

2011-08-03 Thread John
roid-developers] Creating a Basic Layout The layout definition has to be programmatically? --- Em qua, 3/8/11, John escreveu: De: John Assunto: [android-developers] Creating a Basic Layout Para: android-developers@googlegroups.com Data: Quarta-feira, 3 de Agosto de 2011, 23:03 Can someone pl

RE: [android-developers] Creating a Basic Layout

2011-08-03 Thread John
the xml layout file without any loss. --- Em qua, 3/8/11, John escreveu: De: John Assunto: RE: [android-developers] Creating a Basic Layout Para: android-developers@googlegroups.com Data: Quarta-feira, 3 de Agosto de 2011, 23:19 In the program I'm trying to do this in I have my own c

RE: [android-developers] Creating a Basic Layout

2011-08-03 Thread John
ayout, you should try the "set" methods. Your code is really estrange to read, and I, with my experience, your code could be expressed with the xml layout file without any loss. --- Em qua, 3/8/11, John escreveu: De: John Assunto: RE: [android-developers] Creating a Basic Layout Para:

[android-developers] 3rdParty application icon

2011-08-05 Thread John
The motivation is to theme my desktop in an un-intrusive way, basically to create shortcuts on the desktop to 3rdParty apps with a different icon. The following code works, on the ASUS eeePad for the Browser, Gmail, and File Manager but not for other apps like Gallery. The error is "Application is

[android-developers] Re: 3rdParty application icon

2011-08-05 Thread John
On Aug 5, 3:55 am, Mark Murphy wrote: > On Fri, Aug 5, 2011 at 1:38 AM, John wrote: > > The error is "Application is not installed", which seems to be some > > generic android error which gives no real information for why the > > action is not working. >

[android-developers] Re: 3rdParty application icon

2011-08-06 Thread John
ed" makes sense, although it would be nice if it could resolve to a more meaningful message. John On Aug 6, 4:32 am, Mark Murphy wrote: > On Sat, Aug 6, 2011 at 1:46 AM, John wrote: > > In the case of the Gallery application i.e. > > "com.google.android.gallery3

[android-developers] Re: Can't get html5 video working properly -- happy to pay for an answer

2011-08-12 Thread John
Has anyone gotten inline video working on Honeycomb? This used to work if you had hardware acceleration enabled, but this seems to have been broken in 3.1/2 (WebView.isHardwareAccelerated() will always now return false and inline video will no longer work). -- You received this message because yo

[android-developers] Status Bar Position

2011-08-13 Thread John
In my program I need to know the location of the devices status bar. Normally I would expect it to be at the top but on my 3.0 emulator it's at the bottom. Can I assume that it will always be at the bottom for 3.0+ and at the top for others or is there a way to get this programmatically? Than

[android-developers] Re: Android emulator gets stuck in Ubuntu 10.04 (Lucid)

2011-08-29 Thread John
Configuration is: 2.6.32-33-generic kernel, Mobile AMD Sempron(tm) Processor 3500+: 800MHz, Memory: 1,885 MiB, Swap 2,379MiB. On Jul 8, 10:59 am, Raghav Sood wrote: > What is the configuration of your ubuntu system? RAM, CPU etc. > > > > On Thu, Jul 7, 2011 at 8:02 PM, vyom wrote: > > I am tryin

[android-developers] Use of buttons

2011-08-29 Thread John
I'm baffled by the usage of Google Groups. I've tried the 'Reply' button and even though it says that the message is posted, it doesn't show in the thread when I press F5. 'Reply to Author' button does result in an email being sent to the person who posted that message, but it doesn't result in an

[android-developers]

2009-02-20 Thread John St. John
-- John St. John jstj...@cs.uoregon.edu (541) 543-7434 --~--~-~--~~~---~--~~ 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@googlegro

[android-developers] Reg : Solution Architect - Remote

2021-05-17 Thread John Urbanesoft
ture certifications e.g. Microsoft, MS Azure Certification, TOGAF, AWS Cloud Certified, Pivotal, CISSIP, Zachman, ITIL, Cisco, (ISC)2, CEH, SAFe, PMI, and SAP etc. Have a nice Day. Thanks & Regards, John ( Business Development Manager), Phone: (630) 780 - 4905 Fax : (702) 973 - 0973

[android-developers] Reg : Big Data Nifi / Kafka Administrator

2021-05-17 Thread John Urbanesoft
, Installation, Patching and Deployment for Kafka/NIfi/BDA · Identify *continuous improvement* opportunity and implement to improve the system stability. Have a nice Day. Thanks & Regards, John ( Business Development Manager), Phone: (630) 780 - 4905 Fax : (702) 973 -

[android-developers] Reg : Solution - Architect - Remote

2021-05-18 Thread John Urbanesoft
ture certifications e.g. Microsoft, MS Azure Certification, TOGAF, AWS Cloud Certified, Pivotal, CISSIP, Zachman, ITIL, Cisco, (ISC)2, CEH, SAFe, PMI, and SAP etc. Have a nice Day. Thanks & Regards, John ( Business Development Manager), Phone: (630) 780 - 4905 Fax : (702) 973 - 0973

[android-developers] Reg : Full Stack .Net developer

2021-05-18 Thread John Urbanesoft
ards, John ( Business Development Manager), Phone: (630) 780 - 4905 Fax : (702) 973 - 0973 Email: j...@urbanesoft.com Urbane Soft Technologies Inc, 5795 S.Sandhill Rd, STE F, Las Vegas, Nevada -89120 USA www.urbanesoft.com ABOUT URBANE SOFT TECHNOLOGIES

[android-developers] Reg : Solution - Architect- Remote

2021-05-18 Thread John Urbanesoft
ture certifications e.g. Microsoft, MS Azure Certification, TOGAF, AWS Cloud Certified, Pivotal, CISSIP, Zachman, ITIL, Cisco, (ISC)2, CEH, SAFe, PMI, and SAP etc. Have a nice Day. Thanks & Regards, John ( Business Development Manager), Phone: (630) 780 - 4905 Fax : (702) 973 - 0973

[android-developers] Reg : Big Data Nifi/Kafka Administrator

2021-05-18 Thread John Urbanesoft
Upgrade, Installation, Patching and Deployment for Kafka/NIfi/BDA · Identify *continuous improvement* opportunity and implement to improve the system stability. Have a nice Day. Thanks & Regards, John ( Business Development Manager), Phone: (630) 780 - 4905 Fax : (702) 973 -

[android-developers] Reg : Senior Software Development Engineer

2021-05-18 Thread John Urbanesoft
Responsible Ø Competencies. Core demonstrate Must Ø analysis. time and cost flow, input-output of analysis flowcharting, systems detailed designs, logic studies, feasibility Perform Ø field. engineering software in experience of years 5+ Have a nice Day. Thanks & Regards, John ( Busi

[android-developers] Reg : Java Full Stack Developer

2021-05-18 Thread John Urbanesoft
, Express.js, Ember, Node.js and JQuery Have a nice Day. Thanks & Regards, John ( Business Development Manager), Phone: (630) 780 - 4905 Fax : (702) 973 - 0973 Email: j...@urbanesoft.com Urbane Soft Technologies Inc, 5795 S.Sandhill Rd, STE F, Las Vegas, Nevada -89120

[android-developers] Reg : QA Test Engineer

2021-05-18 Thread John Urbanesoft
experience of working in "AGILE + DevOps" process management methodology. •Excellent analytical, problem solving, communication and interpersonal skills along with a good aptitude for learning. Have a nice Day. Thanks & Regards, John ( Business Development Manager), Ph

[android-developers] Reg : Developer Informatica Senior

2021-05-19 Thread John Urbanesoft
management project Scrum and/or Agile an within working Experience 2) Have a nice Day. Thanks & Regards, John ( Business Development Manager), Phone: (630) 780 - 4905 Fax : (702) 973 - 0973 Email: j...@urbanesoft.com Urbane Soft Technologies Inc, 5795 S.Sandhill Rd, STE

[android-developers] Reg: Senior Software Development Engineer

2021-05-19 Thread John Urbanesoft
Java, Spring, Oracle database Have a nice Day. Thanks & Regards, John ( Business Development Manager), Phone: (630) 780 - 4905 Fax : (702) 973 - 0973 Email: j...@urbanesoft.com Urbane Soft Technologies Inc, 5795 S.Sandhill Rd, STE F, Las Vegas, Nevada -89120 USA www.urban

[android-developers] Reg : IT Full Stack Engineer (Java)

2021-05-19 Thread John Urbanesoft
. 1) Claims- Auto Management 2) Claims- Property Management 3) Claims - Body Shop related application *legacy application Have a nice Day. Thanks & Regards, John ( Business Development Manager), Phone: (630) 780 - 4905 Fax : (702) 973 - 0973 Email: j...@urbanesoft.com Urbane

[android-developers] Reg : Big Data Nifi / Kafka Administrator

2021-05-20 Thread John Urbanesoft
Upgrade, Installation, Patching and Deployment for Kafka/NIfi/BDA · Identify *continuous improvement* opportunity and implement to improve the system stability. Have a nice Day. Thanks & Regards, John ( Business Development Manager), Phone: (630) 780 - 4905 Fax : (702) 973 -

[android-developers] Reg : Full Stack .Net Developer

2021-05-20 Thread John Urbanesoft
. Thanks & Regards, John ( Business Development Manager), Phone: (630) 780 - 4905 Fax : (702) 973 - 0973 Email: j...@urbanesoft.com Urbane Soft Technologies Inc, 5795 S.Sandhill Rd, STE F, Las Vegas, Nevada -89120 USA www.urbanesoft.com ABOUT URBANE SOFT TECHNOLOGIES

[android-developers] Reg : Java Full Stack Devleloper

2021-05-20 Thread John Urbanesoft
and Gulp including working with JS development frameworks such as ReactJS, AngularJS, Express.js, Ember, Node.js and JQuery Have a nice Day. Thanks & Regards, John ( Business Development Manager), Phone: (630) 780 - 4905 Fax : (702) 973 - 0973 Email: j...@urbanesoft.com Urbane

[android-developers] Reg : IT Full Stack Engineer (Java)

2021-05-20 Thread John Urbanesoft
. 1) Claims- Auto Management 2) Claims- Property Management 3) Claims - Body Shop related application *legacy application Have a nice Day. Thanks & Regards, John ( Business Development Manager), Phone: (630) 780 - 4905 Fax : (702) 973 - 0973 Email: j...@urbanesoft.com Urbane

[android-developers] Reg : QA Test Engineer

2021-05-20 Thread John Urbanesoft
Verifications · Must have experience of working in "AGILE + DevOps" process management methodology. · Excellent analytical, problem solving, communication and interpersonal skills along with a good aptitude for learning. Have a nice Day. Thanks & Regards, J

[android-developers] Reg : Sr Software Engineer

2021-05-20 Thread John Urbanesoft
documentation è Has good communication skills and is eager to work on an awesome team Have a nice Day. Thanks & Regards, John ( Business Development Manager), Phone: (630) 780 - 4905 Fax : (702) 973 - 0973 Email: j...@urbanesoft.com Urbane Soft Technologies Inc, 5795 S.Sandhill Rd, STE F,

[android-developers] Reg: Senior Informatica Developer

2021-05-20 Thread John Urbanesoft
Experience working within an Agile and/or Scrum project management methodology Have a nice Day. Thanks & Regards, John ( Business Development Manager), Phone: (630) 780 - 4905 Fax : (702) 973 - 0973 Email: j...@urbanesoft.com Urbane Soft Technologies Inc, 5795 S.Sandhill Rd, STE F, Las

[android-developers] Reg : Sr. Software Engineer

2021-05-21 Thread John Urbanesoft
documentation è Has good communication skills and is eager to work on an awesome team Have a nice Day. Thanks & Regards, John ( Business Development Manager), Phone: (630) 780 - 4905 Fax : (702) 973 - 0973 Email: j...@urbanesoft.com Urbane Soft Technologies Inc, 5795 S.Sandhill Rd, STE F,

[android-developers] Reg : Network Engineer

2021-05-21 Thread John Urbanesoft
certification è Experience in new build configuration on IOS, IOS-XR, Nokia NOS è Cloud computing / Whitebox è Ethernet/L1/ L2 / L3 Troubleshooting Have a nice Day. Thanks & Regards, John ( Business Development Manager), Phone: (630) 780 - 4905 Fax : (702) 973 - 0973 Email: j...@urbanesoft

[android-developers] Reg : Senior Informatica Developer

2021-05-21 Thread John Urbanesoft
Experience working within an Agile and/or Scrum project management methodology Have a nice Day. Thanks & Regards, John ( Business Development Manager), Phone: (630) 780 - 4905 Fax : (702) 973 - 0973 Email: j...@urbanesoft.com Urbane Soft Technologies Inc, 5795 S.Sandhill Rd, STE F, Las

[android-developers] Reg : Microservices Developer

2021-05-21 Thread John Urbanesoft
Day. Thanks & Regards, John ( Business Development Manager), Phone: (630) 780 - 4905 Fax : (702) 973 - 0973 Email: j...@urbanesoft.com Urbane Soft Technologies Inc, 5795 S.Sandhill Rd, STE F, Las Vegas, Nevada -89120 USA www.urbanesoft.com ABOUT URBANE SOFT TECHNOLO

[android-developers] Reg : Senior Informatica Developer

2021-05-24 Thread John Urbanesoft
Experience working within an Agile and/or Scrum project management methodology Have a nice Day. Thanks & Regards, John ( Business Development Manager), Phone: (630) 780 - 4905 Fax : (702) 973 - 0973 Email: j...@urbanesoft.com Urbane Soft Technologies Inc, 5795 S.Sandhill Rd, STE F, Las

<    1   2   3   4   5   6   7   8   9   10   >