[android-developers] Re: Multi Touch support in Android

2009-03-30 Thread Pratap



Thanks Rajesh for your inputs.
Can somebody from Google provide an official stand on multi finger
touch capability on android.

Regards
--~--~-~--~~~---~--~~
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Retrieving street info as in Google maps application

2009-03-30 Thread Pratap

Hi
I am developing a simple maps application that displays map in street
mode.
I want to display street name and a snapshot when a particular street
is selected.
Is it possible to get the street snapshot as is displayed by the
native maps application using android APIs.

Also on native maps app when we select the street a 3D view of the
street is shown.
How can I add this 3D street view to my app.

Kindly provide your suggestions.


--~--~-~--~~~---~--~~
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Retrieving street info as in Google maps application

2009-04-02 Thread Pratap

anyone with any idea on the above issue?

On Mar 31, 9:35 am, Pratap  wrote:
> Hi
> I am developing a simple maps application that displays map instreet
> mode.
> I want to displaystreetname and a snapshot when a particularstreet
> is selected.
> Is it possible to get thestreetsnapshot as is displayed by the
> native maps application usingandroidAPIs.
>
> Also on native maps app when we select thestreeta 3D view of thestreetis 
> shown.
> How can I add this 3Dstreetview to my app.
>
> Kindly provide your suggestions.
--~--~-~--~~~---~--~~
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Retrieving street info as in Google maps application

2009-04-05 Thread Pratap

can somebody from google provide a official statement on the issue
mentioned above??

On Apr 3, 11:11 am, Pratap  wrote:
> anyone with any idea on the above issue?
>
> On Mar 31, 9:35 am, Pratap  wrote:
>
> > Hi
> > I am developing a simple maps application that displays map instreet
> > mode.
> > I want to displaystreetname and a snapshot when a particularstreet
> > is selected.
> > Is it possible to get thestreetsnapshot as is displayed by the
> > native maps application usingandroidAPIs.
>
> > Also on native maps app when we select thestreeta 3D view of thestreetis 
> > shown.
> > How can I add this 3Dstreetview to my app.
>
> > Kindly provide your suggestions.
--~--~-~--~~~---~--~~
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] IOException in HttpClient: unknown error while trying to access run simple MAP application

2008-12-11 Thread Pratap

Hi
I am trying to run a simple MAP application.The source code is as
below:

package test.test;

import android.os.Bundle;
import android.view.KeyEvent;

import com.google.android.maps.GeoPoint;
import com.google.android.maps.MapActivity;
import com.google.android.maps.MapController;
import com.google.android.maps.MapView;

public class testapp extends MapActivity
{
private MapView myMapView;

@Override
protected boolean isRouteDisplayed()
{
// TODO Auto-generated method stub
return false;
}

@Override
public void onCreate(Bundle icicle)
{
super.onCreate(icicle);
myMapView = new MapView(this, "");

// Lets start at the Statue of Liberty
// I grabbed the data from Google-Maps
GeoPoint p = new GeoPoint((int) (40.689213 * 100), (int)
(-74.044558 * 100));
// Get the controller, that is used for translation and
zooming
MapController mc = myMapView.getController();
// Translate to the Statue of Liberty
mc.animateTo(p);
// Zoom Very close
// mc..zoomTo(21);
// Make myMapView the exilicit view of this app
setContentView(myMapView);
// Enable Sattelite-Mode, so we will se the
// Statue of liberty instantly on the screen
myMapView.setSatellite(true);
}

public boolean onKeyDown(int keyCode, KeyEvent event)
{
if (keyCode == KeyEvent.KEYCODE_I)
{
// Zooming In
// myMapView.getController().zoomTo(myMapView.getZoomLevel
() + 1);
return true;
}
else
if (keyCode == KeyEvent.KEYCODE_O)
{
// Zooming Out
// myMapView.getController().zoomTo
(myMapView.getZoomLevel() -
// 1);
return true;
}
else
if (keyCode == KeyEvent.KEYCODE_S)
{
// Switch to satellite view
myMapView.setSatellite(true);
return true;
}
else
if (keyCode == KeyEvent.KEYCODE_T)
{
// Switch on traffic overlays
myMapView.setTraffic(true);
return true;
}
return false;
}

}


The application runs and a blank map screen is displayed.
The logcat output is
E/OSNetworkSystem(15783): unknown socket error -1
W/AndroidHttpConnectionFactory(15783): IOException in HttpClient:
unknown error
D/dalvikvm(   57): GC freed 7089 objects / 342672 bytes in 243ms
E/OSNetworkSystem(15783): unknown socket error -1
W/AndroidHttpConnectionFactory(15783): IOException in HttpClient:
unknown error
E/OSNetworkSystem(15783): unknown socket error -1
W/AndroidHttpConnectionFactory(15783): IOException in HttpClient:
unknown error
E/OSNetworkSystem(15783): unknown socket error -1
W/AndroidHttpConnectionFactory(15783): IOException in HttpClient:
unknown error
E/OSNetworkSystem(15783): unknown socket error -1
W/AndroidHttpConnectionFactory(15783): IOException in HttpClient:
unknown error
E/OSNetworkSystem(15783): unknown socket error -1
W/AndroidHttpConnectionFactory(15783): IOException in HttpClient:
unknown error
E/OSNetworkSystem(15783): unknown socket error -1
W/AndroidHttpConnectionFactory(15783): IOException in HttpClient:
unknown error
E/OSNetworkSystem(15783): unknown socket error -1
W/AndroidHttpConnectionFactory(15783): IOException in HttpClient:
unknown error
E/OSNetworkSystem(15783): unknown socket error -1
W/AndroidHttpConnectionFactory(15783): IOException in HttpClient:
unknown error
E/OSNetworkSystem(15783): unknown socket error -1
W/AndroidHttpConnectionFactory(15783): IOException in HttpClient:
unknown error
D/dalvikvm(15783): GC freed 10468 objects / 533944 bytes in 316ms
E/OSNetworkSystem(15783): unknown socket error -1
W/AndroidHttpConnectionFactory(15783): IOException in HttpClient:
unknown error
E/OSNetworkSystem(15783): unknown socket error -1
W/AndroidHttpConnectionFactory(15783): IOException in HttpClient:
unknown error
E/OSNetworkSystem(15783): unknown socket error -1
W/AndroidHttpConnectionFactory(15783): IOException in HttpClient:
unknown error

.
I am sitting behind a proxy and have already set the proxy in the
settings db.

Kindly provide help and inputs on the issue.

Thanks
Ajit

--~--~-~--~~~---~--~~
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] java.net.SocketException: The operation timed out

2009-02-25 Thread Pratap

02-25 10:11:53.839: WARN/System.err(211): java.net.SocketException:
The operation timed out
02-25 10:11:53.940: WARN/System.err(211): at
org.apache.harmony.luni.platform.OSNetworkSystem.connectSocketImpl
(Native Method)
02-25 10:11:53.940: WARN/System.err(211): at
org.apache.harmony.luni.platform.OSNetworkSystem.connect
(OSNetworkSystem.java:119)
02-25 10:11:53.940: WARN/System.err(211): at
org.apache.harmony.luni.net.PlainSocketImpl.connect
(PlainSocketImpl.java:227)
02-25 10:11:53.940: WARN/System.err(211): at
org.apache.harmony.luni.net.PlainSocketImpl.connect
(PlainSocketImpl.java:521)
02-25 10:11:53.940: WARN/System.err(211): at
java.net.Socket.connect(Socket.java:945)
02-25 10:11:53.940: WARN/System.err(211): at
org.apache.http.conn.scheme.PlainSocketFactory.connectSocket
(PlainSocketFactory.java:117)
02-25 10:11:53.940: WARN/System.err(211): at
org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection
(DefaultClientConnectionOperator.java:129)
02-25 10:11:53.950: WARN/System.err(211): at
org.apache.http.impl.conn.AbstractPoolEntry.open
(AbstractPoolEntry.java:164)
02-25 10:11:53.950: WARN/System.err(211): at
org.apache.http.impl.conn.AbstractPooledConnAdapter.open
(AbstractPooledConnAdapter.java:119)
02-25 10:11:53.950: WARN/System.err(211): at
org.apache.http.impl.client.DefaultRequestDirector.execute
(DefaultRequestDirector.java:348)
02-25 10:11:53.950: WARN/System.err(211): at
org.apache.http.impl.client.AbstractHttpClient.execute
(AbstractHttpClient.java:555)
02-25 10:11:53.950: WARN/System.err(211): at
org.apache.http.impl.client.AbstractHttpClient.execute
(AbstractHttpClient.java:487)
02-25 10:11:53.950: WARN/System.err(211): at
org.apache.http.impl.client.AbstractHttpClient.execute
(AbstractHttpClient.java:465)
02-25 10:11:53.950: WARN/System.err(211): at
com.uttara.android.RegisterActivity.registeraction
(RegisterActivity.java:95)
02-25 10:11:53.950: WARN/System.err(211): at
com.uttara.android.RegisterActivity.checkInput(RegisterActivity.java:
129)
02-25 10:11:53.950: WARN/System.err(211): at
com.uttara.android.RegisterActivity$1.onClick(RegisterActivity.java:
54)
02-25 10:11:53.950: WARN/System.err(211): at
android.view.View.performClick(View.java:2109)
02-25 10:11:53.950: WARN/System.err(211): at
android.view.View.onTouchEvent(View.java:3523)
02-25 10:11:53.950: WARN/System.err(211): at
android.widget.TextView.onTouchEvent(TextView.java:4410)
02-25 10:11:53.950: WARN/System.err(211): at
android.view.View.dispatchTouchEvent(View.java:3178)
02-25 10:11:53.950: WARN/System.err(211): at
android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:857)
02-25 10:11:53.950: WARN/System.err(211): at
android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:857)
02-25 10:11:53.950: WARN/System.err(211): at
android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:857)
02-25 10:11:53.950: WARN/System.err(211): at
android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:857)
02-25 10:11:53.950: WARN/System.err(211): at
android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:857)
02-25 10:11:53.950: WARN/System.err(211): at
android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:857)
02-25 10:11:53.950: WARN/System.err(211): at
com.android.internal.policy.impl.PhoneWindow
$DecorView.superDispatchTouchEvent(PhoneWindow.java:1561)
02-25 10:11:53.950: WARN/System.err(211): at
com.android.internal.policy.impl.PhoneWindow.superDispatchTouchEvent
(PhoneWindow.java:1085)
02-25 10:11:53.950: WARN/System.err(211): at
android.app.Activity.dispatchTouchEvent(Activity.java:1873)
02-25 10:11:53.960: WARN/System.err(211): at
com.android.internal.policy.impl.PhoneWindow
$DecorView.dispatchTouchEvent(PhoneWindow.java:1545)
02-25 10:11:53.960: WARN/System.err(211): at
android.view.ViewRoot.handleMessage(ViewRoot.java:1140)
02-25 10:11:53.960: WARN/System.err(211): at
android.os.Handler.dispatchMessage(Handler.java:88)
02-25 10:11:53.960: WARN/System.err(211): at android.os.Looper.loop
(Looper.java:123)
02-25 10:11:53.960: WARN/System.err(211): at
android.app.ActivityThread.main(ActivityThread.java:3742)
02-25 10:11:53.960: WARN/System.err(211): at
java.lang.reflect.Method.invokeNative(Native Method)
02-25 10:11:53.960: WARN/System.err(211): at
java.lang.reflect.Method.invoke(Method.java:515)
02-25 10:11:53.960: WARN/System.err(211): at
com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run
(ZygoteInit.java:739)
02-25 10:11:53.960: WARN/System.err(211): at
com.android.internal.os.ZygoteInit.main(ZygoteInit.java:497)
02-25 10:11:53.960: WARN/System.err(211): at
dalvik.system.NativeStart.main(Native Method)
02-25 10:11:53.960: INFO/System.out(211): Registration failed
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send ema

[android-developers] java.net.SocketException: The operation timed out............not behind proxy

2009-02-25 Thread Pratap

I'm developing an app which needs to connect to the internet, but when
i send a request using DefaultHtpClient.execute() method it takes 2-3
minutes and then the stacktrace says

java.net.SocketException:operation timed out

does anybody knos how to solve the problem...reply as soon as
posible

here is the stack trace...

02-25 10:11:53.839: WARN/System.err(211): java.net.SocketException:
The operation timed out
02-25 10:11:53.940: WARN/System.err(211): at
org.apache.harmony.luni.platform.OSNetworkSystem.connectSocketImpl
(Native Method)
02-25 10:11:53.940: WARN/System.err(211): at
org.apache.harmony.luni.platform.OSNetworkSystem.connect
(OSNetworkSystem.java:119)
02-25 10:11:53.940: WARN/System.err(211): at
org.apache.harmony.luni.net.PlainSocketImpl.connect
(PlainSocketImpl.java:227)
02-25 10:11:53.940: WARN/System.err(211): at
org.apache.harmony.luni.net.PlainSocketImpl.connect
(PlainSocketImpl.java:521)
02-25 10:11:53.940: WARN/System.err(211): at
java.net.Socket.connect(Socket.java:945)
02-25 10:11:53.940: WARN/System.err(211): at
org.apache.http.conn.scheme.PlainSocketFactory.connectSocket
(PlainSocketFactory.java:117)
02-25 10:11:53.940: WARN/System.err(211): at
org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection
(DefaultClientConnectionOperator.java:129)
02-25 10:11:53.950: WARN/System.err(211): at
org.apache.http.impl.conn.AbstractPoolEntry.open
(AbstractPoolEntry.java:164)
02-25 10:11:53.950: WARN/System.err(211): at
org.apache.http.impl.conn.AbstractPooledConnAdapter.open
(AbstractPooledConnAdapter.java:119)
02-25 10:11:53.950: WARN/System.err(211): at
org.apache.http.impl.client.DefaultRequestDirector.execute
(DefaultRequestDirector.java:348)
02-25 10:11:53.950: WARN/System.err(211): at
org.apache.http.impl.client.AbstractHttpClient.execute
(AbstractHttpClient.java:555)
02-25 10:11:53.950: WARN/System.err(211): at
org.apache.http.impl.client.AbstractHttpClient.execute
(AbstractHttpClient.java:487)
02-25 10:11:53.950: WARN/System.err(211): at
org.apache.http.impl.client.AbstractHttpClient.execute
(AbstractHttpClient.java:465)
02-25 10:11:53.950: WARN/System.err(211): at
com.uttara.android.RegisterActivity.registeraction
(RegisterActivity.java:95)
02-25 10:11:53.950: WARN/System.err(211): at
com.uttara.android.RegisterActivity.checkInput(RegisterActivity.java:
129)
02-25 10:11:53.950: WARN/System.err(211): at
com.uttara.android.RegisterActivity$1.onClick(RegisterActivity.java:
54)
02-25 10:11:53.950: WARN/System.err(211): at
android.view.View.performClick(View.java:2109)
02-25 10:11:53.950: WARN/System.err(211): at
android.view.View.onTouchEvent(View.java:3523)
02-25 10:11:53.950: WARN/System.err(211): at
android.widget.TextView.onTouchEvent(TextView.java:4410)
02-25 10:11:53.950: WARN/System.err(211): at
android.view.View.dispatchTouchEvent(View.java:3178)
02-25 10:11:53.950: WARN/System.err(211): at
android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:857)
02-25 10:11:53.950: WARN/System.err(211): at
android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:857)
02-25 10:11:53.950: WARN/System.err(211): at
android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:857)
02-25 10:11:53.950: WARN/System.err(211): at
android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:857)
02-25 10:11:53.950: WARN/System.err(211): at
android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:857)
02-25 10:11:53.950: WARN/System.err(211): at
android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:857)
02-25 10:11:53.950: WARN/System.err(211): at
com.android.internal.policy.impl.PhoneWindow
$DecorView.superDispatchTouchEvent(PhoneWindow.java:1561)
02-25 10:11:53.950: WARN/System.err(211): at
com.android.internal.policy.impl.PhoneWindow.superDispatchTouchEvent
(PhoneWindow.java:1085)
02-25 10:11:53.950: WARN/System.err(211): at
android.app.Activity.dispatchTouchEvent(Activity.java:1873)
02-25 10:11:53.960: WARN/System.err(211): at
com.android.internal.policy.impl.PhoneWindow
$DecorView.dispatchTouchEvent(PhoneWindow.java:1545)
02-25 10:11:53.960: WARN/System.err(211): at
android.view.ViewRoot.handleMessage(ViewRoot.java:1140)
02-25 10:11:53.960: WARN/System.err(211): at
android.os.Handler.dispatchMessage(Handler.java:88)
02-25 10:11:53.960: WARN/System.err(211): at android.os.Looper.loop
(Looper.java:123)
02-25 10:11:53.960: WARN/System.err(211): at
android.app.ActivityThread.main(ActivityThread.java:3742)
02-25 10:11:53.960: WARN/System.err(211): at
java.lang.reflect.Method.invokeNative(Native Method)
02-25 10:11:53.960: WARN/System.err(211): at
java.lang.reflect.Method.invoke(Method.java:515)
02-25 10:11:53.960: WARN/System.err(211): at
com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run
(ZygoteInit.java:739)
02-25 10:11:53.960: WARN/System.err(211): at
com.android.internal.os.ZygoteInit.main(ZygoteInit.java:497)
02-25 10

[android-developers] Re: java.net.SocketException: The operation timed out............not behind proxy

2009-02-26 Thread Pratap

Problem Solved...we need to the following lines of
code.

DefaultHttpClient client = new DefaultHttpClient();

HttpHost proxy = new HttpHost(http_proxy:ip_address, port_no,
protocol);

client.getParams().setParameter
(ConnRoutePNames.DEFAULT_PROXY, proxy);

Pratap wrote:

> I'm developing an app which needs to connect to the internet, but when
> i send a request using DefaultHtpClient.execute() method it takes 2-3
> minutes and then the stacktrace says
>
> java.net.SocketException:operation timed out
>
> does anybody knos how to solve the problem...reply as soon as
> posible
>
> here is the stack trace...
>
> 02-25 10:11:53.839: WARN/System.err(211): java.net.SocketException:
> The operation timed out
> 02-25 10:11:53.940: WARN/System.err(211): at
> org.apache.harmony.luni.platform.OSNetworkSystem.connectSocketImpl
> (Native Method)
> 02-25 10:11:53.940: WARN/System.err(211): at
> org.apache.harmony.luni.platform.OSNetworkSystem.connect
> (OSNetworkSystem.java:119)
> 02-25 10:11:53.940: WARN/System.err(211): at
> org.apache.harmony.luni.net.PlainSocketImpl.connect
> (PlainSocketImpl.java:227)
> 02-25 10:11:53.940: WARN/System.err(211): at
> org.apache.harmony.luni.net.PlainSocketImpl.connect
> (PlainSocketImpl.java:521)
> 02-25 10:11:53.940: WARN/System.err(211): at
> java.net.Socket.connect(Socket.java:945)
> 02-25 10:11:53.940: WARN/System.err(211): at
> org.apache.http.conn.scheme.PlainSocketFactory.connectSocket
> (PlainSocketFactory.java:117)
> 02-25 10:11:53.940: WARN/System.err(211): at
> org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection
> (DefaultClientConnectionOperator.java:129)
> 02-25 10:11:53.950: WARN/System.err(211): at
> org.apache.http.impl.conn.AbstractPoolEntry.open
> (AbstractPoolEntry.java:164)
> 02-25 10:11:53.950: WARN/System.err(211): at
> org.apache.http.impl.conn.AbstractPooledConnAdapter.open
> (AbstractPooledConnAdapter.java:119)
> 02-25 10:11:53.950: WARN/System.err(211): at
> org.apache.http.impl.client.DefaultRequestDirector.execute
> (DefaultRequestDirector.java:348)
> 02-25 10:11:53.950: WARN/System.err(211): at
> org.apache.http.impl.client.AbstractHttpClient.execute
> (AbstractHttpClient.java:555)
> 02-25 10:11:53.950: WARN/System.err(211): at
> org.apache.http.impl.client.AbstractHttpClient.execute
> (AbstractHttpClient.java:487)
> 02-25 10:11:53.950: WARN/System.err(211): at
> org.apache.http.impl.client.AbstractHttpClient.execute
> (AbstractHttpClient.java:465)
> 02-25 10:11:53.950: WARN/System.err(211): at
> com.uttara.android.RegisterActivity.registeraction
> (RegisterActivity.java:95)
> 02-25 10:11:53.950: WARN/System.err(211): at
> com.uttara.android.RegisterActivity.checkInput(RegisterActivity.java:
> 129)
> 02-25 10:11:53.950: WARN/System.err(211): at
> com.uttara.android.RegisterActivity$1.onClick(RegisterActivity.java:
> 54)
> 02-25 10:11:53.950: WARN/System.err(211): at
> android.view.View.performClick(View.java:2109)
> 02-25 10:11:53.950: WARN/System.err(211): at
> android.view.View.onTouchEvent(View.java:3523)
> 02-25 10:11:53.950: WARN/System.err(211): at
> android.widget.TextView.onTouchEvent(TextView.java:4410)
> 02-25 10:11:53.950: WARN/System.err(211): at
> android.view.View.dispatchTouchEvent(View.java:3178)
> 02-25 10:11:53.950: WARN/System.err(211): at
> android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:857)
> 02-25 10:11:53.950: WARN/System.err(211): at
> android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:857)
> 02-25 10:11:53.950: WARN/System.err(211): at
> android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:857)
> 02-25 10:11:53.950: WARN/System.err(211): at
> android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:857)
> 02-25 10:11:53.950: WARN/System.err(211): at
> android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:857)
> 02-25 10:11:53.950: WARN/System.err(211): at
> android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:857)
> 02-25 10:11:53.950: WARN/System.err(211): at
> com.android.internal.policy.impl.PhoneWindow
> $DecorView.superDispatchTouchEvent(PhoneWindow.java:1561)
> 02-25 10:11:53.950: WARN/System.err(211): at
> com.android.internal.policy.impl.PhoneWindow.superDispatchTouchEvent
> (PhoneWindow.java:1085)
> 02-25 10:11:53.950: WARN/System.err(211): at
> android.app.Activity.dispatchTouchEvent(Activity.java:1873)
> 02-25 10:11:53.960: WARN/System.err(211): at
> com.android.internal.policy.impl.PhoneWindow
> $DecorView.dispatchTouchEvent(PhoneWindow.java:1545)
> 02-25 10:11:53.960: WARN/System.err(211): at
> android.view

[android-developers] MapView in ActivityGroup

2009-03-02 Thread Pratap

Hi

I want to create a MapView in an ActivityGroup.
Is that possible?
If yes then how?

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-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Add MapActivity to ActivityGroup

2009-03-03 Thread Pratap

Hi

I want to add a MapActivity in an ActivtyGroup.
As only single level inheritance is supported, my class can either
extend from either MapActivity or
ActivityGroup.
As far as I know MapActivity is not a part of ActivityGroup.
I want an activity to extend MapActivty as well be a part of an
ActivityGroup.
please provide help.

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-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Implementing chat.......................

2009-03-20 Thread Pratap

We are workin on a project, in which we need to provide the facility
of chatting betwn users, for that i  need to poll the server
countiniously to recieve/send the chat msgsDoes anybody
know how to do it..reply as soon as possible


Thanks everyone!
Pratap S.
--~--~-~--~~~---~--~~
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Multi Touch support in Android

2009-03-25 Thread Pratap

Hi

I want to implement multi-touch gesture detection in my application.
Does android provides support multi-touch?
If yes, then how can we simulate multi-touch on emulator.
If no, then is there any hack, which we can use to get multi finger
touch
in our application.

Kindly provide suggestions

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-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Getting the phone number.................

2009-01-15 Thread Pratap

Is there a way to access the phone number programatically..
--~--~-~--~~~---~--~~
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] HTTP Client........SocketException

2009-01-18 Thread Pratap

I'm working behind proxy, whenever i send a req using HTTPclient i
get a SocketExceptionDoes anybody knows how to solve this
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@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Not able to build Browser Source Code on android-sdk-windows-1.0_r1

2009-01-28 Thread Pratap

Hi All

I am trying to build the Browser source code downloaded from the
http://android.git.kernel.org/ site
with android-sdk-windows-1.0_r1.
I am getting a lot of compilation errors and it seems that many
classes are missing in 1.0 which are being used by the Browser.

I am stuck into this and not able to figure a way out.
Let me know if I am missing anything.
Waiting desperately 4 a reply.

TIA
--~--~-~--~~~---~--~~
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Not able to open a website using WebView

2009-02-03 Thread Pratap

Hi
I am trying to open a website using WebView.
I am behind a proxy, but have already configured the settings database
with the proxy values.
When i try to open any internal website like a Tomcat running on my
desktop, it opens up properly.
The problem comes up when i try to open any external website like
www.yahoo.com.
The screen goes white for sometime and then I get message "Web Page
not available".

Also, the native Android browser is able to open all websites
sucessfully.
This seems to be an issue because of proxy, but I am not able to find
any solution.
Please help me as Ihave been stuck on this for quite some time now.
--~--~-~--~~~---~--~~
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Not able to open a website using WebView

2009-02-05 Thread Pratap

Please provide inputs as I am stuck at this.
Give some pointers in the right direction

On Feb 4, 11:58 am, Pratap  wrote:
> Hi
> I am trying to open a website using WebView.
> I am behind a proxy, but have already configured the settings database
> with the proxy values.
> When i try to open any internal website like a Tomcat running on my
> desktop, it opens up properly.
> The problem comes up when i try to open any external website 
> likewww.yahoo.com.
> The screen goes white for sometime and then I get message "Web Page
> not available".
>
> Also, the native Android browser is able to open all websites
> sucessfully.
> This seems to be an issue because of proxy, but I am not able to find
> any solution.
> Please help me as Ihave been stuck on this for quite some time now.
--~--~-~--~~~---~--~~
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Not able to open a website using WebView

2009-02-05 Thread Pratap

Hi
I am trying to open a website using WebView.
I am behind a proxy, but have already configured the settings
database
with the proxy values.
When i try to open any internal website like a Tomcat running on my
desktop, it opens up properly.
The problem comes up when i try to open any external website like
www.yahoo.com.
The screen goes white for sometime and then I get message "Web Page
not available".

Also, the native Android browser is able to open all websites
sucessfully.
This seems to be an issue because of proxy, but I am not able to find
any solution.
Please help me as Ihave been stuck on this for quite some time now.




--~--~-~--~~~---~--~~
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Not able to open a website using WebView

2009-02-05 Thread Pratap

Hi
I am trying to open a website using WebView.
I am behind a proxy, but have already configured the settings
database
with the proxy values.
When i try to open any internal website like a Tomcat running on my
desktop, it opens up properly.
The problem comes up when i try to open any external website like
www.yahoo.com.
The screen goes white for sometime and then I get message "Web Page
not available".

Also, the native Android browser is able to open all websites
sucessfully.
This seems to be an issue because of proxy, but I am not able to find
any solution.
Please help me as Ihave been stuck on this for quite some time now.




--~--~-~--~~~---~--~~
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: custom list view

2009-09-09 Thread Pratap

Hi
You can create your own adapter class for thw list view.In the getView
method you can create your own custom view for the
list item .

On Sep 8, 10:51 am, Sasi Kumar  wrote:
> I need a custom list view.
>
> For reducing the list view font size.
>
> I need a code for that..
>
> can any one help for this.
>
> 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-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: ListView with different types of View's

2009-07-03 Thread Pratap

Hi

You can do the same by extending BaseAdapter and simply override the
methods like getCount, getItem , getView etc,,
The getView method gets called for each List item.You only need to
create and return the list item from here.
Hope this helps
Cheers

On Jul 2, 6:45 pm, ayanir  wrote:
> Hello for all the Android's out there,
>
> I'm trying to make a ListView when every item in that list can be a
> different type of View.
> for example the list could be:
> 1. TextView
> 2. ImageView
> 3. MyCustomView
>
> I understands that in order to make a list I need to use an Adapter.
> the problem is that the Adapter uses a single layout for all of the
> list items, which will not support the different views.
>
> my goal is to make an abstract View list when I can dynamically add
> and removes items in that list (each item is a View or subclass of
> it).
>
> Thanks
> ayanir
--~--~-~--~~~---~--~~
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Stream videos from Youtube

2010-04-08 Thread Pratap
Hi

I am trying to stream videos from you tube on my emulator.
As per the you tube data api documentation I only see rtsp support
from youtube.When I try to use the rtsp url in Media Player, I get an
error in prepare() method and the video does not play.

Going through the API demos media example I came to know that emulator
supports only http based progressive download.
I want to know whether I can stream youtube videos using http on my
android emulator.
Is there any licensed youtube APIs which developers can use?

Any help is appreciated

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en

To unsubscribe, reply using "remove me" as the subject.


[android-developers] Re: NullPointer Exception When Clicking on Map with OverlayItems

2010-05-11 Thread Pratap
Can you post the logcat?

On May 11, 3:59 pm, Nithin  wrote:
> Hi,
>
> I am displaying google map and over that some Overlay items are there.
> In onTap(), I am displaying dialog. Its showing map and the
> overlayItem on top of the map. But if I click anywhere in Map, its
> showing NullPointer exception. Any Idea why this occurs
>
> Nithin
>
> --
> 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 options, visit this group 
> athttp://groups.google.com/group/android-developers?hl=en

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Map panning and zooming too slow.........

2010-01-03 Thread Pratap
I've developed a GPS app in which i record the user roots and show it
on the map...but
Panning around on the map when reviewing my route is painfully slow,
it takes at least 4 or 5 seconds for the map to respond the finger
swipes..

I've overridden the onDraw()  method and drawing the lines to show the
routes..is there any better way to do this so that panning becomes
faster as in "MyTracks"...

Thank you all.
Pratap S.

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: button highlight

2010-07-15 Thread Pratap
Hi

I think the default behaviour of the trackball is to change focus on
all the focusable items.
For any other specific purposes you can override the
onTrackballEvent(MotionEvent event) and get notifications for
trackball motion.
In this method you can definitely change the background of buttons.

I hope this helps :)

On Jul 15, 1:04 pm, hatted  wrote:
> can i use trackball to move around buttons?  then if i am on the
> button, can I change the background of the button just like highlight?

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: button highlight

2010-07-15 Thread Pratap
Hi

I think the default behaviour of the trackball is to change focus on
all the focusable items.
For any other specific purposes you can override the
onTrackballEvent(MotionEvent event) and get notifications for
trackball motion.
In this method you can definitely change the background of buttons.

I hope this helps :)

On Jul 15, 1:04 pm, hatted  wrote:
> can i use trackball to move around buttons?  then if i am on the
> button, can I change the background of the button just like highlight?

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Facing problem in using Accessibility Service of Android

2010-12-06 Thread Pratap
Hi

I have written an accessibility service which is registered for
AccessibilityEvent.TYPES_ALL_MASK for a particular package.

It works fine and I get a callback in
onAccessibilityEvent(AccessibilityEvent event)  every time a change
happens in the registered package.

But, when the device reboots, after that I am not getting the callback
for the first event that is generated by the registered package.
For subsequent events I get proper callbacks in onAccessibilityEvent
but I miss the first event.

Has somebody faced such a problem earlier.
Is this a known issue on Android? I have tried to debug but I am not
able to figure out the root cause.

Even in Settings-> Accessibilty Acessibility is enabled and my
application is also checked.

Any help is appreciated

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Facing problem in using Accessibility Service of Android

2010-12-06 Thread Pratap
Can anybody throw some light on this issue?

On Dec 6, 7:19 pm, Pratap  wrote:
> Hi
>
> I have written an accessibility service which is registered for
> AccessibilityEvent.TYPES_ALL_MASK for a particular package.
>
> It works fine and I get a callback in
> onAccessibilityEvent(AccessibilityEvent event)  every time a change
> happens in the registered package.
>
> But, when the device reboots, after that I am not getting the callback
> for the first event that is generated by the registered package.
> For subsequent events I get proper callbacks in onAccessibilityEvent
> but I miss the first event.
>
> Has somebody faced such a problem earlier.
> Is this a known issue on Android? I have tried to debug but I am not
> able to figure out the root cause.
>
> Even in Settings-> Accessibilty Acessibility is enabled and my
> application is also checked.
>
> Any help is appreciated

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] upgrade

2011-06-11 Thread pratap
Hi,
I want to re-upload my application on android market place. I have
tried but each time, i am getting the error "The apk must be signed
with the same certificates as the previous version". i have tried with
another package name used in application, increased version code and
version name as well, but it is throwing same error. Please let me
know the step-by-step procedure to fix the issue as soon as possible.
it will be very helpful for me.
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-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Android Application - error while opening URL that uses WebRTC in WebView

2019-09-13 Thread Shubham Pratap


I am working on developing an Android application, in which I want to open 
a URL in WebView. Now, if I open a simple URL in WebView (like 
www.google.com) is works just fine. But I want to open a URL which uses 
WebRTC (Web Real-Time Communication) which errs stating: "Looks like you 
are using unsupported browser version". I searched on google.com and found 
that WebRTC starts supporting from Android 5.0 (API level 21) and higher.

My version of Webview is:

using webView.getSettings().getUserAgentString() i get my webview details.


("Mozilla/5.0 (Linux; Android 5.1.1; Nexus 5 Build/LMY48B; wv) 
AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/43.0.2357.65 Mobile 
Safari/537.36");

 

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/9e874232-0810-4b74-a44d-2a25c873848c%40googlegroups.com.


[android-developers] PHP Developer-Atlanta GA|Rate: $40/Hr. C2C

2017-08-03 Thread Bhanu Pratap


*Position:* PHP Developer 
*Location:* Atlanta GA
*Duration:* 3+ Months
*Interview:* Phone with In Person or Skype

*Must Have:*

   - Bachelor's Degree in Computer Science or related field. 
   - 5+ years' experience in *PHP development* *including application 
   maintenance and migration from PHP to .Net and .Net to PHP.* 
   - Designing and building applications using the following language: 
  - *PHP* 
  - *ASP.Net* 
  - Wordpress 
  - XML 
  - CSS 
  - HTML 
  - Bootstrap 
  - .Net 
  - Visual Basic 
  - Web Services 
  - JavaScript 
   - In-depth knowledge of programming for diverse operating systems and 
   platforms using development tools 
   - Experience with Oracle and MySQL databases 
   - Experience developing technical documents (System Design document, 
   System Acceptance Plan and Script Document, Implementation Plan, etc.) and 
   handbooks to accurately represent application design and code 
   - Ability to create high quality source code 
   - Experience with functional testing, non-functional testing, unit 
   testing, and integration testing 
   - Troubleshooting and debugging application experience 
   - Ability to evaluate, manage, customize and maintain Off the Shelf 
   software 
   - Ability to evaluate existing applications to reprogram, update and add 
   new features 
   - Excellent communication 

  *Nice to have:*

   - Application Developer Certification. 
   - Master's Degree. 

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/84f7e989-96c7-4714-8b77-698c289ad4a4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] PeopleSoft Functional Analyst-Manhattan NY-12 Months Sent

2017-08-03 Thread Bhanu Pratap
*Position: *PeopleSoft Functional Analyst
*Location: *Manhattan NY
*Duration: *12 Months

*MUST HAVE:*

   - 10+ years' experience working with multiple versions of PeopleSoft and
   PeopleTools across multiple HCM modules
   - Previous experience as a HCM Techno-Functional Lead for 5+
   implementation and/or upgrade projects
   - 5+ years' experience using PeopleSoft North American Payroll module
   including implementation, design, and customization
   - Working experience and understanding of PeopleSoft HCM applications v
   9.2 and PeopleSoft Tools v 8.54
   - Experience with implementation, design, configuration, and
   customization for PeopleSoft Garnishment, Payroll, and Workers Compensation
   modules
   - Full life-cycle support experience in requirements gathering, fit/gap
   system analysis, design, development, quality assurance, documentation,
   testing, training, production stabilization, and implementation planning
   - Ability to construct application flows for core business processes and
   create function design for application customizations/enhancements
   including interfaces and reports
   - Proficient with SQL and PS/Query for reviewing data, troubleshooting
   and testing/validating source system data
   - Excellent writing skills including experience creating create
   functional specifications, design documents, training materials, test
   scripts, etc.
   - Excellent communication including group/committee presentation and
   working/leading staff and management
   - Proven ability to evaluate configuration options to leverage
   PeopleSoft delivered functionality

*NICE TO HAVE: *

   - Knowledge of Report Distribution Tools such as VISTA Plus, LRS
   products etc.
   - Working with an enterprise wide, large scale implementations
   - Experience working within a matrix environment
   - CA Scheduler Tool

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bUFJgqx5VLMsyOkXGoOkUNNRM2s9kQpAT6v__EDdhF9bg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Scrum Master Consultant-Contract to Hire\Only USC/GC/EAD-GC

2017-08-03 Thread Bhanu Pratap
*C2C Rate: $50.00/Hr.*


*Position:* Scrum Master Consultant

*Location:* Atlanta GA

*Duration:* 3 to 6 Month

*Type of Hire:* Contract to Hire

*Role\Responsibilities\Experience:*

*Essential Duties:*

   - Guiding the team and organization on how to use Agile/Scrum practices
   and values to delight customers.
   - Guiding the team on how to get the most out of self-organization.
   - Assessing the Scrum Maturity of the team and organization and coaching
   the team to higher levels of maturity, at a pace that is sustainable and
   comfortable for the team and organization.
   - Removing impediments or guiding the team to remove impediments by
   finding the right personnel to remove the impediment.
   - Building a trusting and safe environment where problems can be raised
   without fear of blame with an emphasis of healing and problem solving.
   - Facilitating getting the work done without assigning.
   - Facilitating discussion, decision making, and conflict resolution.
   - Facilitating the Scrum Ceremonies ? Sprint Planning, Daily Scrum,
   Sprint Review and Sprint Retrospective.
   - Assisting with internal and external communication, improving
   transparency and radiating information.
   - Supporting and educating the Product Owner, especially with respect to
   grooming and maintaining the product backlog.
   - Providing all support to the team using a servant leadership style
   whenever possible, and leading by example.

*Required Skills/Experience:*

   - First level Scrum Master certification (CSM).
   - Experience playing the Scrum Master role for at least two years,
   diligently applying Scrum principles, practices, and theory.
   - Good skills and knowledge of servant leadership, facilitation,
   situational awareness, conflict resolution, continual improvement,
   empowerment, and increasing transparency.
   - Knowledge of numerous well documented patterns and techniques
   (example: numerous Burn down techniques, numerous Retrospective formats,
   handling bugs, etc).
   - Excellent communication and mentoring skills.

*Preferred Skills/Experience:(Any of these is a plus)*

   - Second level Scrum Master certification (CSP).
   - Knowledge of other Agile approaches: XP, Kanban, Crystal, FDD, etc.
   - Knowledge and/or experience with widely successful Agile techniques:
   User Stories, ATDD, TDD, Continuous Integration, Continuous Testing,
   Pairing, Automated Testing, Agile Games.
   - Applicable knowledge of the technologies used by the team.
   - Previous experience as a team lead.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bU%3DxbH1keHNTiKJ_%2BM7sj-5QgiA%3DYf2D0STb4j9uNjrKw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Scrum Master Consultant-Contract to Hire

2017-08-03 Thread Bhanu Pratap


*Position:* Scrum Master Consultant

*Location:* Atlanta GA

*Duration:* 3 to 6 Month

*Type of Hire:* Contract to Hire

*Role\Responsibilities\Experience:*

*Essential Duties:*

   - Guiding the team and organization on how to use Agile/Scrum practices 
   and values to delight customers.
   - Guiding the team on how to get the most out of self-organization.
   - Assessing the Scrum Maturity of the team and organization and coaching 
   the team to higher levels of maturity, at a pace that is sustainable and 
   comfortable for the team and organization.
   - Removing impediments or guiding the team to remove impediments by 
   finding the right personnel to remove the impediment.
   - Building a trusting and safe environment where problems can be raised 
   without fear of blame with an emphasis of healing and problem solving.
   - Facilitating getting the work done without assigning.
   - Facilitating discussion, decision making, and conflict resolution.
   - Facilitating the Scrum Ceremonies ? Sprint Planning, Daily Scrum, 
   Sprint Review and Sprint Retrospective.
   - Assisting with internal and external communication, improving 
   transparency and radiating information.
   - Supporting and educating the Product Owner, especially with respect to 
   grooming and maintaining the product backlog.
   - Providing all support to the team using a servant leadership style 
   whenever possible, and leading by example.

*Required Skills/Experience:*

   - First level Scrum Master certification (CSM).
   - Experience playing the Scrum Master role for at least two years, 
   diligently applying Scrum principles, practices, and theory.
   - Good skills and knowledge of servant leadership, facilitation, 
   situational awareness, conflict resolution, continual improvement, 
   empowerment, and increasing transparency.
   - Knowledge of numerous well documented patterns and techniques 
   (example: numerous Burn down techniques, numerous Retrospective formats, 
   handling bugs, etc).
   - Excellent communication and mentoring skills.

*Preferred Skills/Experience:(Any of these is a plus)*

   - Second level Scrum Master certification (CSP).
   - Knowledge of other Agile approaches: XP, Kanban, Crystal, FDD, etc.
   - Knowledge and/or experience with widely successful Agile techniques: 
   User Stories, ATDD, TDD, Continuous Integration, Continuous Testing, 
   Pairing, Automated Testing, Agile Games.
   - Applicable knowledge of the technologies used by the team.
   - Previous experience as a team lead.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/898987b4-558f-4fe7-abcd-7d2c60c4fc71%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] MySQL DBA at $45/Hr. on C2C

2017-08-04 Thread Bhanu Pratap
*Position: *MySQL Database Administrator

*Location: *Cleveland OH

*Duration\Mode of hire:* Contract
* Role\Responsibilities\Experience:*

· Strong knowledge and experience in supporting MySQL Database.

· Good team player who can work efficiently with onshore and
offshore folks.

· Experience in  MongoDB  support.

· Candidate should have good communication skill.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bV9jxXwtKxbdpxKX-dFzcBxkFRwBF610iW8T_uN6YtyQw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Cognos TM1 Developer-San Antonio TX|$55 TO $60

2017-08-08 Thread Bhanu Pratap
*Position:* Cognos TM1 Developer

*Location:* San Antonio TX

*Duration:* Contract

*Type of Hire:* Contract

*Role\Responsibilities\Experience:*

1. This is a new program to implement General ledger business process for a
banking client though Cognos TM1.
2. The associate will work as the technical lead for the entire
implementation and will be assisted by a 10-15 member team.
3. Other technologies involved will be Informatica and Teradata.
4. Requirement gathering for General Ledger Process migration  in TM1.
5. Design solution road map for implementation.
6. Detailed level solution design in TM1.
7. Help guide junior developers on TM1.
8. Have an end-to-end view of the data flow across technology layers.
9. Assisting project manager for successful execution of the project.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bUxBbUbwGZLTC8Hpixqxf1emVzJWFFXpkoeq6eEbbD9%3Dg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Android Mobile Developer-Portland OR

2017-08-08 Thread Bhanu Pratap


*Position:* Android Mobile Developer

*Location:* Portland OR

*Duration:* Contract

*Role\Responsibilities\Experience:*

*MUST HAVE:*

· *3 year+ Android development* experience.

· *5 year+ Java Development* experience.

· Experience working with GIT as source repository.

· JUnit-Coding with test cases.

· Experience working in Agile development environment with 
distributed teams.

*NICE TO HAVE:*

· Experience with Atlassian tools: JIRA, BitBucket, Confluence.

· Mobile Web development experience – JavaScript, HTML , Web Views.

· iOS experience.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/4837c37d-21e3-42b5-ba9a-6911e06d1887%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Android Mobile Developer-Portland OR

2017-08-08 Thread Bhanu Pratap
*Position:* Android Mobile Developer

*Location:* Portland OR

*Duration:* Contract

*Role\Responsibilities\Experience:*

*MUST HAVE:*

· *3 year+ Android development* experience.

· *5 year+ Java Development* experience.

· Experience working with GIT as source repository.

· JUnit-Coding with test cases.

· Experience working in Agile development environment with
distributed teams.

*NICE TO HAVE:*

· Experience with Atlassian tools: JIRA, BitBucket, Confluence.

· Mobile Web development experience – JavaScript, HTML , Web Views.

· iOS experience.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bUTVEnMW8V01BQ-QcGDzBm45sWu3mJDyuxCSDnqj%3Dx3FQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Linux System Administrator|Only USC/GC at $45.00/Hr.

2017-08-08 Thread Bhanu Pratap
*Only USC/GC at $45.00/Hr.*



*JOB DESCRIPTION:*

*Position:* Linux System Administrator

*Location:* Washington DC

*Duration:* Contract

*Type of Hire:* Contract

*Role\Responsibilities\Experience:*

· Over 5+ years of System Administrator in managing Red Hat Linux.

· Experience in working with configuring machines and services in
cloud.

· System administration experience in RedHat, operating system.

· Experience in managing mission critical infrastructure, oracle
RAC clusters in RedHat in Linux with proven involvement in operations
required for stringent uptime service levels

· Experience in supporting SAN disks, Volume groups, and file
systems

· Experience in programming using any one of languages like, C,
C++, Python, Ruby etc.

· Experience in configuration management tool Chef.

· Knowledge in the computer algorithms, data structures and
optimization concepts in coding

· Experience in DevOps field.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bWy0XY%3DMSWAFYiB0CNuhC25LY8P0BVErqAOiF63oUd3yw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Cloud Architect|Only GC/USC/ GC-EAD

2017-08-09 Thread Bhanu Pratap
*Only USC/GC/EAD-GC**.*



*JOB DESCRIPTION:*

*Job ID:* 17-10576

*Position:* *Cloud Architect*

*Location:* *Southborough MA*

*Duration:* 4 to 6 Months

*Type of Hire:* Contract

*Role\Responsibilities\Experience:*

*TECHNOLOGY SKILLS:*

· OOPS, design patterns, UML.

· Different Enterprise Architectural Framework.

· Cloud design patterns.

· Understanding RDBMS databases and concept and implementation of
No-SQL databases.

· Agile Methodology.

· DevOps.

· Knowledge of infrastructure is a plus.

*EXPERIENCE AND OTHER SKILLS:*

· 12 to 18 years industry experience including at least 3+ years as
an Architect.

· Expertise on Cloud Platform (AWS, Azure, etc.).

· Experience in .Net or Java enterprise application stack.

· Should have done hands-on development, design and architecture
for multiple clients over the experience years.

· Experience on architecting and designing an end to end solution
on Cloud for a customers.

· Ability to learn quickly, adapt and implement based on the
situational needs.

· Interface with senior management to develop, refine, and execute
the Cloud strategy and roadmap.

· Manage POCs & exploratory projects; to identify, evaluate and
eventually adopt most suitable Cloud model (Public & Private Clouds, IaaS,
PaaS and SaaS) for the customer.

· Lead Architecture reviews to determine if new products and
solutions comply with the agreed enterprise cloud architecture.

· Develop a comprehensive technical architecture to support the
multi-year agenda for cloud adoption.

· Develop and drive programs to ensure the architecture and
associated product solutions are delivered to realize technical and
business benefits.

· Work with other architects to build migration plans encompassing
infrastructure baseline, plans and roadmaps; application migration plans,
requirements and needs; industry leading and evolving trends, techniques,
products and vendors.

· Plan and lead all aspects of Cloud projects such as Cloud
Management solutions, provisioning, inventory management, CMDB, monitoring,
security, backup.

· Establish an Enterprise Cloud strategy, standards and best
practices associated with all aspects Cloud offerings, including:

oSecure and compliant data and messaging egress and ingress.

oFederated authentication and authorization models.

oAutomated workload lifecycle management.

oData and information encryption and security.

oApplication porting, integration and maintenance.

oOn-demand, self-service access to Enterprise Cloud applications,
platforms and offerings.

oOverall cloud management tools, monitoring, alerting, chargeback,
capacity and performance management, and service level objective
definitions.

· Manage and mentor team reporting to him/her and review the work
done by the team.

· Experience of implementing DevOps.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bUwEhkXiiQmjoSbYQQHU%2B0UEWzEG8i6U46AYTa1ke7oqg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Adobe CQ/Marketing Cloud Architect

2017-08-09 Thread Bhanu Pratap
*Position:* Adobe CQ/Marketing Cloud Architect

*Location:* Plano TX

*Duration:* Contract

*Type of Hire:* Contract

*Role\Responsibilities\Experience:*

· Work independently to evaluate a customer’s web architecture and
deliver the appropriate integration solution. This includes, but is not
limited to, evaluating the customers' content management and publishing
processes, web application architecture, security requirements, DNS
configurations, and provide detailed documentation for a custom solution
that satisfies the customers' business and technical requirements.

· Propose technically feasible solutions and work closely with
customers and pre-sales teams to implement customer projects and trials.

· Establish success criteria and act as the single point of contact
for the customer for all technical issues and technical deliverables.

· Identify new product features and additional sales opportunities
during trials and integration and communication of the same to product
development and sales teams.

· 6-10 years of experience in AEM Content Management (CMS), with
over all 12-15 years IT Exp.

· Define best practices to manage performance and scalability of
the content management and content delivery solution.

· Provide inputs and direction to developers on the team for design
and implementation.

· Diagnose and solve technical problems related to content
management implementation.

· Translate customer requirements into technical designs and AEM
specific implementation specifications.

· Design and implement web sites to support multi-site,
multi-channel, multi-lingual delivery environments.

· Experience with Adobe Multi-Site Manager, Adobe Analytics and
Adobe Test & Target are mandatory.

· Designing OSGI bundle, CQ Components, Workflows as per client
requirements.

· Experience in design level documentation of BRD, Technical and
architectural diagrams.

· Good understanding and work experience of Java Frameworks (like
Struts, Spring etc.).

· Exposure to multiple end to end architecture of AEM Projects.

· Performance optimization and scalability in AEM.

· Design Level understanding of AEM Security model with exposure of
SSO.

· Expertise in AEM components like MSM, Mobile, I18N, Tagging,
Translation, Search etc.

· Design experience of Migrating content from one legacy system to
AEM.

· Architectural knowledge of integration of CMS with CRM,
E-commerce or portals.

· Java/J2EE skills and OOPS with proficiency in design patterns.

· Understanding of various Adobe cloud services which can be
integrated with AEM.

· AEMM (AEM Mobile) Knowledge is an added advantage.

· Web service implementation experience.

· Good team player, Excellent communication skills, Result
orientation.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bVs%3DWWaipm%3DDqicuRdWrSoY0WMCO-M9ed5VP4qWPBQozQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Hadoop Infrastructure Administrator-Contract to Hire

2017-08-14 Thread Bhanu Pratap
*ONLY USC/GC/EAD GC*

*Title: *Hadoop Infrastructure Administrator

*Location: *Tampa FL

*Duration:* Contract

*Type of Hire:* Contract to Hire

*Role\Responsibilities\Experience: *We need a seasoned Business Analyst
with the following requirements:

· 5-10 years of experience.

· Install, configure, maintain and monitor versions of
utilities/applications such as Informatica PowerCenter, sFTP, NDM, SSL,
Control-M, Autosys.

· Coordinate with Hardware/DBA teams to perform necessary upgrades
to the operating systems and Oracle DBMS, including researching impact of
patches, security updates, and service packs, including physical hardware
upgrades/migrations.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bXxx0cp%3DAQvoFvo3%3DZoW%2BTd%2BeUx%3Dub8PC1Z9pmM8fdNpA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Data Modeler-Tampa FL-Contract to Hire

2017-08-14 Thread Bhanu Pratap
*ONLY USC/GC/EAD GC*

*Title: *Data Modeler

*Location: *Tampa FL

*Type of Hire:* Contract to Hire

*Role\Responsibilities\Experience:*

· 8+ year of total IT Experience.

· Good Understanding of Inmon and Kimball Modeling concepts.

· Understanding of FACT, Dimension.

· Strong in SQL queries/ Stored procedure design.

· In depth Data modeling along with strong Java / ETL skills.

· One of either Java or ETL expertise needed.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bXjHJEvzqUXe9kMnevVJV7f%2B%2B_Nyz3aXCt%3D44SPLM%3DUAQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] UX Designer-Malvern PA-$50.00/Hr. on C2C

2017-08-15 Thread Bhanu Pratap
*Position: *UCD/UX Designer

*Location: *Malvern PA

*Duration:* Contract
* Type of Hire: *Contract

*Duties and Responsibilities:*

· As an experience Innovator you will create user-centered design
solutions that emphasize ease of use, employ best-in-class interaction
design, and improve the customer experience. You will work throughout all
phases of the design process such as conceptual design, storyboards,
persona/scenario development, user task/interaction flow diagrams,
information hierarchy, wireframes and prototypes.

· As a Customer Advocate you will help identify user research needs
and participate in immersive user research, concept testing, and usability
testing. You will help facilitate the discovery process to ensure that both
problem statements and solution ideas are driven from customer insights.
You will continuously seek and integrate user feedback and test results to
optimize solutions.

· As a Key Influencer you will partner with product, business and
engineering teams to plan and develop effective customer experiences. You
will draw on your mastery of user-centered design methodologies to
influence product teams and arrive at the solution that best meets the
needs of our customers.

· As a Big-Picture Strategist You will collaborate across multiple
teams to ensure continuity across all customer touch points. You will
integrate multiple considerations including business goals, interaction
best practices, brand standards, and technology constraints.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bVBnpgwCpYR2XkkFp96MsXEdffBk5LuJwHQhY__6Y20-g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] ASP.NET Developer with Oracle Forms-Madison, WI

2017-08-17 Thread Bhanu Pratap
*Customer:* State of WI (Wisconsin Department of Natural Resources)

*Job Title:* ASP.NET Developer

*Location:* Madison, WI

*Duration:* 24 Months

*Type of Hire:* Contract

*C2C Rate: *$60.00/Hourly All Inclusive


*CORE REQUIRED SKILLS:*

Oracle Forms 10g forms and reports.

Oracle 10g (Oracle DB and tool set).

Oracle Fusion Middleware.

Classic ASP to ASP.Net Conversion Experience.

Ability to navigate and query a relational database (Oracle) to both
develop reports and to perform data validation using common tools including
SQL/PLSQL .

Database -- Oracle 11g.

Database -- Oracle -- PL/SQL.

Oracle SQL.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bUu5%2BJ%3DsEdCnG1yoOJwK%3Ddz_3y96kgVf7_3gDrsLphukw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] IT Security & Compliance Consultant-Collierville TN

2017-08-21 Thread Bhanu Pratap
*Only USC/GC/EAD-GC*

*Position*: IT Security & Compliance Consultant
*Location*: Collierville TN
*Position Type*: Contract

*Description*:

   - Daily responsibilities will include management and support of Cloud
   Federation system, Web Single Sign-On systems to meet business requirements
   and FedEx security criteria.  Identify security gaps in IAM space if there
   is any, and develop roadmap/solutions that fit with company/customer
   systems architecture standards. In addition, candidates will be responsible
   for completing projects related to authentication service in general, and
   becoming part of an on-call rotation supporting the security infrastructure.
   - Experience managing an enterprise infrastructure.  Desired skill set
   include but not limited to:
   - Proficient of Unix/Linux system, shell scripting, PHP/Python, and SQL.
   - Knowledge of J2EE, WebLogic and Web service is a plus.
   - Experience with SSO (Single Sign On) Federation products using SAML
   2.0 and Oath Technology, Products such as Oracle IAM federation, Microsoft
   ADFS or PingFederate.
   - Experience with multi factor authentication.
   - Experience integrating directories for access management and SSO.
   - Experience in troubleshooting of complex enterprise-architected
   systems on multiple platforms.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bU7WbptwbcJap_Ud%2BwKf5gyxrhNGodnUttTy5ta3QEbPg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] SAP Security & GRC Consultant-Chicago IL-Contract Job

2017-08-21 Thread Bhanu Pratap
*Position*: SAP Security & GRC Consultant
*Location*: Chicago IL
*Duration: *Contract

*Position Type*: Contract
*Description*:

   - Excellent knowledge of SAP Security – User Management and Role
   Management across the different modules.
   - Expert knowledge in the ARM, ARA and EAM component of GRC AC along
   with expert hands on experience.
   - Good Understanding of SAP System Landscape and integration between SAP
   modules
   - Should have experience in working in support environment - time bound
   (SLA based) incident resolutions.
   - Comprehensive Experience of Impact and gap analysis & Corrective
   action plans to support priority tickets.
   - Knowledge of Change Control processes, testing and release
   documentation.
   - Usage of testing and support tools like HPQC ALM, Remedy and SAP
   Solution Manager–CHARM.
   - Collaborate with team members to find solutions for complex problems
   and promote continuous improvement on services.
   - Ability to deliver high profile activities to tight timescales.
   - Ability to multi-task and work on a 24/7 support rotation.
   - Capable of taking ownership of tasks from beginning to end.
   - Should be an expert in performing SAP Security related activities like
   User Management, Role Management.
   - Must have a strong understanding of the GRC 10.1 AC components Access
   Risk Analysis, Access Request Management and Emergency Access Management
   and be an expert with Hands-on in GRC administration activities.
   - Must be an expert in understanding the requirements and performing
   Role Design Changes.
   - Should have experience working on various Audit and compliance reports
   in Security and GRC.
   - Knowledge on handling User Access reviews and Role Approver Reviews.
   - Comprehensive Experience of Impact and gap analysis & Corrective
   action plans to support priority tickets for the End users.
   - Must be comfortable and experienced in Training the end users and
   preparing end user training material¿ Understand and evaluate the Security
   changes in the business requirements, and Create Technical Security design
   documents.
   - Knowledge of Change Control processes, testing and release
   documentation.
   - Collaborate with team members to find solutions for complex problems
   and promote continuous improvement on services.
   - Some flexibility in working hours is required.
   - Strong analytical and problem-solving skills.
   - Must be able to work on multiple simultaneous tasks with limited
   supervision.
   - Quick learner, motivated self-starter.
   - Excellent customer service, interpersonal, communication and team
   collaboration skills.
   - Able to understand and adhere to change management procedures and
   internal guidelines.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bXZDOjV5oH%2Bw7ixRwetd7H05xvHRdsqXAvU7vrYH0d9kw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Siebel Functional Consultant-Lincolnshire IL-Contract Job

2017-08-22 Thread Bhanu Pratap
*Position:* Siebel Functional Consultant

*Location:* Lincolnshire IL

*Duration:* Contract

*Position Type:* Contract

*Required Skills\Experience: *

· Customer Order Management, Siebel Warranty Management.

· Proficient in Siebel Order entry and Contract management
processes.

· Able to gather and interpret requirements right through Product
inception, Customer onboarding, Order booking & fulfillment, Entitlement
and Invoicing processes.

· Ability to drive meetings with varied business teams like Product
Management, Sales and Channel Partners, Order entry, Services and Support
teams etc.

· Documenting the end-end process flow for software license
management of Enterprise level Product Lines, Packaging and Distribution.

· Ability to generate process flow diagrams and business
configuration documents.

· Ability to define the use cases/data model, business and
functional requirements documentation for monetization of software items.

· Participate in technical design and development review meetings
to validate the solution and implementation work completed by development
partners.

· Work closely with Solution Architects and/or Implementation
Managers to ensure appropriate follow-up of identifying client needs and
follow-up activities.

· Provide Implementation Managers and/or clients with updates to
priorities, project schedules, project plans, revenue reporting metrics,
etc.

· Setup and configurations in software Products Licensing
Management system Good presentation skills for business readout and
articulating future roadmap.
Good written communication and ability to document detailed functional,
non-functional requirements, business process workflow diagrams, data model
for the scope base lined and signed-off by business.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bWwOTOZSOU--Xr1yMazOLYVbb72N_b%2B9c4ZZQGSQMuyXg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] BI Tester with Cognos and Tableau Experience

2017-08-22 Thread Bhanu Pratap
*Position:* BI Tester

*Location:* Charlotte NC

*Duration:* 6+ Months Contract

*Required Skills\Experience:*

· Experience testing data development project.

· Ability to use SQL to find data for test comparison.

· Familiar with using reporting tools like Cognos and Tableau in
process of testing data projects.

· Experience with automating tests.

· Experience with cucumber for defining requirements and driving
tests.

· Familiar with formal testing documentation processes such as
scenario matrix.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bU_zXpVVeq4F-MqTsWqz%2B0-_XCJag%2BG_XcKjpQRiJqZVQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] UNIX Admin-Woonsocket RI-Contract Job

2017-08-22 Thread Bhanu Pratap
*Position:* UNIX Admin

*Location:* Woonsocket RI

*Duration:* Contract

Type of Hire: Contract

*Role\Responsibilities\Skills\Experience:*

Responsibilities:

· 8+ years' professional systems maintenance experience in a UNIX
data center environment (AIX+LINUX+SOLARIS).

· Install software, apply patches, manage file systems, monitor
performance and troubleshoot alerts from monitoring tools.

· Responsible for Unix Systems administration, configuration,
troubleshooting, upgrades and support in heterogeneous server environments
running under various Operating Systems including AIX, Red Hat Linux,
Oracle (Sun) Solaris.

· Experience in Architecture/Design of Linux red hat / Sun /IBM
Server Infrastructure.

· Writing and managing scripts and utilities to automate day to day
systems administration and configuration management tasks.

· System failure analysis and recovery; insuring the consistency
and integrity of file systems.

· Business continuity planning and implementation.

· Hardware/software configuration and management.

· Liaison with vendors/ customer for new hardware / software
install, technology upgrades and troubleshooting.

· Technical support and day to day housekeeping activities.

· Support 500+ servers in a 24x7x365 data center.

· Manage and lead hardware and software migration and upgrade
efforts of varying size and complexity.

· User and account management services.

Technical Skills:

· In-depth knowledge of AIX and Red Hat Linux.

· Knowledge of IBM Virtualization, NIM, HACMP.

· 8+ years' professional systems maintenance experience in a UNIX
data center environment.

· Strong experience with system management tools, logical file
systems, and client/server environments.

· In-depth hardware configuration knowledge.

· Experience in new server builds in AIX / LPAR and RHEL.

· Shell programming experience.

· Network experience {protocols such as TCP/IP and DNS, DHCP}.

· Strong troubleshooting skills.

· Demonstrated initiative, customer orientation and team work
competencies.

· Ability to communicate technical issues with non-technical people.

· Certification in AIX is preferable.

· Exposure in Suse Linux 10.

· Ubuntu and SCO UNIX knowledge will be an addition.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bXATxxvpb16vPJkHofSSSP66PVFjjMa5wAZYJ_sz1iiNQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] SAP Ariba Functional-San Dego CA

2017-08-22 Thread Bhanu Pratap
*Position:* SAP Ariba Functional

*Location:* San Diego CA

*Duration:* Contract

· SAP Ariba.

· Ariba Contracts.

· Resource should be good in ARIBA Contract Management module.

· ARIBA Upstream.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bVTA4GyWZyHFG8e44g3XShQY4pj%2BfUAcRdaYzrdPByuSw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] SAP BO Developer-Mooresville-North Carolina

2017-08-23 Thread Bhanu Pratap
Our client is looking for SAP BO Developer having strong experience within
Banking/Financial Domain. This 6+ months contract is based in
Mooresville-North Carolina.
ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bVTCpmi7irHM8boFg1mWnfbHrAkEyOKCDxds6_r%3DDZuAg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Core Mainframe Tester-Brookfield IL

2017-08-24 Thread Bhanu Pratap
*Position:* Mainframe Tester
*Location:* Brookfield IL
*Duration:* 6+ Months Contract
*Required Skills\Experience:*

   - Mainframe testing project including test planning, test case creation,
   test execution, reports & metrics etc.
   - Coordination with offshore team and project stakeholders.
   - *3 to 4 years Mainframe Testing* experience.
   - *Cobol, DB2, CICS, ISP*F, Client Quality Center, QTP/UFT Data Studio.
   - Microsoft Office Suite, SOAP UI.
   - SOAP/REST experience.

ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bX8UO8ft_vfwAEi_ae11%2BfwcpeGo6fGinPfkcyODVvV7g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Oracle Hyperion Planning Consultant-Chicago IL

2017-08-24 Thread Bhanu Pratap
*Position:* Oracle Hyperion Planning Consultant

*Location:* Chicago IL

*Duration:* Contract

*Position Type:* Contract

*Required Skills\Experience:*

· Strong experience in *Oracle Hyperion Planning 9.3.*

· Well versed with *Essbase 9.3.*

· Ability to understand and Analyze Unix Shell scripts and PERL
Scripts.
ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bVDtApr8mpnmbci1EnM8oEjZWX4OpKtF-GZX_LKyjfx7A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Java JBPM Developer-Boston MA-Contract Job

2017-08-24 Thread Bhanu Pratap
*Job Title:* Java JBPM Developer

*Location:* Boston MA

*Duration:* 6+ Months

*Position Type:* Contract

*Required Skills\Experience:*

· Client is looking for a Well-rounded Senior Developer in core
*JEE* area.

· Messaging, integration mechanisms like soap and rest, socket
communication etc.

· Expertise to decide which integration option is suited in which
condition.

· Hands-on experience in *JBPM* is needed.

· should have greater expertise in building workflow solutions.

· Offshore - onsite Coordination.

· Work hours Flexibility.
ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bWPqNPGKZ36_LmF9yRwC2x58hy6rZpihoNHvqR38Wb-yg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Java Lead with Tibco Experience

2017-08-28 Thread Bhanu Pratap
*Title: *Java Lead 
*Duration: *Contract

*Location*: Malvern PA
*Position Type*: Contract
*Description*:

· Prior experience as tech lead in *Java, Unix/Linux* projects.

· Should have solid experience on Java, UNIX, *Tibco, Oracle and
PL/SQL.*

· Should have solid understanding of the SDLC and Build/Development
processes, continuous integration and continuous deployment tools (ex.
Jenkins, Nexus, Sonar Qube and SVN etc.).

· Good experience in managing parallel development environments,
debugging shell scripts, SQL, analyzing Apache webserver and TC Server logs.

· Financial domain knowledge required, preferably investment and
corporate actions knowledge.

· Work on technical design changes and contributes to
architectural, security and change review boards. Review code and
documentation with objective of maintaining high quality.

· Liaise between business and technical teams and make sure
business team concerns are addresses at most satisfaction.

· Good Leadership and mentoring skills required.

· Mentoring corporate actions team and helping team resolving
issues and educating team on changes introduced as part of organization
level upgrades and restructuring.
ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bWoj5igKJHf8b%3Dzz8sWGscPDzPg2dk47CpnQ4R9Qwm1uA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] ScrumMaster local to New York-Direct Face to Face is Must

2017-08-29 Thread Bhanu Pratap
One of our client is looking for a good Scrum Master Consultant who is
local to New York and ready to attend In-Person Interview.



Please let me know if you have any candidate with below details:

· C2C Rate:

· Current Location:

· Visa Status in USA:

· Notice Period:

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bVFyXWjO1ka27nv0wLQh4z_gb18xkP-g9LOoziTc%3DozMw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Salesforce Developer-New York City NY (Local to New York ready to attend Face to Face)

2017-08-29 Thread Bhanu Pratap
*Position:* Salesforce Developer

*Location:* New York City NY

*Description:*

· We are looking for Salesforce Developer with 6 Years of
Salesforce Development experience.

· Locals are preferred who are ready to attend face to face
interview after telephonic conversations.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bX0zS07%3Dh_pRTN8jfAqR%3DaKNt5Qs5nr3u%2BGGqUzZq4H%2BA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Project Manager with Capital Market Experience-Baltimore MD

2017-08-29 Thread Bhanu Pratap
*Position:* Project Manager

*Location:* Baltimore MD

*Position Type:* Contract

*Description:*

· Client is looking for a *Project manager having 10-12 years of
experience.*

· *2-3 year experience in capital market* domain.

· Local or nearby candidates who can go for In-Person.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bUKu73duCDLv_aLNg%3DgOJ9Hd1JCXpxFh8Boz_s3zmTH0w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Mortgage Business Analyst-Irving TX

2017-08-29 Thread Bhanu Pratap
*Position: Mortgage Business Analyst*

*Location: Irving TX*

*Position Type: Contract*

*Description:*

· Facilitate discovery of complex and varied business requirements
to bring product features to fruition.

· Interact with product managers and other stakeholders in
articulating the business requirements.

· Validate requirements with all stake-holders.

· Interview business leaders, gather and document requirements,
create business cases, evaluate and presenting solutions.

· Participate in and strongly influences the development project
team process providing and collecting information for assigned project to
ensure product requirements and functionality are being met and addressed
with development team.

· Must participate and understand how developers are working on the
project and align customer requirements to make decisions along the way.

· Validate the release against the user stories.

· Create QA test scenarios for the application from scratch using
functional specifications.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bX0Lz31ZobDskaEQ0b2pTL5giNp4ndocq6ixf3PnQHwmg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Windows System Administrator role at Mahwah NJ

2017-08-29 Thread Bhanu Pratap
*Position: Windows System Administrator *
*Location: Mahwah NJ*
*Position Type: Contract*
*MUST-HAVE:*

   - Install, upgrade, support and troubleshoot XP, Windows 7 and Microsoft
   Office 2007 and any other authorized desktop applications.
   - Install, upgrade, support and troubleshoot for printers, computer
   hardware and any other authorized peripheral equipment.
   - Customize desktop hardware to meet user specifications and site
   standards.
   - Troubleshooting Operating system related problems.
   - Troubleshooting all escalated incident from L1 support (1.0 and 1.5).
   - Handling the VIP users effectively and efficiently.
   - User support during OS migration. Effective in handling multiple OS
   including MAC OS.
   - Software deployment using SCCM and manual.
   - Repairing SCCM client on users machine.
   - Printer support including installation, uninstallation &
   troubleshooting issues.
   - Mapping pull printer and standalone printer as per business
   requirement.
   - Record incident resolutions in the Help Desk tool.
   - Installing business applications through SCCM console and checking
   their status in System configuration manager console and SCCM client center.
   - Strong written and spoken communication.
   - Good understanding of ITIL framework.

*GOOD-TO-HAVE:*

   - Hardware knowledge.
   - Vendor Interaction/Coordination.
   - Take ownership and responsibility of queries, issues and problems
   assigned to the Desktop Support Administrator.
   - Responsible for tracking hardware and software inventory.
   - Works with vendor support contacts to resolve technical issues within
   the desktop environment.
   - Understand As-Is landscape and provide day-to-day onsite support as
   per the plan from Project Manager.
   - Escalate issues and involve experts wherever required in order to
   resolve issues as quickly as possible.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bV%2BHwo4g1p0%2BuctKLyinhQbn%2Byezp3JVW4oa01s0zB%2BzA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Senior UI Developer with Polymer, Angular.JS, Bootstrap, React.JS, D3.JS

2017-08-30 Thread Bhanu Pratap
Job Title: Senior UI Developer

Location: Raleigh NC

Position Type: Contract

*Description:*

   - Senior UI Developer with (9+ years).
   - Java scripting-9 Years.
   - HTML5, AJAX, Polymer, Angular.JS, Bootstrap, React.JS, D3.JS.
   - Needs to have good communication, technical design, coding skills with
   self-motivated, learning team players qualities and work independently.

ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bX21HWAon8tUOsvqt-iUqtNSnc9H%2BT%2BU7r9TAhgx4GogA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Java Developer with FileNet or Documentum

2017-08-30 Thread Bhanu Pratap
Title: Java Developer

Location: Parsippany NJ

Job Type: Contract

*Description:*

· *9 to 12 years* of relevant work experience: experience in
large/complex IT architecture environments and experience as Java/J2EE
development on large-scale development projects.

· Hands on experience on *FileNet or Similar Imaging application
such as Documentum.*

· Experience with overall application design, including interfaces
with other applications and systems.

· Experience in directing developers to implement the technical
designs of an application

· Experience in overseeing and reviewing the work of java
developers.

· Experience in creating high-quality Architecture documents
detailing application .architecture, interface architecture, infrastructure
architecture, Security architecture etc.

· Experience in researching the tools & platforms.

· Experience in selecting appropriate tools & platforms for
application components.

· Strong experience writing stored procedures, functions, triggers,
and adhoc queries using PL/SQL.

· Good understanding of UNIX platform.

· Strong problem solving and analytical skills demonstrated by the
ability to assimilate new information, understand complex topics and arrive
at sound analysis and judgment.

· Proven working knowledge of OOPS concept, Java, J2EE, JSP,
Servlet, Tomcat, Spring, Web Services, Oracle and related technologies.

· Strong analysis and design skills, including requirements
analysis, Object Oriented design patterns, and UML.

· Demonstrated knowledge and competence in project management
principles.
ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bXF5eA3Myrf5K5vCwW%2Bzz0cEU%2Bk6X2US2OzUQ6U2WpzqA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Java Developer with FileNet or Documentum

2017-08-31 Thread Bhanu Pratap
Title: Java Developer

Location: Parsippany NJ

Job Type: Contract

*Description:*

· *9 to 12 years* of relevant work experience: experience in
large/complex IT architecture environments and experience as Java/J2EE
development on large-scale development projects.

· Hands on experience on *FileNet or Similar Imaging application
such as Documentum.*

· Experience with overall application design, including interfaces
with other applications and systems.

· Experience in directing developers to implement the technical
designs of an application

· Experience in overseeing and reviewing the work of java
developers.

· Experience in creating high-quality Architecture documents
detailing application .architecture, interface architecture, infrastructure
architecture, Security architecture etc.

· Experience in researching the tools & platforms.

· Experience in selecting appropriate tools & platforms for
application components.

· Strong experience writing stored procedures, functions, triggers,
and adhoc queries using PL/SQL.

· Good understanding of UNIX platform.

· Strong problem solving and analytical skills demonstrated by the
ability to assimilate new information, understand complex topics and arrive
at sound analysis and judgment.

· Proven working knowledge of OOPS concept, Java, J2EE, JSP,
Servlet, Tomcat, Spring, Web Services, Oracle and related technologies.

· Strong analysis and design skills, including requirements
analysis, Object Oriented design patterns, and UML.

· Demonstrated knowledge and competence in project management
principles.
ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bUwMkSr1dPC6qUWLc-JXsrtD1oP0R32zNCvbdfbCb_mpA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] 9 Years SAS Developer/Admin-San Antonio TX

2017-08-31 Thread Bhanu Pratap
Position: SAS Consultant

Location: San Antonio TX

Position Type: Contract

*MUST TO HAVE:*

· 9 years of overall experience in design and development of
applications.

· Experience installing and configuring SAS.

· Installing and configuring SAS.

· Must have experience in Agile Methodology.

· Experience in SAS on Windows and Unix/Linux platforms.

· Experience in installation/configuration of Metadata server
environments.

· Should have prior experience working as tech lead.

· Excellent Oral and Written communication skills.

*PREFERRED TO HAVE:*

· Experience in integration of middleware components and
configuration of SAS/Internet components on various platforms.

· Should be able to work with Pearson requirement team to
clarify/capture the requirement for first few weeks initially.

· Integration of middleware components and configuration of
SAS/Internet components on various platforms.
ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bVai5o1oBerDgk%2BrD3cR_-LnYrUhdQ5B%3Dm6A-89b9J9Kg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Lead Hyperion Essbase Consultant-Roseland NJ

2017-08-31 Thread Bhanu Pratap
Job Title: Lead Hyperion Essbase Consultant

Location: Roseland NJ

Position Type: Contract

*Description:*

· Design, configure, and setup Hyperion installations and
supporting Hyperion applications.

· Administration of Hyperion version 11 servers, databases &
applications including, upgrades, backup and recovery, capacity management,
deployment of production code changes.

· Maintain the production, test and development instances of
supported systems as part of the technology infrastructure team.

· Test and install vendor patches and new releases, following
change-control management.

· Experience with day to day support activities and job monitoring.

· Must have at least 5 years of hands-on Hyperion HFM
Administration experience.

· Experience with Hyperion 11 and migration to higher versions is a
must. Strong report writing Experience with report writing in FRS &
SmartView•

· Experience with Hyperion Planning & Essbase a plus.

· Assist with data/problem/issue resolution, process improvement
and resolving the root cause of problems.

· Experience/Comfortable working in a global environment, dealing
with multiple time zones.

· Maintain HFM Consolidation Rules, metadata and application
performance• Capture metrics and ensure the application environment
performs consistently within defined SLAs. Provide timely and effective
technical support to internal customers to troubleshoot issues and minimize
down time for the end user during the month-end close processes.

· Experience with complex multi-server, multi-application
environments.

· Migration of objects between environments (Dev, Test, Production)
using LCM, or manually for earlier versions.

· In-depth knowledge of the causes and remedies of data & metadata
issues in the Hyperion environment.

· Must be able to exhibit professionalism and business acumen.

· Ability to work in a fast paced dynamic environment with multiple
competing deadlines.

· Must be a team player with the ability to work independently and
be accountable for results.

· Flexibility to work off hours and weekends as business needs
dictate.
ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bV92OiDM4V7yK%3DYzR5wRc3vv4Lrvkt-KPRmNB7F9e1wcw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Cognos TM1 Consultant-Raleigh NC

2017-08-31 Thread Bhanu Pratap
Job Title: Cognos TM1 Consultant

Location: Raleigh NC

Position Type: Contract

*Description:*

· Hands-on experience on *TM1 Architect* for Business Intelligence
and Performance Management-BIPM Project.

· Ability to *Write Complex Turbo Integrator Processes* (import
export, building dimension, cubes), rules etc.

· Model building ability create dimensions, cubes, links setup
element/cube security.

· Hands on experience in *Cognos TM1 Administration *(server
installation, configuration, setup security).

· Experience on building application, creating active forms in
*CAFE/TM1* Perspective.

· Experience in *Performance Modeler 10.1* or higher is additional.

· Excellent communication skill (both verbal and written) with
overseas client handling experience.

· Good to have experience in banking, Financial Planning and
Analysis (FP&A), knowhow of banking metrics etc.
ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bVHpqp%3Dr-Z6X9bAJVRtC7NGGZo0fdYu2Cbm4eieC3yhOg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] C++ Developer role at Raleigh NC

2017-08-31 Thread Bhanu Pratap
Job Title: C++ Developer

Location: Raleigh NC

Position Type: Contract

*Description:*

· 8+ years of experience in *C++ DEVELOPMENT* with strong
fundamentals in *multi-threading,* *Data Structures and OOPS concepts.*

· Very Strong *C++ Fundamentals.*

· Strong *OOPS and Database/SQL knowledge(Sybase/Oracle).*
ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bUNNzd%3DUQyLcs1C74RhPNv0h2%2Bov1o69hLKmn54NW2xMw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] SharePoint Senior Technical Lead-Sunnyvale CA

2017-09-01 Thread Bhanu Pratap
Job Title: SharePoint Senior Technical Lead

Location: Sunnyvale CA

Position Type: Contract

Description:

   - As a SharePoint Senior Technical Lead provide technical leadership to
   team and do the mentorship and coaching.
   - Able to Design, develop, and unit test applications in accordance with
   established standards.
   - Able to analyze and resolve technical and application problems.
   - Follow quality development principles while delivering solutions
   on-time and on-budget and can provide third-level support to business users.
   - Plan and organizes the applications with Business and IT Management
   and able to define systems flow, data usage, and work processes.
   - Experience in Application Design, Architect and Development of the
   software suite using *SharePoint Server 2010 & 2013* and Microsoft .Net.
   - *HLD\LLD* creation and demonstrates solutions by developing
   documentation, flowcharts, layouts, diagrams, charts.
   - Experience in SharePoint-based workflows, Web Parts, App Model and the
   development of custom site using .*NET, JQuery* & Custom database.
   - Awareness about .*NET 3.5\4.0*, jQuery, Client Object Model and
   Service Oriented Architecture.
   - Experience with SharePoint Designer, InfoPath, and Business
   Intelligence dashboards.
   - Experience with SharePoint's application services framework including
   implementation, configuration, and usages of Search, Managed Metadata and
   User Profile Services.
   - Use Visual Studio, SharePoint Web Interface, and SharePoint Designer
   to develop custom solutions with a backend *SQL Server\Oracle database.*
   - Design and Develop master pages, views, forms, templates, external
   lists, external content types, custom lists, web parts, master pages and
   other custom components.
   - Must have excellent written and oral communication skills.

ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bVUcL%3DMDUEqf8VTzH7tmOaGGVwdBjQ%3DGL_qu8K0VSYvpg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] SAS Developer-Wilmington DE-9 Months Contract

2017-09-01 Thread Bhanu Pratap
Job Title: SAS Developer

Duration: 9+ Months Contract

Location: Wilmington DE

*Description:*

   - Conduct detailed data analysis and document it. This involves working
   with SMEs across systems, writing hands on *SQL Queries* and analyzing
   them for needs of specific.
   - Work with Business teams, Model execution team and Quantitative
   modelers to understand data requirements in detail.
   - Analyze functional and non-functional business requirements and
   translate into technical data requirements.
   - Design and develop *data processing techniques in Hadoop Hive/Impala
   environments.*
   - Design and implement solutions for data re-conciliation, data delivery
   as well as data forensics.
   - Implement data technology solutions in the area of master data,
   metadata and reference data.
   - Design and implement data analytics solution using analytics tools
   like dash boarding, reporting.
   - Implement Data Quality solution for Models they are working.
   - Build out metadata and upload on Enterprise Metadata platform.

ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bUnqU6RVGYTtTq03Ype15pmH4n_r6Dc6VbTA%2Bwc7QudOw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] SAP ABAP Consultant-San Diego CA

2017-09-01 Thread Bhanu Pratap
*Experience with WebDynpro, Workflow, ODATA and Fiori is must.*

Job Title: SAP ABAP Consultant

Location: San Diego CA

Duration: 4+ Months Contract

*Description:*

· Experience required: 4 to 6 years with SAP ABAP.

· Code Review, Development Tracking, Client Interactions.

· ABAP Development, Core ABAP, WebDynpro, Workflow, ODATA and Fiori.
ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bULR%3D3rxarn7QzdY2e8JQ0The86Z7UWrc2tvMa8QphPBA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] SAP ABAP Consultant with WebDynpro, Workflow, ODATA and Fiori

2017-09-05 Thread Bhanu Pratap
*Experience with WebDynpro, Workflow, ODATA and Fiori is must.*



Job ID: 5316899

Job Title: SAP ABAP Consultant

Location: San Diego CA

Duration: 4+ Months Contract

*Description:*

· Experience required: 4 to 6 years with SAP ABAP.

· Code Review, Development Tracking, Client Interactions.

· ABAP Development, Core ABAP, WebDynpro, Workflow, ODATA and Fiori.
ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bWBH%3D6DD0aQKfUvoTv901RB94K06L9izvm%2B2s5JLXFZ7g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] SalesForce Developer-Frisco TX

2017-09-05 Thread Bhanu Pratap
Job Title: SalesForce Developer *(8 to 10+ Years)*

Location: Frisco TX

Duration: 5 Months

*Description:*

· Work directly with Business POCs and independently perform
development, testing, implementation and documentation relates to the
SalesForce.com development.

· Develop and maintain visual force, AppExchange, Force.com pages
and integration to other third party solutions.

· Maintain multiple user roles, security, profiles, workflow rules,
etc.

· Support train new end users on the salesforce.com application.

· Participate in cross-functional teams that address strategic
business issues involving CRM and sales operations.

· Effectively communicate technical issues and resolve problems at
all levels.

· Identify SFDC usage problems and craft technical/communication
plans to IT/business teams.

· Primary point of contact for SFDC related work for Business Unit.

· Create technical specifications and process flows for new or
modified systems and processes based on Business needs.

· Recommend changes to ensure continuous business process
optimization.

· Support day to day application incident and Support requests.

*REQUIRED SKILLS:*

· 4+Years of SFDC Experience with focus on Apex, Triggers and
VF Development
with two full cycle SFDC implementations.

· 2+years of Java development experience including solid experience
in HTML, JavaScript, jQuery and CSS.

· Strong Expertise in Sales and Service Cloud.

· Pushes self for results on commitments/deadlines.

· Maintains open, transparent dialogue.

· Proficiency in SFDC development environment including Force.com
IDE, Migration Tools, SOSL, SOQL and Web Services.

· Strong Expertise in Custom Objects, Fields, Validation Rules,
Workflows Approvals, Reports and Dashboard.

· Experience in designing and developing Integration Solution using
Web Service APIs, REST API and data load using Bulk APIs.

· Knowledge of architecting integration Solution between SFDC and
External Systems.

· Salesforce App Builder, SFDC Developer II Certification.

· Lighting Enablement and Aura framework Awareness.

· Exposure to Wave Analytics.

· Knowledge of Agile methodology and sprint based project delivery.

· Functional knowledge of ITSM and ITIL support framework.

· Exposure or familiarity with Conga, eDocuSign and Forseva
AppExchange solutions.
ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bVMzAgS2dRBOOSXGTHhJhXW8yQ3Ud7%2BzeQPJZ%3DKFzHK_A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Data Modeler with FSLDM-Cincinnati, OH-5347789

2017-09-05 Thread Bhanu Pratap
Job Title: Data Modeler

Location: Cincinnati, OH

Position Type: Contract

*Job Roles and Responsibilities:*

· Must have Financial Services Logical Data Model (FSLDM)
experience.

· The Data Modeler will work with the Data Architecture team to
help implement Enterprise Data Platform using the financial data model.

· Develop the logical and Physical model.

· Create a mapping with source systems to Enterprise Data Platform.

· Data Migration Strategy from existing data platforms to
New/Enhanced data platform.

*Experience required:*

· Over all 10+ years of experience in Information Management and
Big Data technologies.

· 5+ years of experience that must include data modeling for
enterprise data warehouses.

· Experience in Bank industry is MUST.

· Knowledge of FSLDM or any other Banking Industry Model.

· Strong Data warehousing architecture experience.

· Strong skills in tools and technologies relevant to enterprise
data management including; conceptual and logical data modeling, physical
database design, data integration.

· Data Modeling (ERD's, Mapping, Metadata, dimensional) using a
modeling tool like ERwin.

· Experience in DB2, Oracle, and Hadoop.

· Experience in DataStage and Talend.

· Experience working with agile methodologies.
ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bVParTzu0H3PFg2tXPUWE3TNPb7AU_k3UarJMEWNGZmtQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] TeamSite Developer-Malvern PA

2017-09-06 Thread Bhanu Pratap
Job Title: TeamSite Developer

Location: Malvern PA

Position Type: Contract

*Must Have:*

· Team Site 8.1 / 7.X.

· Forms API development.

· Good TeamSite Admin.

· Installation.

· Store and branch migration.

· Store maintenance - Backup & disaster Recovery.

· Users and group creations.

· Troubleshooting.

· XSLTs development and TPL development expertise.

· Open Deploy 8.1 / 7.X.

· OD configuration and deployment issues fixes.

· Routed deployment configurations.

· Fan out deployment.

· Workflow Modular.

· Knowledge of WFM and Fixing the WFM issues.

· Unix/Perl/Java Script.

· Advanced Java.

· Information on security and encryption OD.

· Build & Release Process expertise.

· Knowledge of LiveSite is added advantage.

*Nice to Have:*

· Report Center.

· Search.

· DAM Expertise.

· Experience Studio.

· EC2 and S3 Cloud knowledge.
ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bXd2qWSY9MAQFskAfxDTjQ7vMz0ztbHBECUwcmO_7KVfQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] SalesForce Architect-Richmond VA-6 Months

2017-09-11 Thread Bhanu Pratap
Job Title: SalesForce Architect

Location: Richmond VA

Duration: 6 Months

Experience Required: 9 to 14 yrs

Description:

· Serve as a thought leader in determining Salesforce strategy.

· Create and maintain technology strategy and roadmaps for various
business areas.

· Manage the technical aspects of development teams to deliver full
lifecycle SFDC implementations.

· Drive architecture and design technology solutions.

· 5 years of experience implementing solutions with Salesforce.

· Experience implementing http://Salesforce.com in a large-scale
enterprise environment.

· 5+ years of overall development and architecture experience.

· Solid understanding of IT systems including system design, Object
Oriented Design, databases and programming concepts specifically HTML,
browsers, JavaScript, Web Services and AJAX.

· Ability to work with multiple work streams at one time.

· Integration experience within Salesforce space (REST, SOAP and
ESB).
ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bXvggf5qxTA0VOxmVU4CijUfR4o6YASJi%2BsZ-GtibaB8w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] MEAN Stack Developer-Roseland NJ-Contract Job

2017-09-11 Thread Bhanu Pratap
Position: MEAN Stack Developer

Location: Roseland NJ

Position Type: Contract

C2C Rate: $55.00/Hr.


*Responsibilities:*

   - Create full stack applications (MEAN).
   - Migrate Java/J2E applications to Angular & Node.
   - Work in a cross-functional team to deliver a complete user experience.
   - Create Unit and Integration tests to ensure the quality of code.
   - Be responsive to change requests and feature requests .
   - Write code that is cross-platform and cross-device compatible.
   - Ability to wear many hats and learn new technologies quickly.

*Required Experience:*

   - 7-10 years of development experience using Java/J2EE stack.
   - 4-5 years of development experience using MEAN stack.
   - Comfortable with operating within a Linux environment.
   - Previous experience with Bootstrap.
   - MySQL, Oracle and/or Mongo database experience.
   - Detail oriented experience as a Web Developer creating Angular based
   solutions.
   - Ability to work both independently and in collaborative teams to
   communicate design and build ideas effectively.

*Technical Requirements:*

   - Strong Java / J2EE working knowledge.
   - Fluent knowledge of latest HTML/CSS standards and best practices.
   - Working knowledge of JavaScript and Bootstrap.
   - Cross-browser development and troubleshooting.
   - Experience building Responsive websites for web, tablet and mobile
   devices.
   - Able to handle multiple projects and competing deadlines.
   - Good understanding of overall web design including basic usability,
   accessibility, industry standards, architecture, and navigation.
   - Portfolio of work required.
   - Include examples of all areas of interaction design (user flows,
   wireframes, final graphical display).

ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bVeAT%2BEG-RtBmeJ-vKV_gNqiodFP%3D1bN_N1a%2BGSMU68kg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] SAP HANA Consultant-San Jose CA-Contract Job

2017-09-12 Thread Bhanu Pratap
Job Title: SAP HANA Consultant

Location: San Jose, CA

Position Type: Contract

C2C Rate: $60.00/Hr.

Required Skills\Experience:

   - *SAP HANA Modeling* experience.
   - Scripted View expert.
   - Performance tuning experience.
   - Understand the requirement.
   - Develop the code deploy in production and take care of the post
   production issues.

ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bVp%2B1o0_1S%3Dw0jOde9WU5OGtVTPAxs2ABMqZaag%3DJYPLQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Senior Full Stack Java Developer-New Jersey

2017-09-12 Thread Bhanu Pratap
I am looking for two Senior Full Stack Java Developer who are local to New
Jersey and ready for face to face interview with our customer.

This is 100% onsite project and we are only looking for *Green Card and US
Citizen*. I have 2 interview slots for Tomorrow

*Max C2C Rate is $70.00/Hr.*
ᐧ

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bXNF-L75vTFt394WDxmVHNsMg7NraNy2Up%3DK3DMdgu5ww%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Android Developer-Permanent Position-Irving TX

2017-09-14 Thread Bhanu Pratap


Job Title: Android Developer

Location: Irving TX

Position Type: Direct Hire (Permanent Position)

*Who Can Apply for this Role:* If you don’t need visa transfer visa 
sponsorship in future, please feel free to apply.

Qualification and Android Competency:

· *5+ Years of Android experience.*

· Developer with strong analytical and technical ability with hands 
on experience in consumer Mobile app Development using Android.

· Possesses a high degree of technical competency to design and 
develop digital applications using cutting-edge tools and technologies.

· Collaborative working with the client's technology and business 
staff day-to-day.

· Proactive and willing to go above and beyond to satisfy the 
client and deliver on project goals.

· Codes, tests, debugs, implements, and documents complex 
applications.

· Prepares for and actively facilitates hand-off at project 
completion to ensure a smooth transition to the larger organization.

· Extensive experience in Android (i.e., designs new templates, 
tests styles/sheets, fixes bugs.

· Collaborates heavily with core team members (especially UX and 
Design)).

· Integration knowledge and experience with exposed services (e.g. 
REST, SOAP, etc.).

· Familiar with common security and performance pattern (e.g: OATH).

· Good Knowledge of Object Oriented Design.

· Android OO Design Patterns.

· Expertise in Networking, Multithreading, Database management.

· Using backend REST APIs.

· Parsing JSON and XML.

· Some knowledge of other Android Frameworks.

· Level of expertise with Java.

· Ability to create logical data model.

· Interaction paradigm with UI elements.

· App deployment process Google Play.

· App approval process (knowledge of what is the common rejection 
reasons by Google).

· Good communication skills.

· Has experience in working on complex and medium  to large 
projects.

· Person should have good understanding of SDLC and flair to follow 
the processes.

*Key Responsibilities:*

· Get involved and take responsibility in requirement 
gathering/understanding, KT.

· Be proficient/expert in Android technologies, share expertise 
with the team to address project requirements.

· To work proactively and independently to address project 
requirements, and articulate issues/challenges at appropriate time to 
address project delivery risks.

· Providing expertise in technical analysis and solving technical 
issues during project delivery.

· Customer interfacing - understand customer requirements, propose 
technical solutions.

· Experience in Full-Life-Cycle Development of Mobile projects.

· To do code review, test case reviews and ensure code developed 
meets the requirements.

· Good at design/coding/testing/debugging.

· An understanding of the fundamentals in object-oriented 
development and database structures.

· Experience building complex Android Apps that have been 
successfully delivered to customers.

· Exceptional analytical abilities, creativity and attention to 
detail.

· Good organizational and problem solving skills.

· Good team player who is a self-starter and well organized.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/40b3eb7a-24ac-4366-8608-fd457f27890f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] .Net Web Developer-Richmond VA-Contract Job

2017-09-14 Thread Bhanu Pratap
Client: CTS-Cognizant Technologies Solutions

Job Title: Pentaho Developer

Location: New York City, NY or Pittsburgh, PA

Position Type: Contract

*Description:*

· Client is looking for Pentaho Developer with Oracle Background.

· Development, design and requirement analysis.

· Data integration via Pentaho and create ETL's to integrate data
from file to tables.

· Data Warehouse Design and development using Oracle PL/SQL and
Pentaho ETL.

· Performance tuning.

· Business coordination and communicate to stake holders.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bXhifsB%2BTm3abcia86GimhLjxFYa035Nqzc3frBCTcspg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Pentaho Developer-New York City, NY or Pittsburgh, PA

2017-09-14 Thread Bhanu Pratap
Client: CTS-Cognizant Technologies Solutions

Job Title: Pentaho Developer

Location: New York City, NY or Pittsburgh, PA

Position Type: Contract

*Description:*

   - Client is looking for Pentaho Developer with Oracle Background.
   - Development, design and requirement analysis.
   - Data integration via Pentaho and create ETL's to integrate data from
   file to tables.
   - Data Warehouse Design and development using Oracle PL/SQL and Pentaho
   ETL.
   - Performance tuning.
   - Business coordination and communicate to stake holders

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bWfX7C%2BKKzgwTLNEK_DAuFzTBXP%2Bu3%2BdY-anUb9OFw8Fw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] System Analyst with Cisco Enterprise Data Warehouse-EDW Experience Project at San Jose CA

2017-09-18 Thread Bhanu Pratap
Client: TCS

Role: System Analyst

Duration: 12 Months

Location: San Jose, CA

Position Type: Contract

*Job Key Skills:*

· Good Communication & Analytic skills.

· Good in understanding the functional requirement, usability,
clarify the functional requirements from dev. team.

· Cisco Enterprise Data Warehouse-EDW experience is must.

· Experience should be at least 8 to 10 years in business analysis.

· Must have experience with Teradata and ETL.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bXm%3DKLdVw-4vFU5yYhiZzN-emEM%3DJmrrpwos_fhPHbuZQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Adobe Campaign Manager-Bethpage NY

2017-09-19 Thread Bhanu Pratap
Role: Adobe Campaign Manager

Location: Bethpage NY

Position Type: Contract

*Description.*

· Monitoring of Adobe Campaign to provide notice to HelpDesk and
Adobe Customer Care support teams of any issues.

· Coordination of issue resolution, including Adobe Customer Care
ticket creation and tracking, communication of status to Customer,
identification of appropriate Customer and TCS resources for driving
resolution.

· Email program performance oversight.

· Weekly status calls.

· Campaign monitoring of all ad hoc and triggered email deployments.

· Email deployment project oversight and coordination.

· Email program and campaign review.

· Contributes to preparation and presentation of quarterly business
reviews.

· Strong experience in Adobe Campaign Management.

· Good oral/ written Communication skills.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bVyD82%3DQYMsosMic2jBnChqT%3DpA4GcqhnqULTq-Ct8uqA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Senior Data Scientist-Troy MI-12 Month Contract

2017-09-19 Thread Bhanu Pratap
Role: Senior Data Scientist

Location: Troy MI

Duration: 12 Months

*Development Technologies*: Python, R, SQL, Spark, Pandas, scikit-learn
(Machine Learning in Python).

*Purpose and Need:*

· FCA IT Quality Strategy supports data advanced analytics
deliverables for our business partners.

· Data Scientist resources are required to support these
initiatives within the Quality organization.

*Subject Matter Expertise:*

· Data scientists use their data and analytical ability to find and
interpret rich data sources.

· Manage large amounts of data.

· Merge/transform data sources.

· Ensure consistency of datasets.

· Create visualizations to aid in understanding data.

· Build mathematical models using the data.

· Present and communicate the data insights/findings.

*Anticipated Skillsets:*

· University degree in computer science, Bayesian statistics or
related fields.

· Agile Development experience.

· Experience with Time Series, forecasting, machine learning and
deep learning libraries in Python is highly desirable.

· Intellectual curiosity – eagerness to learn new things.

· High ability to Data Wrangling (data munging).

· Experience with unstructured data.

· Understanding of version control–GitHub.

· Ability to effectively visualize and communicate analysis results.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bVMU4-2F9yHSk22Aa3fEstPfsf4H8q7nqgtixaOphrLBA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] SAP FICO Tester-Bellevue, WA

2017-09-20 Thread Bhanu Pratap
Client: TCS

Role: SAP FICO Tester

Position Type: Contract

Location: Bellevue, WA

*Description:*

· 4-8 Years of Testing experience.

· Collections experience mandatory.

· FICO Triad experience mandatory.

· Telecom experience is preferred but not mandatory.

· Enterprise Platform & Solutions: SAP Financial Accounting (FI);
FICO TRIAD Consultant.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bU1RAPqUSUWgyDNf8EpBzFxqW6AcG7_dOKmHr900Jsj9Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] .Net Web Developer-Redmond WA-13 Months Contract Job

2017-09-20 Thread Bhanu Pratap
Client: TCS

Role: Web Developer (Front End Developer)

Location: Redmond, WA

Duration: 13 Months Contract

Position Type: Contract

*Description:*

   - Responsible for overall design, development and team coordination on
   BI systems/website. Communicate standards and defend technology and scoping
   decisions to information technology management and development teams.
   - Participate in Business Requirements and Functional Requirements
   meetings, identify gaps in requirements and drive discussion around
   appropriate solutions and Architecture.
   - Design and code high quality website solutions within a fast paced
   biweekly release cycle. Manage errors gracefully.
   - Document code and work completed.
   - Conduct thorough unit testing of code and document the unit test cases.
   - Conduct appropriate performance testing to ensure all solutions will
   meet SLAs and performance criteria.
   - Provide support as needed throughout Test and User Acceptance Testing
   phases.
   - Create Technical Design Specification documentation that clearly
   articulates the design and code being implemented. Provide client
   communication as appropriate to project.
   - Manage work of other developers. Develop new reports and provide
   technical support for the applications.
   - *8+ years of experience in web based technology*.
   - Knowledge on *RxJS, Redux libraries* are good to have but are very
   much required in the project.
   - *Client Side:* Angular 4, Typescript, HTML 5, CSS 3, JavaScript ES5+
   are must.
   - *Client Side Testing (optional):* Jasmine, Karma, Protractor.
   - *Server Side:* C#, ASP.NET Core Web API, EF Core.
   - *Server Side Testing:* At least one of .net based testing frameworks
   like xUnit, MSTest etc...
   - *Backend:* Sound knowledge in SQL Server querying / modeling.
   - Cloud (optional): Awareness or experience in using Azure capabilities
   like Azure SQL , GRAPH API, Azure Functions, etc.
   - Development Software: Working experience using VSTS GIT, Visual Studio
   2013+.
   - Excellent coding and debugging skill.
   - Experience with change control, source control, disaster recovery and
   backup strategies required.
   - Strong communication skills.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAC%2BR9bVieOh%2B01aYLoWPNiRnrm-yvBHGgXeCKL4k71g-s%2BRy4Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: java.net.SocketException: The operation timed out............not behind proxy

2009-02-25 Thread PRATAP SOLAPUR
Thanks for your suggestion. but its still not workingNow it
says
02-26 00:37:55.890: WARN/System.err(578): java.net.SocketTimeoutException:
Socket is not connected
Do u know any thing abt that.and another thing , the exception s
being thrown only when i try to connect to the server which is on the
netbut not when i connect to a server running on a localhost of
another machine..

On Wed, Feb 25, 2009 at 4:55 PM, dillirao malipeddi  wrote:

>
> if you want to set connection time out use bellow code
>
>  int TIMEOUT_MILLISEC = 1; //=10sec
>  HttpParams my_httpParams = new BasicHttpParams();;
>  HttpConnectionParams.setConnectionTimeout(my_httpParams,
> TIMEOUT_MILLISEC);  //set conn time out
>  HttpConnectionParams.setSoTimeout(my_httpParams, TIMEOUT_MILLISEC);  //
> set socket time out
>  HttpClient httpclient = new DefaultHttpClient(my_httpParams);  //get http
> client with given params
>
>
> ---
>
> Dont do any I/O operations on Main thread
>
> please use another thread to connect to net
>
> the main thread will give force close exception every time if it delays by
> any I/O operations
>
>
>
> On Wed, Feb 25, 2009 at 4:23 PM, Pratap  wrote:
>
>>
>> I'm developing an app which needs to connect to the internet, but when
>> i send a request using DefaultHtpClient.execute() method it takes 2-3
>> minutes and then the stacktrace says
>>
>> java.net.SocketException:operation timed out
>>
>> does anybody knos how to solve the problem...reply as soon as
>> posible
>>
>> here is the stack trace...
>>
>> 02-25 10:11:53.839: WARN/System.err(211): java.net.SocketException:
>> The operation timed out
>> 02-25 10:11:53.940: WARN/System.err(211): at
>> org.apache.harmony.luni.platform.OSNetworkSystem.connectSocketImpl
>> (Native Method)
>> 02-25 10:11:53.940: WARN/System.err(211): at
>> org.apache.harmony.luni.platform.OSNetworkSystem.connect
>> (OSNetworkSystem.java:119)
>> 02-25 10:11:53.940: WARN/System.err(211): at
>> org.apache.harmony.luni.net.PlainSocketImpl.connect
>> (PlainSocketImpl.java:227)
>> 02-25 10:11:53.940: WARN/System.err(211): at
>> org.apache.harmony.luni.net.PlainSocketImpl.connect
>> (PlainSocketImpl.java:521)
>> 02-25 10:11:53.940: WARN/System.err(211): at
>> java.net.Socket.connect(Socket.java:945)
>> 02-25 10:11:53.940: WARN/System.err(211): at
>> org.apache.http.conn.scheme.PlainSocketFactory.connectSocket
>> (PlainSocketFactory.java:117)
>> 02-25 10:11:53.940: WARN/System.err(211): at
>> org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection
>> (DefaultClientConnectionOperator.java:129)
>> 02-25 10:11:53.950: WARN/System.err(211): at
>> org.apache.http.impl.conn.AbstractPoolEntry.open
>> (AbstractPoolEntry.java:164)
>> 02-25 10:11:53.950: WARN/System.err(211): at
>> org.apache.http.impl.conn.AbstractPooledConnAdapter.open
>> (AbstractPooledConnAdapter.java:119)
>> 02-25 10:11:53.950: WARN/System.err(211): at
>> org.apache.http.impl.client.DefaultRequestDirector.execute
>> (DefaultRequestDirector.java:348)
>> 02-25 10:11:53.950: WARN/System.err(211): at
>> org.apache.http.impl.client.AbstractHttpClient.execute
>> (AbstractHttpClient.java:555)
>> 02-25 10:11:53.950: WARN/System.err(211): at
>> org.apache.http.impl.client.AbstractHttpClient.execute
>> (AbstractHttpClient.java:487)
>> 02-25 10:11:53.950: WARN/System.err(211): at
>> org.apache.http.impl.client.AbstractHttpClient.execute
>> (AbstractHttpClient.java:465)
>> 02-25 10:11:53.950: WARN/System.err(211): at
>> com.uttara.android.RegisterActivity.registeraction
>> (RegisterActivity.java:95)
>> 02-25 10:11:53.950: WARN/System.err(211): at
>> com.uttara.android.RegisterActivity.checkInput(RegisterActivity.java:
>> 129)
>> 02-25 10:11:53.950: WARN/System.err(211): at
>> com.uttara.android.RegisterActivity$1.onClick(RegisterActivity.java:
>> 54)
>> 02-25 10:11:53.950: WARN/System.err(211): at
>> android.view.View.performClick(View.java:2109)
>> 02-25 10:11:53.950: WARN/System.err(211): at
>> android.view.View.onTouchEvent(View.java:3523)
>> 02-25 10:11:53.950: WARN/System.err(211): at
>> android.widget.TextView.onTouchEvent(TextView.java:4410)
>> 02-25 10:11:53.950: WARN/System.err(211): at
>> android.view.View.dispatchTouchEvent(View.java:3178)
>> 02-25 10:11:53.950: WARN/System.err(211): at
>> android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:857)
&

[android-developers] Re: java.net.SocketException: The operation timed out............not behind proxy

2009-02-25 Thread PRATAP SOLAPUR
Thank u for the reply...ya i hav declared the permissions
required in  androidmanifest.xml...anything else i'm missing.

On Wed, Feb 25, 2009 at 10:55 PM, AlCapwn  wrote:

>
> Do you have permission to access the Internet declared in your
> manifest?
>
> On Feb 25, 10:53 am, Pratap  wrote:
> > I'm developing an app which needs to connect to the internet, but when
> > i send a request using DefaultHtpClient.execute() method it takes 2-3
> > minutes and then the stacktrace says
> >
> > java.net.SocketException:operation timed out
> >
> > does anybody knos how to solve the problem...reply as soon as
> > posible
> >
> > here is the stack trace...
> >
> > 02-25 10:11:53.839: WARN/System.err(211): java.net.SocketException:
> > The operation timed out
> > 02-25 10:11:53.940: WARN/System.err(211): at
> > org.apache.harmony.luni.platform.OSNetworkSystem.connectSocketImpl
> > (Native Method)
> > 02-25 10:11:53.940: WARN/System.err(211): at
> > org.apache.harmony.luni.platform.OSNetworkSystem.connect
> > (OSNetworkSystem.java:119)
> > 02-25 10:11:53.940: WARN/System.err(211): at
> > org.apache.harmony.luni.net.PlainSocketImpl.connect
> > (PlainSocketImpl.java:227)
> > 02-25 10:11:53.940: WARN/System.err(211): at
> > org.apache.harmony.luni.net.PlainSocketImpl.connect
> > (PlainSocketImpl.java:521)
> > 02-25 10:11:53.940: WARN/System.err(211): at
> > java.net.Socket.connect(Socket.java:945)
> > 02-25 10:11:53.940: WARN/System.err(211): at
> > org.apache.http.conn.scheme.PlainSocketFactory.connectSocket
> > (PlainSocketFactory.java:117)
> > 02-25 10:11:53.940: WARN/System.err(211): at
> > org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection
> > (DefaultClientConnectionOperator.java:129)
> > 02-25 10:11:53.950: WARN/System.err(211): at
> > org.apache.http.impl.conn.AbstractPoolEntry.open
> > (AbstractPoolEntry.java:164)
> > 02-25 10:11:53.950: WARN/System.err(211): at
> > org.apache.http.impl.conn.AbstractPooledConnAdapter.open
> > (AbstractPooledConnAdapter.java:119)
> > 02-25 10:11:53.950: WARN/System.err(211): at
> > org.apache.http.impl.client.DefaultRequestDirector.execute
> > (DefaultRequestDirector.java:348)
> > 02-25 10:11:53.950: WARN/System.err(211): at
> > org.apache.http.impl.client.AbstractHttpClient.execute
> > (AbstractHttpClient.java:555)
> > 02-25 10:11:53.950: WARN/System.err(211): at
> > org.apache.http.impl.client.AbstractHttpClient.execute
> > (AbstractHttpClient.java:487)
> > 02-25 10:11:53.950: WARN/System.err(211): at
> > org.apache.http.impl.client.AbstractHttpClient.execute
> > (AbstractHttpClient.java:465)
> > 02-25 10:11:53.950: WARN/System.err(211): at
> > com.uttara.android.RegisterActivity.registeraction
> > (RegisterActivity.java:95)
> > 02-25 10:11:53.950: WARN/System.err(211): at
> > com.uttara.android.RegisterActivity.checkInput(RegisterActivity.java:
> > 129)
> > 02-25 10:11:53.950: WARN/System.err(211): at
> > com.uttara.android.RegisterActivity$1.onClick(RegisterActivity.java:
> > 54)
> > 02-25 10:11:53.950: WARN/System.err(211): at
> > android.view.View.performClick(View.java:2109)
> > 02-25 10:11:53.950: WARN/System.err(211): at
> > android.view.View.onTouchEvent(View.java:3523)
> > 02-25 10:11:53.950: WARN/System.err(211): at
> > android.widget.TextView.onTouchEvent(TextView.java:4410)
> > 02-25 10:11:53.950: WARN/System.err(211): at
> > android.view.View.dispatchTouchEvent(View.java:3178)
> > 02-25 10:11:53.950: WARN/System.err(211): at
> > android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:857)
> > 02-25 10:11:53.950: WARN/System.err(211): at
> > android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:857)
> > 02-25 10:11:53.950: WARN/System.err(211): at
> > android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:857)
> > 02-25 10:11:53.950: WARN/System.err(211): at
> > android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:857)
> > 02-25 10:11:53.950: WARN/System.err(211): at
> > android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:857)
> > 02-25 10:11:53.950: WARN/System.err(211): at
> > android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:857)
> > 02-25 10:11:53.950: WARN/System.err(211): at
> > com.android.internal.policy.impl.PhoneWindow
> > $DecorView.superDispatchTouchEvent(PhoneWindow.java:1561)
> > 02-25 10:11:53.950: WARN/System.err(211): at
> > com

[android-developers] Re: My Log messages fails to appear on Logcat View

2009-02-26 Thread PRATAP SOLAPUR
close the emulator n eclipse then restart both once againit'll
display the logs

On Thu, Feb 26, 2009 at 2:47 PM, gganesh  wrote:

>
> hi ,
> unfortunately even that doesn't works for me .I ran my programe in the
> debug mode but, no log messages .Any other clue ?
>
>
> On Feb 26, 12:39 pm, ANKIT SOMANI  wrote:
> > I faced the Same Problem.This might be problem with DDMS.
> >
> > I found a solution, If you debug your application once then log cat will
> > again start displaying Logs.
> >
> > Thanks.
> >
> > Regards
> > ~Ankit Somani
> >
> > 2009/2/26 gganesh 
> >
> >
> >
> > > hi friends,
> > > When i run my application i could see the log messages in Logcat View,
> > > as i was working through , all of a sudden i couldn't see log message
> > > I'm not aware what has happened ,any clue ?.
> > > Can we stop log message  displaying !,suppose i may accidentally
> > > turned it off
> > > i am fresh developer,help to solve 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
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] android.database.sqlite.SQLiteException: Unable to close due to unfinalised statements

2009-10-21 Thread PRATAP SOLAPUR
Hi all
I'm developing an app which involvels too many database operations(insertion
& retrievel)hence,I'm getting  the the above said exception and I think
its because of  database opertaion .
Does anybody know how to get rid of this problem?
Please help, its urgernt..

Thhank you all......
Pratap S.

10-21 15:08:26.614: ERROR/AndroidRuntime(722):
android.database.sqlite.SQLiteException: Unable to close due to unfinalised
statements
10-21 15:08:26.614: ERROR/AndroidRuntime(722): at
android.database.sqlite.SQLiteDatabase.dbclose(Native Method)
10-21 15:08:26.614: ERROR/AndroidRuntime(722): at
android.database.sqlite.SQLiteDatabase.onAllReferencesReleased(SQLiteDatabase.java:241)
10-21 15:08:26.614: ERROR/AndroidRuntime(722): at
android.database.sqlite.SQLiteClosable.releaseReference(SQLiteClosable.java:42)
10-21 15:08:26.614: ERROR/AndroidRuntime(722): at
android.database.sqlite.SQLiteProgram.onAllReferencesReleasedFromContainer(SQLiteProgram.java:76)
10-21 15:08:26.614: ERROR/AndroidRuntime(722): at
android.database.sqlite.SQLiteDatabase.closeClosable(SQLiteDatabase.java:697)
10-21 15:08:26.614: ERROR/AndroidRuntime(722): at
android.database.sqlite.SQLiteDatabase.close(SQLiteDatabase.java:684)
10-21 15:08:26.614: ERROR/AndroidRuntime(722): at
com.uttara.and.icommute_less_lite.databasehandling.ICommuteLessDbHandling.close(ICommuteLessDbHandling.java:266)
10-21 15:08:26.614: ERROR/AndroidRuntime(722): at
com.uttara.and.icommute_less_lite.startcommute.ICommuteReport.processReport(ICommuteReport.java:401)
10-21 15:08:26.614: ERROR/AndroidRuntime(722): at
com.uttara.and.icommute_less_lite.startcommute.ICommuteReport$1.run(ICommuteReport.java:225)
10-21 15:08:26.614: ERROR/AndroidRuntime(722): at
java.lang.Thread.run(Thread.java:1058)

--~--~-~--~~~---~--~~
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Send Data to the other Activity

2009-01-08 Thread PRATAP SOLAPUR
To your Intent add the data using
putExtra()
method and in the second activity in which u want to display use
getIntent().get.Extra()
 to retrieve ur data n then display




On 1/7/09, PRATAP SOLAPUR  wrote:
>
> Use Bundles
>
> On 1/7/09, Android  wrote:
>>
>>
>> Hi,
>>
>> I am trying to start a new Activity from my Activity. For this am
>> creating an intent as
>>
>> Intent sendIntent = new Intent(this,Newactivity.class);
>> startActivity(sendIntent);
>>
>> With the above i am able to launch my new Intent.
>> If I want to send some data from Current Activity to the Newactivity
>> (Where my Newactivity have a text box). The data i send from
>> CurrentActivity to Newactivity should be displayed in this text box.
>>
>> Can anyone help me out how to do this ?
>>
>> 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-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: new to android

2009-01-08 Thread PRATAP SOLAPUR
Android Programmers Guide is a good book for beginner.

Anddev.org  u'll get tutorials


On 1/7/09, google  wrote:
>
>
> hi,
> can any one suggest good way to practice android.
> good books or any free applications
>
>
> >
>

--~--~-~--~~~---~--~~
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Problem in Viewing table - sdk1.0

2009-01-13 Thread PRATAP SOLAPUR
have u created the table in the command mode or in programi
think the table has not been  created

Use .schema with no arguements, it'll list all the tables...


On 1/13/09, jayesh.thadani  wrote:
>
>
> Hi..
> I am using sdk1.0
>
> i created database as firstDB & created table in it as firsttable
>
> my application is working fine, but am not been able to view tables
> name in database.
>
> i open it with sqlite, it shows database name in it with .databases
> command..
>
> but when i used .table it does not show tables contained in that
> database..
>
>
> Please help me out. i watch previous forum , i think there is problem
> with permission settings..
>
> 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-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Problem in Viewing table - sdk1.0

2009-01-14 Thread PRATAP SOLAPUR
you should use .tables to view the tables in the db.

On 1/13/09, jayesh.thadani  wrote:
>
>
> Hi pratap,
> yes i created table in program...
> and it is working fine, i am able to retrieve data from table, my
> problem is .table in sqlite3 is not showing tables that are in
> database
>
> Same problem is with notepad1,2 & 3 application which is given as a
> sample application..
>
> In sample example, database and tables in it exist... but .table in
> sqlite3 is not viewable...
>
>
>
> On Jan 13, 3:18 pm, PRATAP SOLAPUR  wrote:
> > have u created the table in the command mode or in programi
> > think the table has not been  created
> >
> > Use .schema with no arguements, it'll list all the tables...
> >
> > On 1/13/09, jayesh.thadani  wrote:
> >
> >
> >
> > > Hi..
> > > I am using sdk1.0
> >
> > > i created database as firstDB & created table in it as firsttable
> >
> > > my application is working fine, but am not been able to view tables
> > > name in database.
> >
> > > i open it with sqlite, it shows database name in it with .databases
> > > command..
> >
> > > but when i used .table it does not show tables contained in that
> > > database..
> >
> > > Please help me out. i watch previous forum , i think there is problem
> > > with permission settings..
> >
> > > 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-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: HTTP Client........SocketException

2009-01-18 Thread PRATAP SOLAPUR
I've already set http-proxy in settings.db, emulator is getting connected to
internet but not the maps.u are saying the same kno?

On 1/19/09, for android  wrote:
>
> you need to update the system table with your proxy ip..there are many
> threads which deal as to hot to acheive this..
>
> On Mon, Jan 19, 2009 at 10:47 AM, Pratap  wrote:
>
>>
>> I'm working behind proxy, whenever i send a req using HTTPclient i
>> get a SocketExceptionDoes anybody knows how to solve this
>> 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@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Regarding using Spinner(Combo box) for displaying file names

2009-01-23 Thread PRATAP SOLAPUR
I'll do it like this...

Spinner s1 = (Spinner) findViewById(R.id.spinner1);
ArrayAdapter adapter = new
ArrayAdapter(getApplicationContext(),android.R.layout.simple_spinner_dropdown_item,filenameList);
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
s1.setAdapter(adapter);

where fileNamesList is an arraylist of file names u want to
display..
On Wed, Jan 21, 2009 at 6:25 PM, Naina K  wrote:

>
> Hi,
>
> This is Naina. I am trying to write an application where I need to
> list down all file names and using Spinner, i want to select the
> required file. Could you please let me know about this.
>
> Thanks,
>
> Naina
>
> >
>

--~--~-~--~~~---~--~~
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: LocationManager causes application to crash

2009-02-02 Thread PRATAP SOLAPUR
Add ACCESS_FINE_LOCATION permission and INTERNET permission

On 2/3/09, pulkit  wrote:
>
>
> Hi,
>
> We're working on Location based services with android emulator. But
> the issue is that the application crashes when any of the following
> statements executes:-
>
> Location location = locationManager.getLastKnownLocation(locationManag
> er.getBestProvider(CRITERIA, true));
>
>
> OR
>
> Location location = locationManager.getLastKnownLocation("gps");
>
> We have also defined permissions in manifest.xml as follows:-
>
> 
> 
>
> PS: we are also spoofing coordinates using ddms. Google map works
> fine, but our application keeps crashing.
>
> Any inputs please. 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-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: LocationManager causes application to crash

2009-02-02 Thread PRATAP SOLAPUR
post the stack trace of ur logcatso that i can kno wat kind of error
ur getting.

On 2/3/09, pulkit  wrote:
>
>
> Thanks for replying Pratap,  but unfortunately it didn't fix the
> problem.
> Any other suggestion please?
>
> On Feb 3, 10:23 am, PRATAP SOLAPUR  wrote:
> > Add ACCESS_FINE_LOCATION permission and INTERNET permission
> >
> > On 2/3/09, pulkit  wrote:
> >
> >
> >
> > > Hi,
> >
> > > We're working on Location based services with android emulator. But
> > > the issue is that the application crashes when any of the following
> > > statements executes:-
> >
> > > Location location = locationManager.getLastKnownLocation(locationManag
> > > er.getBestProvider(CRITERIA, true));
> >
> > > OR
> >
> > > Location location = locationManager.getLastKnownLocation("gps");
> >
> > > We have also defined permissions in manifest.xml as follows:-
> >
> > > 
> > > 
> >
> > > PS: we are also spoofing coordinates using ddms. Google map works
> > > fine, but our application keeps crashing.
> >
> > > Any inputs please. 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-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Host is unresolved error

2009-02-03 Thread PRATAP SOLAPUR
U need to use the ip address of the web..like  http://74.125.19.103 this
is for googlei was also  facing the same problemthis solved
it.emulator doesnt recognize dns names...
On 2/3/09, newuser  wrote:
>
>
> Hi,
>
> I am trying to run the GetDataFromTheWeb app from one of the Android
> tutorial. As I am behind a proxy, I did the proxy settings for
> emulator in Eclipse's Run dialog by specifying -http-proxy
> http://:@:
>
> After doing this setting, I am able to use the browser of the emulator
> but when i try to run the above mentioned app, I get Host is
> unresolved error. I am getting this for any URL i specify in the code
> ( www.anddev.org, www.google.com, etc).
>
> I did read on this forum that a couple of developers encountered this
> problem but there was no solution mentioned.
> If some one knows how to resolve this problem, kindly help.
>
> 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-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



  1   2   >