[android-developers] webview shouldInterceptRequest does not work on Android 5.0

2016-05-20 Thread Carlos Farrington
Hi 

I am developing an App that intercepts the request and process them and 
then updates send the WebResourcesResponse.   The code works with no issues 
on 4.2 but when I try it in 5.0 the function shouldInterceptRequest never 
sees the request.  I know that there was an update on the library and I 
have made the modifications but I do not see any requests being processed. 
 As you can see I have added a toast message to tell me if we enter the 
shouldInterceptRequest function but I never see the message.   The requests 
that are being processes are simple gets of a html page with frames. On 4.2 
works with no problem but on 5.0 it does not work.   Any ideas?

Thank you,

fc8282



private class WebViewClientImpl extends WebViewClient
{
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url)
{
return false;
}

@Override
public void onPageFinished(WebView view, String url)
{

}

@SuppressWarnings("deprecation") // From API 21 we should use another 
overload
@Override
public WebResourceResponse shouldInterceptRequest ( final WebView view, 
String msg)
{
return processRequest ( view, msg );
}

//@TargetApi(Build.VERSION_CODES.LOLLIPOP)
@TargetApi(android.os.Build.VERSION_CODES.LOLLIPOP)
@Override
public WebResourceResponse shouldInterceptRequest( WebView view, 
WebResourceRequest request)
{
Toast.makeText(getBaseContext(), "We are in the 
shouldInterceptRequest 5.0: ",
Toast.LENGTH_LONG).show();


String msg = request.getUrl().toString();

return shouldInterceptRequest(view, request.getUrl().toString());

// Have also tried just simply doing the return.
//return processRequest ( view, msg );
}


public WebResourceResponse processRequest ( final WebView view, String 
msg )

-- 
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/22e90b78-0907-4403-a499-162da7c1057b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Monetarization question

2016-05-20 Thread Ernst Lubitsch
Brilliant! Thanks for pointing me!

-- 
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/c3af30a7-be40-4698-a25b-ab4522e00afe%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] wear 2.0

2016-05-20 Thread TreKing
On Wed, May 18, 2016 at 9:04 PM, Brayden McGraw 
wrote:

> i am having problems downloading android wear 2.0 the instructions on
> android developer are not working


Sorry to hear that.

-
TreKing  - Chicago
transit tracking app for Android-powered devices

-- 
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/CANCScgjwM%3Dz_P%3DnKNF99upkqFuJZFqSCLFU39DDbPCex%3DTTZ2g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] install SDK tool manually

2016-05-20 Thread TreKing
On Thu, May 19, 2016 at 5:45 AM, Sallieu Dumbuya 
wrote:

> i have just installed android studio, but have problems with SDK tool not
> installed.


If you installed Android Studio but don't have the SDK, you did something
wrong. Go back to the Android Studio page and try again.

-
TreKing  - Chicago
transit tracking app for Android-powered devices

-- 
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/CANCScgi_%3Dm2UdZPWH_dz1CjFJmNEb%2BfSaHn3xd5E-dib5dsmHw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Hello, I need an advice regarding my game publishing on Google Play.

2016-05-20 Thread TreKing
On Thu, May 19, 2016 at 6:43 AM, Сергей Кальманович 
wrote:

> (1) Is it acceptable to publish free demo version the game when the full
> version is not ready yet?
>

Sure, why not?


> (2) Can I publish the free demo version without creating the merchant
> account, then finalize the game, create merchant account, and publish the
> full version?
>

Sure, why not?


> (3) What % of full game's content must the free demo have to be approved?
>

0.00%


> (4) How exactly Google approves submitted apps?
>

They don't.

-
TreKing  - Chicago
transit tracking app for Android-powered devices

-- 
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/CANCScghBJCKdmWt7b%2B4YBSWp9v%2BwgVkScCMDf6wjA8zP8vQuMg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Where the money from iAP goes?

2016-05-20 Thread TreKing
On Wed, May 18, 2016 at 6:04 PM, Carmen Avalos Santos <
cavalos.san...@gmail.com> wrote:

> Hi, i have a app with iAP,  i set all my account, but i dont know where
> the money goes? I have a Google Wallet account, so the money goes there?


You set up an account, presumably with your bank account information, and
you don't know where the money is going to go?
How do you even do that ... ?

-
TreKing  - Chicago
transit tracking app for Android-powered devices

-- 
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/CANCScgiWK%2BrE%3DyrDwpoM4QeUXEm87ipONtBv%3D%3DQHH0x_sTxU_w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Uploading apps on Google Play

2016-05-20 Thread TreKing
On Wed, May 18, 2016 at 1:53 PM, Alex Michelson 
wrote:

> Do you need a business in order to upload apps on Google Play and get
> money from it legally?
> I'm a 16 year old living in Romania.
>

Consult a lawyer that knows the details of the legality of this as it
relates to your age and country.

-
TreKing  - Chicago
transit tracking app for Android-powered devices

-- 
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/CANCScghovMocAuvmiYdPZrb_u2N%3D8cBQsyD8TCckguzuxLKRLg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: 6P stuck after updating

2016-05-20 Thread Lars Vonderschmitt
Hi,

I found a solution.

You need to turn on the device by holding down the power button and the 
volume down button.
In the bootloader menu press the volume down key to select "recovery mode". 
Press the power button to select.
The device will reboot and you will see a little android with a red 
exklamation mark.
Now hold down the power button and press the volume up key once. Than 
release the power button.
In the new menu, press the volume down key to select the "factory reset" 
option.
Press power button to select.
Wait a few seconds and when you are back inside the menu just press the 
power button to reboot now.

Your device should now boot and you need to set it up completely but at 
least you are able to use it again.

Hope this works for you.

Cheers
Lars

Am Mittwoch, 18. Mai 2016 23:25:14 UTC+2 schrieb Sebastien Debaenst:
>
> Hi,
>
> So I tried instelling the new android n preview on my 6p to test it out. 
> But the 6p now is stuck at the screen where I need to enter my pin to 
> unlock it. I tried rebooting and even a hard reset (power down and volume 
> down...) but that all didn't work. Anyone who has a solution? 
>

-- 
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/eb1b6f8b-bcc8-4a2e-9213-2d21d2faca2f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Having trouble making a simple UDP app.

2016-05-20 Thread Julian Puppo
Im trying to make a single UDP app in android studio. Whenever I run the 
app and press the button the app crashes. 
Im using Datagram object to make it. My code seems to be alright but I 
don´t know where the mistake is. ITS DRIVING ME CRAZY please, help me. 


This is the main activity page : 



 package lumma.e_motionvrplayer;

import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;

import com.google.android.gms.appindexing.AppIndex;
import com.google.android.gms.common.api.GoogleApiClient;

import java.io.IOException;
import java.net.DatagramPacket;
import java.net.DatagramSocket;
import java.net.InetAddress;

public class MainActivity extends AppCompatActivity {

/**
 * ATTENTION: This was auto-generated to implement the App Indexing API.
 * See https://g.co/AppIndexing/AndroidStudio for more information.
 */
private GoogleApiClient client;

//Cierre de la clase
@Override

protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// ATTENTION: This was auto-generated to implement the App Indexing 
API.
// See https://g.co/AppIndexing/AndroidStudio for more information.
client = new 
GoogleApiClient.Builder(this).addApi(AppIndex.API).build();
}

public void clickplay(View v) throws IOException {

try
{
DatagramSocket socket = new DatagramSocket();
byte[] buf = new byte[256];
String messg = "play";

buf = messg.getBytes ();
InetAddress address = InetAddress.getByName ("255.255.255.255");
DatagramPacket packet = new DatagramPacket(buf, buf.length, 
address, 5000);
socket.send(packet);
}
catch (IOException e)
{
}
}
public void clickrestart(View v) throws IOException {
}

public void clickpause(View v) throws IOException {
}
public void clicknext(View v) throws IOException {
}
public void clickprev(View v) throws IOException {
}
}

-- 
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/82d271ec-a758-4067-ac38-6b241d9a6366%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Xml Parsing

2016-05-20 Thread TreKing
On Mon, May 16, 2016 at 12:26 PM, Pop Daniel 
wrote:

> I'd like to know if anyone knows how to implement an XML parser. i need to
> parse an XML file and get it's content.


https://developer.android.com/training/basics/network-ops/xml.html

-
TreKing  - Chicago
transit tracking app for Android-powered devices

-- 
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/CANCScghAewvj8_V3bkCgbxtByO2fMLRsXNgKs2jzOmWwtd0kBg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Google Play - Zero Supported Devices after uploading in Google P

2016-05-20 Thread TreKing
Try removing the support-screens and compatible-screens elements.
You shouldn't be using those unless you have a very good reason.

On Tue, May 17, 2016 at 9:02 AM, Waqas Ahmed  wrote:

> I'm trying to publish an app, but no matter what I try the developer
> console is reporting that there are zero supported devices
>
> Dev Console screenshot
>
> Here's my full manifest;
>
> 
> http://schemas.android.com/apk/res/android;
> package="com.blah.blahpro"
> android:versionCode="6"
> android:versionName="1.0" >
>
> 
>
> ere's my full manifest;
>
> 
> http://schemas.android.com/apk/res/android;
> package="com.blah.blahpro"
> android:versionCode="6"
> android:versionName="1.0" >
>
> 
>
>   android:anyDensity="true"
>
> android:xlargeScreens="true"
> android:largeScreens="true"
> android:normalScreens="true"
> android:smallScreens="true"
> android:resizeable="true"   />
>
> 
>
> 
>  
> 
> 
> 
>
> 
> 
> 
> 
> 
>
> 
> 
> 
> 
> 
>
> 
> 
> 
> 
> 
>
> 
> 
>
> 
>
>  android:required="false"/>
>  android:required="false"/>
>
>  android:name="android.permission.ACCESS_FINE_LOCATION" />
>  android:name="android.permission.ACCESS_COARSE_LOCATION" />
>  android:name="android.permission.ACCESS_NETWORK_STATE" />
> 
> 
>
> 
> --
> 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/4abec718-0aa0-439e-a88e-e358bedff079%40googlegroups.com
> .
> For more options, visit https://groups.google.com/d/optout.
>


-
TreKing  - Chicago
transit tracking app for Android-powered devices

-- 
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/CANCScggMNeMK4%2B6U%2BR0YXrgZ-dXUAJ387EYrEVC_6xCQHQkh7Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Delete app in developer console

2016-05-20 Thread TreKing
On Mon, May 16, 2016 at 9:07 AM, Andrew Goh  wrote:

> how do i go about deleting an app in the developer console.


You don't.
https://support.google.com/googleplay/android-developer/troubleshooter/3055196?hl=en#ts=3056520

-
TreKing  - Chicago
transit tracking app for Android-powered devices

-- 
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/CANCScgjW3j7yXV1Y_Q7f2Doj_uz65VeOCmoGQOk_vL0R8%3DsO9w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] After Restart "Unfortunately Closed "

2016-05-20 Thread TreKing
On Sun, May 15, 2016 at 8:44 AM, Allfreeuse Use 
wrote:

> *Developed a App using Network provider, GPS  , Mail Send Concept. First
> instal open it.*
> * it works fine. But After Device restart it submit a form "Unfortunately
> Closed ". *
> *Then After 10  mins later open same app. Its work fine.  How to fix this
> issue.*
>

Have you tried debugging your app?

-
TreKing  - Chicago
transit tracking app for Android-powered devices

-- 
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/CANCScggNxuJQ8vpAUbJGY_j409c-AN32LixOErSaC_ZRwuEPyA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Why Android N switched to an JIT-Compiler after AOT-Compiler was introduced in L?

2016-05-20 Thread Philipp Schuster
Hello there,
originally I asked my question as an #io16request but a Googler answered 
 that he 
doesn't know it and I should try to find the answer in this forum.

My question is:
In Android L Google introduced an AOT-Compiler ("ART" Android Run Time) 
which made execution much faster but the installation process of apps takes 
a little bit longer.
Till L Android used an JIT-Compiler (Dalvik Virtual Machine).

Now in Android N Google introduced a JIT-Compiler to reduce install time of 
apps. I really don't get the logic behind this:
Google switched the compiler and then switched it again?!
Well, if N uses JIT then doesn't N has the same performance problems as 
Android had till Android L?


Thanks a lot in advance.
Greetings from Germany!
Philipp

-- 
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/5798b748-1678-4cb4-bb2d-0f728b0b461d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] ImmersiveFocusNotifcation

2016-05-20 Thread dsavereide .
We are not trying to run an android app. Our program is Windows program
that utilizes some .NET controls. The glitch we have only occurs on Surface
Pros which does have some limited android app support built in, but we are
not attempting to use that.

On Fri, May 13, 2016 at 12:05 PM, TreKing  wrote:

>
> On Tue, Apr 19, 2016 at 5:25 PM, dsavereide  wrote:
>
>> We have a Windows32 program that uses some .NET controls.  We are having
>> a problem with this on Android devices (e.g. Surface Pro 3 and others)
>> running Windows 10 Pro.
>
>
> If you're attempting to run an Android app on a Windows platform, you are
> outside the scope of this list, which is for developing Android apps to run
> on, well, Android devices.
>
> You might consult a stackoverflow, or a group or forum dedicated to
> running Android on Windows.
>
>
> -
> TreKing  - Chicago
> transit tracking app for Android-powered devices
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Android Developers" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/android-developers/WVHCTbQGrkg/unsubscribe
> .
> To unsubscribe from this group and all its topics, 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/CANCScgg8GXk5JQGm-g7%2BOR7GM2xAh%3DCtbEH6L1YB6H3pPiH0%2Bg%40mail.gmail.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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/CAGAz2n-8W%3DU7SJWSAesoHiVTwfc65MS16OPXRfe4x%3DbKcLyK-w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Game Service error (4800000)

2016-05-20 Thread Baca Studio
It is working now.

-- 
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/4d6107da-53bc-44d9-98bf-ec417351a535%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Sure Closure:::::::Oracle Identity Manager (OIM) Developer ,AZ - Scottsdale/ RI- Rhode Island

2016-05-20 Thread sudhanshu pandey
*Hi There,*

*I am looking for Relevant consultant for below job description.*

*Job Title: Oracle Identity Manager (OIM) Developer *

*Location: AZ - Scottsdale/ RI- Rhode Island *

*Contract: 12 +Months*

*Requirement:*

•  *Consulting & Implementation experience in Oracle Identity & Access
Management using Oracle Identity Manager (OIM) 11gR2PS2 and PS3.*

•  *Experience in OIM Environment Setup (installation, configuration,
deployment and patching) *

•  Strong experience in developing connectors, approval workflows, and
custom event handlers, custom scheduled tasks and reconciliation.

•  Strong experience in Customization of ADF UI and SOA workflows.

•  Strong Experience in using OIM API and SPML web services.

•  Must have experience in integrating OIM with LDAP, AD, Exchange,
RACF, AS400 and SharePoint.

•  Must have Core Java/J2EE knowledge for customizations.

•  SQL/LDAP query language and Share Point skills beneficial.

•  Supports existing production systems; coordinates related support
and enhancement activities. The support will require working in 24x7
rotating shifts

•  Technical Support

•  Incident Escalation

•  Product Support

•  Trainings

•  Performance Mgmt., change & Release Mgmt.

•  Configuration Mgmt. And service Level Mgmt.

•  Availability & Continuity Mgmt.

•  Incident Analysis & Validation

•  Monitoring the system performance

•  Resolve issues as per tickets

•  Service enhancement

•  Product issues

•  Manage new requirements and services

•  Escalation Management

•  Compliance management and reporting

•  Architecture design enhancements

*QUALIFICATIONS AND SKILLS REQUIRED:*

· Minimum of 7 years experience with Identity and Access management
planning and implementation including 5 years enterprise organization
experience.

· In-depth understanding and knowledge of Identity and Access
management concepts, processes and general trends in the industry

· Experience implementing Oracle Identity Governance Product
OIM11gR2 PS2

· Experience in implementation, configuration and deployment of OIM
solution that involves integration with legacy systems using custom
connectors and various B2B partners

· Experience configuring OIM toolset to provision/de-provision and
reconciliation.

· Experience with access control modeling methodologies,
authorization policy management, and risk-based methods of access lifecycle
management for applications and data.

· Experience maintaining, troubleshooting and enhancing OPAM/ IAM
infrastructure; leading or participating in their day-to-day operation and
maintenance; and monitoring, reporting, and auditing technical, security,
and business activities.

*Total experience in required skill (years) *

· 6-8 years



*Thanks & Regards,*
--



Nityo Infotech Corp.
666 Plainsboro Road,

Suite 1285

Plainsboro, NJ 08536



*Sudhanshu Pandey Sr. Technical Recruiter*

Desk : 609-853-0818 X 2126
Fax :   609 7995746

*sudhansh...@nityo.com   *
*www.nityo.com *
*Gtalk : sudhanshu.intime*

-- 
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/CAEZkQ%2BhmyV-%3DBAu438hce%3D2Fi4u4%3Dxvm-nRXOD8SSrKzWUnV4w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] In-App Billing Static Responses do not work for Android TV

2016-05-20 Thread Myk Willis
As per the documentation on testing in-app purchases on Android:

https://developer.android.com/google/play/billing/billing_testing.html#billing-testing-static

An application should be able to use the reserved product codes 
("android.test.purchased", etc.) to test in-app billing flow, without 
having to first publish the app in the developer console.

This seems to be true and work on phones, but on Android TV it results in 
an "Item not found" error. This seems to be a TV-specific bug.

I've posted more information here:

http://stackoverflow.com/questions/37332192/testing-in-app-purchases-on-android-tv

Has anyone successfully tested in-app billing on Android TV using reserved 
product codes?

-- 
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/2b287b40-d198-4558-b208-19e4da575c66%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Fwd: IMMEDIATE NEED----ATG Consultant---Santa Clara, CA

2016-05-20 Thread Dev
Please share resume at de...@e-solutionsinc.com

POSITION: *ATG Commerce consultant*.

Location: Santa Clara, CA





JD:

1.Strong experience as ATG commerce lead around 9+ yrs of experience with
designing, developing and maintaining ATG based systems

2. Good knowledge and experience with designing ATG based applications

3. Strong understanding of ATG architecture along with extensive experience
of working on various integrations

4. ATG Endeca Integration

5. Hands on Experience in Java, J2EE, AJAX, HTML, JQuer





Thanks & regards

Dev

Phone : 408-722-9448

*Fax*: 408 521 0167

E-solutions Inc: 2 N. Market St., #400, San Jose, CA 95113

*Email*: de...@e-solutionsinc.com

*www.e-solutionsinc.com *

*Linkedin:* https://www.linkedin.com/in/dev-vishnu-a0aa3791

-- 
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/CA%2BJvUU7SR1rgea3%3DYwoZkS6SPJbmmb9J8SatjMMr2HT0C%3DQmag%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Business Analyst with Healthcare domain

2016-05-20 Thread Manisha Budhwar
Hi,

Hope you doing Well !!!

Here is our *Implementing partner Requirement*, Please go through the below
requirement and send us suitable consultant with their *updated resume,
rates and Contact details..*



*Role:- Business Analyst with Healthcare domain*

*Location: **Los Angeles, CA*

*Duration:- 6+ months+ Extension*

*Interview: Phone/ Skype *

*Domain:- Healthcare*



*Required Experience and Technical Skills*:-
Detailed job description - Skill Set: Systems Analyst Managed Care
Background Systems Analyst will work with both the I.T. development team
and business clients gathering and defining requirements, co-coordinating
design sessions, creating process/data flow diagrams and documenting
project efforts.
Mandatory Skills Healthcare Domain - Providers, Credentialing
Good to Have Skills Oracle PL/SQL

*Thanks & Regards,  *

*Manisha Budhwar*

Recruiter

Nityo InfoTech .

Desk No-609-853-0818 Ext-2160 <609-853-0818%20Ext-2160>

Gtalk ID:- manishanityo16

E Mail: manish...@nityo.com

-- 
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/CAMnZ%3DMAb3-u0Nf187pTFgMeHfHdQzReR3Ehjc_Qp1GYzAvEVkA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] lock or encrypt the system button in android devices

2016-05-20 Thread a
hi all
i need to lock or encrypt set password on system buttons of android smart 
phones. when long press of system buttons despit the protection of apps by 
applocks the sreanshot of them such as chat conversation and images is 
visible in small box. and i am trying to lock or protect it with the 
password of long press button (task manager)

or 

i am looking for an app to close completely the certain apps with screen 
 is off

pls help 

-- 
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/7ddeca87-6881-4977-9bdf-d69ffe608d28%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Sure Closure :::::::::::::IBM DATAPOWER Admin,Woonsocket, RI

2016-05-20 Thread sudhanshu pandey
*Hi There,*

*I am looking for Relevant consultant for below job description.*

*Job Title: IBM DATAPOWER Admin*

*Location: Woonsocket, RI*

*Contract: Long Term*

*Interview Mode:  F2F** OR Video Round can be done from Client locations
only – Scottsdale-AZ, Irving-TX, Buffalo Groove, IL). *

*Requirement:*

Required Qualifications

· 3-5 years of overall technical experience in DataPower
administration

· Experience in IBM DataPower XI52 and WebSphere 8.x+ architectures

· Understanding of Middleware architecture and working knowledge
with various middleware application servers integration.

· Good knowledge on Network concepts and F5 Load balancers

· Has experience in Performance tuning

· Working knowledge on SSL certificates implementation

· Solid understanding of J2EE application deployment patterns and
n-tier architectures

· Some J2EE coding experience, along with XSLT and complex/reusable
application architectures

· Understanding of SOA and web services and their deployment in
DataPower

· Planning and designing Middleware Software, including
installation and upgrades, patching, documentation,

· 24x7 operational support which includes pager rotation,

· Process maintenance and security/data protection.

· Proactively monitoring and fine tuning very large systems and
using tools like Tivoli.

· Security/performance monitoring, issue escalation and resolution,
systems engineering, administration, security documentation, and strategic
technical planning.

· Experience in AIX/Linux systems administration, networking,
storage and security concepts.

· Team player, self-motivated, requiring minimal direction, good
work ethic

· Open to learning new technologies, forward and strategic thinking.





*Thanks & Regards,*
--



Nityo Infotech Corp.
666 Plainsboro Road,

Suite 1285

Plainsboro, NJ 08536



*Sudhanshu Pandey Sr. Technical Recruiter*

Desk : 609-853-0818 X 2126
Fax :   609 7995746

*sudhansh...@nityo.com   *
*www.nityo.com *
*Gtalk : sudhanshu.intime*

-- 
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/CAEZkQ%2Bi9_sCL_%3DZQq0KEx%3DSOE9fmuJif5%2BZW%3DO4mz-OwhyEKBg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Closure Guarantee:::IBM DATAPOWER Admin,Woonsocket, RI

2016-05-20 Thread sudhanshu pandey
*Hi There,*

*I am looking for Relevant consultant for below job description.*

*Job Title: IBM DATAPOWER Admin*

*Location: Woonsocket, RI*

*Contract: Long Term*

*Interview Mode:  F2F** OR Video Round can be done from Client locations
only – Scottsdale-AZ, Irving-TX, Buffalo Groove, IL). *

*Requirement:*

Required Qualifications

· 3-5 years of overall technical experience in DataPower
administration

· Experience in IBM DataPower XI52 and WebSphere 8.x+ architectures

· Understanding of Middleware architecture and working knowledge
with various middleware application servers integration.

· Good knowledge on Network concepts and F5 Load balancers

· Has experience in Performance tuning

· Working knowledge on SSL certificates implementation

· Solid understanding of J2EE application deployment patterns and
n-tier architectures

· Some J2EE coding experience, along with XSLT and complex/reusable
application architectures

· Understanding of SOA and web services and their deployment in
DataPower

· Planning and designing Middleware Software, including
installation and upgrades, patching, documentation,

· 24x7 operational support which includes pager rotation,

· Process maintenance and security/data protection.

· Proactively monitoring and fine tuning very large systems and
using tools like Tivoli.

· Security/performance monitoring, issue escalation and resolution,
systems engineering, administration, security documentation, and strategic
technical planning.

· Experience in AIX/Linux systems administration, networking,
storage and security concepts.

· Team player, self-motivated, requiring minimal direction, good
work ethic

· Open to learning new technologies, forward and strategic thinking.





*Thanks & Regards,*
--



Nityo Infotech Corp.
666 Plainsboro Road,

Suite 1285

Plainsboro, NJ 08536



*Sudhanshu Pandey Sr. Technical Recruiter*

Desk : 609-853-0818 X 2126
Fax :   609 7995746

*sudhansh...@nityo.com   *
*www.nityo.com *
*Gtalk : sudhanshu.intime*

-- 
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/CAEZkQ%2BiqpqjQVTk5CiBXMBb5CDnC%3D19eP38D%3DZ-PxAaiqhZMpA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Game Service error (4800000)

2016-05-20 Thread Wioletta Symanska
I have the same problem.

W dniu piątek, 20 maja 2016 01:12:15 UTC+2 użytkownik MEGA Development 
napisał:
>
>
> whenever I try to create a new service and arrive at the " SET THE GOOGLE 
> PLAY SERVICES TO PLAY AN APP " appears the error (480) 
>
> someone help ?
>
2817

-- 
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/b8df35bf-7d63-4d61-b990-af8a5bdd2a9f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Senior SAP MRS for POC Effort followed by Longterm Project...Urgent Req

2016-05-20 Thread Karanam Sreedhar
Hi,



How are you?  Please find below the requirement and let me know your
comforts.  Please provide me below details in order to submit your profile.



Availability:

Current Location:

Work Status:

Rate:



The Client is looking for SAP MRS Resource.



Industry: Mining ( Mining experience is considered First as this is POC
Effort)

Senior MRS Consultant:-

Denver,CO

Upto September and then Remote ( Long term)

They are looking at a Senior MRS resource who can evaluate their current
system and understand gaps. They are looking at finding drivers for their
PoC. They are looking at completing this within 4-6 weeks or complete by
September. Onsite or nearshore. Evaluate current system looking at somebody
senior. This will start with the PoC and move on to becoming a long term
project depending on the skill set. Also, they would want the resource
onsite initially. He/she can be remote once they have established comfort
level.





Thanks & Regards,

*Sreedhar Karanam*

-- 
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_mo7KGyL4dLnfGYra%3DLYgB%3D707iks1x%2Byacf4RfmermY3uRQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Sure Closure::::IBM DATAPOWER Admin,Woonsocket, RI

2016-05-20 Thread sudhanshu pandey
*Hi There,*

*I am looking for Relevant consultant for below job description.*

*Job Title: IBM DATAPOWER Admin*

*Location: Woonsocket, RI*

*Contract: Long Term*

*Interview Mode:  F2F** OR Video Round can be done from Client locations
only – Scottsdale-AZ, Irving-TX, Buffalo Groove, IL). *

*Requirement:*

Required Qualifications

· 3-5 years of overall technical experience in DataPower
administration

· Experience in IBM DataPower XI52 and WebSphere 8.x+ architectures

· Understanding of Middleware architecture and working knowledge
with various middleware application servers integration.

· Good knowledge on Network concepts and F5 Load balancers

· Has experience in Performance tuning

· Working knowledge on SSL certificates implementation

· Solid understanding of J2EE application deployment patterns and
n-tier architectures

· Some J2EE coding experience, along with XSLT and complex/reusable
application architectures

· Understanding of SOA and web services and their deployment in
DataPower

· Planning and designing Middleware Software, including
installation and upgrades, patching, documentation,

· 24x7 operational support which includes pager rotation,

· Process maintenance and security/data protection.

· Proactively monitoring and fine tuning very large systems and
using tools like Tivoli.

· Security/performance monitoring, issue escalation and resolution,
systems engineering, administration, security documentation, and strategic
technical planning.

· Experience in AIX/Linux systems administration, networking,
storage and security concepts.

· Team player, self-motivated, requiring minimal direction, good
work ethic

· Open to learning new technologies, forward and strategic thinking.





*Thanks & Regards,*
--



Nityo Infotech Corp.
666 Plainsboro Road,

Suite 1285

Plainsboro, NJ 08536



*Sudhanshu Pandey Sr. Technical Recruiter*

Desk : 609-853-0818 X 2126
Fax :   609 7995746

*sudhansh...@nityo.com   *
*www.nityo.com *
*Gtalk : sudhanshu.intime*

-- 
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/CAEZkQ%2Bj%2BYZNcyJAgRE4PQ6hqJz7_9%3Db75QE7nxO92KfWT4haCQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Sure Closure::::IBM DATAPOWER Admin,Woonsocket, RI

2016-05-20 Thread sudhanshu pandey
*Hi There,*

*I am looking for Relevant consultant for below job description.*

*Job Title: IBM DATAPOWER Admin*

*Location: Woonsocket, RI*

*Contract: Long Term*

*Interview Mode:  F2F** OR Video Round can be done from Client locations
only – Scottsdale-AZ, Irving-TX, Buffalo Groove, IL).*

*Requirement:*

Required Qualifications

· 3-5 years of overall technical experience in DataPower
administration

· Experience in IBM DataPower XI52 and WebSphere 8.x+ architectures

· Understanding of Middleware architecture and working knowledge
with various middleware application servers integration.

· Good knowledge on Network concepts and F5 Load balancers

· Has experience in Performance tuning

· Working knowledge on SSL certificates implementation

· Solid understanding of J2EE application deployment patterns and
n-tier architectures

· Some J2EE coding experience, along with XSLT and complex/reusable
application architectures

· Understanding of SOA and web services and their deployment in
DataPower

· Planning and designing Middleware Software, including
installation and upgrades, patching, documentation,

· 24x7 operational support which includes pager rotation,

· Process maintenance and security/data protection.

· Proactively monitoring and fine tuning very large systems and
using tools like Tivoli.

· Security/performance monitoring, issue escalation and resolution,
systems engineering, administration, security documentation, and strategic
technical planning.

· Experience in AIX/Linux systems administration, networking,
storage and security concepts.

· Team player, self-motivated, requiring minimal direction, good
work ethic

· Open to learning new technologies, forward and strategic thinking.





*Thanks & Regards,*
--



Nityo Infotech Corp.
666 Plainsboro Road,

Suite 1285

Plainsboro, NJ 08536



*Sudhanshu PandeySr. Technical Recruiter*

Desk : 609-853-0818 X 2126
Fax :   609 7995746

*sudhansh...@nityo.com   *
*www.nityo.com *
*Gtalk : sudhanshu.intime*

-- 
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/CAEZkQ%2Bjm1wh%3DqzRqQN-MiYvDvS-MPPXioxPzwTb6PL%2BfRATWDQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Multiple Positions......Big data developer(lead)///ETL (Informatica) Architect

2016-05-20 Thread SALMA BHAT
Hi,

Please provide resumes for these positions.


* Please find job description:-*



*Skill Set*

Big Data, Hadoop, Agile, Map Reduce Programming, Hive, HBase, HDFS Work

*Work Location*

Chicago and MN

*Special Instructions*

NA



*Job Description*

*PLZ SHARE LEAD ROLE PROFILES ONLY..!!!*


*Years of Experience** 10+years.

*Detailed JD*

* Big Data developer with good hands on experience on techonologies like
Apache Hadoop, HDFS, Hive, HBase, Scoop, MapReduce Programming etc.
*Mandatory skills*

* Big Data, Hadoop, Agile, Map Reduce Programming, Hive, HBase, HDFS
*Good to have skills*

* Unix Scripting
*Domain*

* Insurance, HealthCare


NOTE :

Lead role - 10 yr exp in Big Data technology. Worked in Pig, Hive, HDFS,
Mapreduce. Data validation and transformation in Data Lake environment.









*Please find job description:-*



*Skill Set*

ETL (Informatica) Architect

*Work Location*

RhodeIsland

*Special Instructions*

NA



*Job Description*

· At least 8+ years of experience in BI technologies and BI project
development life cycle
· Extensive working knowledge in the ETL Tool Informatica which includes
components like PowerCenter, Designer, Workflow Manager, Workflow Monitor,
Repository Manager, Repository Server Administration Console, PowerExchange
CDC,   IDE - Informatica Data Explorer, IDQ - Informatica Data Quality
· Experience in implementing an Informatica based ETL solution fulfilling
performance requirements
· Ability to identify, recommend and implement ETL process and architecture
improvements.
· Experience in leading and guiding development of an Informatica based ETL
architecture.
· Sound knowledge in Teradata
· Ability to Collaborate with development teams and senior designers to
develop architectural requirements
· Ability to assess completeness and accuracy of requirements and determine
if requirements are actionable for ETL team.
· Knowledge on data warehousing concepts, modelling, design and build of
views/tables
· Experience in Pharmacy/Healthcare/Retail Domain
· Ability to work in team in diverse/ multiple stakeholder environment
· Experience and desire to work in a Global delivery environment..



Salma Bhat

Desk : 609-853-0818 Ext: 2121

salma.b...@nityo.com 

-- 
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/CAJ0KNK9SbfaGpGVsez%2Bwum9oX2ORfBkdKKZiZTk2wuXwNxfdAA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Multiple Positions......Big data developer(lead)///ETL (Informatica) Architect

2016-05-20 Thread salma bhat
Hi,

Please provide resumes for these positions.


* Please find job description:-*



*Skill Set*

Big Data, Hadoop, Agile, Map Reduce Programming, Hive, HBase, HDFS Work

*Work Location*

Chicago and MN

*Special Instructions*

NA



*Job Description*

*PLZ SHARE LEAD ROLE PROFILES ONLY..!!!*


*Years of Experience** 10+years.

*Detailed JD*

* Big Data developer with good hands on experience on techonologies like
Apache Hadoop, HDFS, Hive, HBase, Scoop, MapReduce Programming etc.
*Mandatory skills*

* Big Data, Hadoop, Agile, Map Reduce Programming, Hive, HBase, HDFS
*Good to have skills*

* Unix Scripting
*Domain*

* Insurance, HealthCare


NOTE :

Lead role - 10 yr exp in Big Data technology. Worked in Pig, Hive, HDFS,
Mapreduce. Data validation and transformation in Data Lake environment.









*Please find job description:-*



*Skill Set*

ETL (Informatica) Architect

*Work Location*

RhodeIsland

*Special Instructions*

NA



*Job Description*

· At least 8+ years of experience in BI technologies and BI project
development life cycle
· Extensive working knowledge in the ETL Tool Informatica which includes
components like PowerCenter, Designer, Workflow Manager, Workflow Monitor,
Repository Manager, Repository Server Administration Console, PowerExchange
CDC,   IDE - Informatica Data Explorer, IDQ - Informatica Data Quality
· Experience in implementing an Informatica based ETL solution fulfilling
performance requirements
· Ability to identify, recommend and implement ETL process and architecture
improvements.
· Experience in leading and guiding development of an Informatica based ETL
architecture.
· Sound knowledge in Teradata
· Ability to Collaborate with development teams and senior designers to
develop architectural requirements
· Ability to assess completeness and accuracy of requirements and determine
if requirements are actionable for ETL team.
· Knowledge on data warehousing concepts, modelling, design and build of
views/tables
· Experience in Pharmacy/Healthcare/Retail Domain
· Ability to work in team in diverse/ multiple stakeholder environment
· Experience and desire to work in a Global delivery environment..



Salma Bhat

Desk : 609-853-0818 Ext: 2121

salma.b...@nityo.com 

-- 
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/CAHi_%2BqS4Fnavey4x_KjZHVfDYrwU4R%3DSUiBLiT8BQnUjB_As5g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent req for Business Analyst with KDB experience @ New York, NY

2016-05-20 Thread Shaik Sadiq
Hi,



Hope you are doing well !!!



I have an urgent requirement for a *Business Analyst with KDB experience*
*..* Please let me know if you have any consultants and get back to me with
their updated resume in .doc format immediately. Given below is the job
description.



*Job Title: Business Analyst with KDB experience*

*Location: New York, NY*

*Duration: 4+ Month*

*Total Experience: 8+ Years*



*JD:*

• Drive requirements to capture transaction and market data in KDB across
Rates and FX businesses
• Define cross-system standards for messaging format and protocols
• Define MIS and Analytics requirements in close collaboration with
front-office teams and ensure integrity and quality of their implementation
by on/off-shore dev teams
• Assist with QA of raw captured data and derived analytics
Qualifications
• Fundamental knowledge of electronic trading flow across Rates and FX
• Expertise in market data and order entry protocols (FIX/FAST, ITCH, OUCH
etc.) used in Fixed Income markets
• Hands-on experience with ION gateway and messaging technology
• Hands-on experience with KDB+ and SQL
• Experience with QlikView is a plus
• Experience in working in the front-office environment and guiding
offshore technology teams
• Experience in automating data-quality checks across real-time and batch
feeds
• At least Bachelor’s (Master’s preferred) degree
• Good math and oral/written communication skills



Note: *Must HAVE Python and JAVA Some exposure to KDB and must have 3+
years of experience in KDB*



*Sadiq Shaik*

ASAP Solutions Group LLC,

678-221-4992 (ext) 217

ssh...@myasap.com 

-- 
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/CAMy78at1cXcSx%3DQMjhWK6CPkVH-f2NMgeuZLoENj96LNViZ58w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Sure Closure Guarantee:::::::Data Migration Admin,Woonsocket RI ,6-12+

2016-05-20 Thread sudhanshu pandey
*Hi There,*

*I am looking for Relevant consultant for below job description.*

*Job Title: Data Migration Admin*

*Location: Woonsocket RI *

*Contract: 6-12+*

*Requirement:*

Data Migrator Admin requirement : -



•  *Hands on experience in Installing and configuring Data Migrator
Server and Adapters.*

•  *Provide troubleshooting and diagnostic support the technology. *

•  *Provide administrative services, review job stats, job logs and job
queues.  *

•  Incident, problem and service outage management.

•  Gathering requirements from project teams covering areas such as
capacity, users, data.

•  Data Source Configuration and Maintenance.

•  Willing to work on 24x7 production support system.

•  Willing to travel to Disaster recovery Site and perform DR
activities.

•  Document and maintain work-instructions.

•  Maintaining Server Logs and communicate with Vendor.

•  Backup, data recovery and service restoration management.

•  Collaborate with Windows team on patch and bug fix deployment.

•  Identify and raise system capacity related issues (storage,
licenses, performance threshold).

•  Server Performance, capacity, utilization monitoring and Health
monitoring



*PRIOR WORK EXPERIENCE*



•  3+ years of overall technical experience in Data Migrator
Administration.

•  5+ years of overall ETL experience.

•  Experience with the Informatica is a plus.

•  Excellent Windows Skills in managing processes and troubleshoot
problems.

•  Proven Subject Matter Expertise in ETL platforms



*Education*

•  Bachelor’s Degree.

•  Masters Degree/Advanced degree preferred.





*Thanks & Regards,*
--



Nityo Infotech Corp.
666 Plainsboro Road,

Suite 1285

Plainsboro, NJ 08536



*Sudhanshu Pandey Sr. Technical Recruiter*

Desk : 609-853-0818 X 2126
Fax :   609 7995746

*sudhansh...@nityo.com   *
*www.nityo.com *
*Gtalk : sudhanshu.intime*

-- 
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/CAEZkQ%2Bge8Qa_emn_uEDBU%3Da_1Rur_U_eGQRzQDV8T0COhOWEcA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Sure Closure:::::IBM DATAPOWER Admin,Woonsocket, RI

2016-05-20 Thread sudhanshu pandey
*Hi There,*

*I am looking for Relevant consultant for below job description.*

*Job Title: IBM DATAPOWER Admin*

*Location: Woonsocket, RI*

*Contract: Long Term*

*Interview Mode:  F2F** OR Video Round can be done from Client locations
only – Scottsdale-AZ, Irving-TX, Buffalo Groove, IL). *

*Requirement:*

Required Qualifications

· 3-5 years of overall technical experience in DataPower
administration

· Experience in IBM DataPower XI52 and WebSphere 8.x+ architectures

· Understanding of Middleware architecture and working knowledge
with various middleware application servers integration.

· Good knowledge on Network concepts and F5 Load balancers

· Has experience in Performance tuning

· Working knowledge on SSL certificates implementation

· Solid understanding of J2EE application deployment patterns and
n-tier architectures

· Some J2EE coding experience, along with XSLT and complex/reusable
application architectures

· Understanding of SOA and web services and their deployment in
DataPower

· Planning and designing Middleware Software, including
installation and upgrades, patching, documentation,

· 24x7 operational support which includes pager rotation,

· Process maintenance and security/data protection.

· Proactively monitoring and fine tuning very large systems and
using tools like Tivoli.

· Security/performance monitoring, issue escalation and resolution,
systems engineering, administration, security documentation, and strategic
technical planning.

· Experience in AIX/Linux systems administration, networking,
storage and security concepts.

· Team player, self-motivated, requiring minimal direction, good
work ethic

· Open to learning new technologies, forward and strategic thinking.





*Thanks & Regards,*
--



Nityo Infotech Corp.
666 Plainsboro Road,

Suite 1285

Plainsboro, NJ 08536



*Sudhanshu Pandey Sr. Technical Recruiter*

Desk : 609-853-0818 X 2126
Fax :   609 7995746

*sudhansh...@nityo.com   *
*www.nityo.com *
*Gtalk : sudhanshu.intime*

-- 
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/CAEZkQ%2BjL%3DkP_GVEiPEpNkt4A3%2BFdVESR_Di2cg%2BK6LyfH6C1Sw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: How can I get Actions: PACKAGE_REMOVED and PACKAGE_ADDED

2016-05-20 Thread Xuehui Chen
Thank you so much! it works

在 2008年2月28日星期四 UTC+8上午7:52:10,hackbod写道:
>
> Yes, PACKAGE_ADDED is broadcast.  You need to also say you handle the 
> "package" scheme (the data is a Uri of the form "package: name>"). 
>
> The broadcast will probably be sent to the package that got installed, 
> but uh...  nice that you mention that, I might change that. ;) 
>
> Fwiw, this is the code in the home screen that registers a receiver at 
> runtime: 
>
> filter = new IntentFilter(Intent.PACKAGE_ADDED_ACTION); 
> filter.addAction(Intent.PACKAGE_REMOVED_ACTION); 
> filter.addAction(Intent.PACKAGE_CHANGED_ACTION); 
> filter.addDataScheme("package"); 
> registerReceiver(mApplicationsReceiver, filter); 
>
> On Feb 27, 3:43 pm, viktor  wrote: 
> > What event(s) in the system triggers the PACKAGE_ADDED intent? Is 
> > running the command "adb install mypackage.apk" sufficient? I tried it 
> > and my registered intent receiver does not receive the intent. So I 
> > need to know if my manifest is wrong or the intent does not get 
> > broadcasted. 
> > 
> > Also, is the intent broadcasted to the package that has just been 
> > installed? 
> > 
> > Manifest: 
> >  
> > http://schemas.android.com/apk/res/android; 
> > package="com.obd2.test"> 
> >  
> >  
> >  
> >  
> >  > android:name="android.intent.category.LAUNCHER" /> 
> >  
> >  
> >  
> >  
> >  
> >   > android:name="android.intent.action.PACKAGE_ADDED" /> 
> >  
> >  
> >  
> > 
> > Receiver: 
> > public class PackageAddedReceiver extends IntentReceiver { 
> > @Override 
> > public void onReceiveIntent(Context conext, Intent intent) { 
> > android.util.Log.i("test", intent.getData().toString()); 
> > } 
> > 
> > } 
> > 
> > On Jan 23, 4:56 pm, hackbod  wrote: 
> > 
> > > To receive these actions, you need to handle the "package:" scheme. 
> > > The Intent being broadcast sends the package name as 
> > > "package:".  So you should write something like this: 
> > 
> > >  
> > >  > > android:value="android.intent.action.PACKAGE_ADDED" /> 
> > >  > > android:value="android.intent.action.PACKAGE_REMOVED" /> 
> > >  
> > >  
> > 
> > > The two permissions you mentioned are not relevant -- the 
> > > BROADCAST_PACKAGE_REMOVED permission is to allow you to -broadcast- 
> > > that intent (which you aren't needing to do), and INSTALL_PACKAGES is 
> > > to allow you to physically install a package on the device. 
> > 
> > > On Jan 21, 7:25 pm, Joe  wrote: 
> > 
> > > > I want to get the Installing and removing package name, I found that 
> > > > there are two 
> > > > broadcast Actions: PACKAGE_REMOVED and PACKAGE_ADDED can help doing 
> > > > that. 
> > > > And I found the permission about packages is only 
> > > > "android.permission.BROADCAST_PACKAGE_REMOVED" 
> > > > and "android.permission.INSTALL_PACKAGES", but they are not 
> associated 
> > > > with the two actions. 
> > > > So I cannot process these two actions. 
> > > > Following is my test code, can anyone tell me what's wrong with my 
> > > > codes or how can I get the actions. 
> > > > . 
> > > >  > > > id="android.permission.BROADCAST_PACKAGE_REMOVED" /> 
> > > >  
> > > >  
> > > >  
> > > >  
> > > >  > > > android:value="android.provider.Telephony.SMS_RECEIVED" /> 
> > > >  > > > android:value="android.intent.action.PACKAGE_ADDED"/> 
> > > >  > > > android:value="android.intent.action.PACKAGE_REMOVED" /> 
> > > >  
> > > >  
> > > >  
> > > >  public void onReceiveIntent(Context context, Intent intent) { 
> > > >   /* As we want to display a Notification, we the 
> > > > NotificationManager */ 
> > 
> > > >   Log.i("recevie the message is ", intent.getAction()); 
>  //can 
> > > > not print this line 
> > > > .. 
> > 
> > > > }- Hide quoted text - 
> > 
> > > - Show quoted text -

-- 
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/e4bcd6bd-0520-41b9-ba81-e4c607f24cd5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] SAP CRM Technical Developer...Urgent Req

2016-05-20 Thread Karanam Sreedhar
Hi,



How are you?  Please find below the requirement and let me know your
comforts.  Please provide me below details in order to submit your profile.



Availability:

Current Location:

Work Status:

Rate:



Position: SAP CRM Technical Developer

Location:Sunnyvale, CA

Duration:   7+ Months



Description:

• SAP CRM Web UI developer who has considerable amount of
experience in BOL & GENIL development and CRM ABAP.

• Knowledge on SAP CRM service process development.

• Experience in working on WEBSERVICES from SAP CRM.


Best Regards,

Sreedhar Karanam

-- 
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_mo7LA%3DR4M7Wh72NuAgrx5_ZZoyVANdSQBWJ0meRSxv0Oksw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] How can I know that an App built in Android 5.1 SDK, will run on a 6.0 device

2016-05-20 Thread michael_bentz
Thanks TreKing

On Friday, May 20, 2016 at 10:05:04 AM UTC-4, TreKing wrote:
>
>
> On Thu, May 19, 2016 at 8:46 AM,  
> wrote:
>
>> How can a know for a fact that this app will run on devices running 6.0?
>
>
> For a fact? You can't know that for a fact, as that would require testing 
> every physical device running 6.0 which is quite impossible.
>
> This should be of little concern though as Android is designed to run 
> older apps in "compatibility" modes so they continue to work as they did 
> even when run on newer platforms.
>
>
> -
> TreKing  - Chicago 
> transit tracking app for Android-powered devices
>

-- 
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/67281c04-1c59-4358-b33f-75cca5b1387d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Looking for Cloud API Consultant

2016-05-20 Thread sarita D
Hello,

Please find the below job description and forward profiles to
r...@hclglobal.com



*We need real time candidates. Must H1-B. We have BGV*



*Title: Cloud API Consultant *

*Location: Bellevue - Washington *

*Duration: 3 to 6 months*

*Rate: DOE*



*Job Description:*

10+ Years of experience as Solution Architect

Atleast have managed 1 end to end BI project as an Architect on Cloud

Should have managed 1 project with Microsoft suite of products SSIS,
SQLServer, SSRS etc

Good understanding of various components like Real Time, In Memory
processingetc

Expert knowledge of DWH concepts.

Telecom domain knowledge will be preferable.

 Should be a good communication skills


*Skill and Experience Details:*

*Mandatory Skills:* Cloud Applications PaaS, SaaS, Cloud App Dev
Consulting, Cloud Computing, Consulting
*Language Skills:* English Language



*Sarita D **|* Recruiter *|* HCL Global Systems, Inc.

T 248.473.0720 Ext:171 *|* r...@hclglobal.com

24543 Indoplex Circle, Suite #220, Farmington Hills, Michigan - 48335



-- 
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/CAFkUoStp4gaBaYEn2CVQh6yc%3DsHYmU0b7hd8iWta%2BxWSegd_tA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] How can I know that an App built in Android 5.1 SDK, will run on a 6.0 device

2016-05-20 Thread TreKing
On Thu, May 19, 2016 at 8:46 AM,  wrote:

> How can a know for a fact that this app will run on devices running 6.0?


For a fact? You can't know that for a fact, as that would require testing
every physical device running 6.0 which is quite impossible.

This should be of little concern though as Android is designed to run older
apps in "compatibility" modes so they continue to work as they did even
when run on newer platforms.

-
TreKing  - Chicago
transit tracking app for Android-powered devices

-- 
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/CANCScgje2j0N3HTyFMSNYTZwaD3joCa%3DiZCpH%2BNfDx6C2ZEQ1w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Game Service error (4800000)

2016-05-20 Thread vahid mostofi
Hi, i have the same problem, could i u solve the problem?

On Friday, May 20, 2016 at 3:42:15 AM UTC+4:30, MEGA Development wrote:
>
>
> whenever I try to create a new service and arrive at the " SET THE GOOGLE 
> PLAY SERVICES TO PLAY AN APP " appears the error (480) 
>
> someone help ?
>

-- 
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/4f6f7713-a1b7-4102-8439-8f7f590a3854%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Monetarization question

2016-05-20 Thread TreKing
On Mon, May 16, 2016 at 11:57 AM, Ernst Lubitsch 
wrote:

> How can I charge my customers for add-ons and updates via Google Play?


https://developer.android.com/distribute/monetize/index.html

-
TreKing  - Chicago
transit tracking app for Android-powered devices

-- 
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/CANCScghaT50hDgcH0EuMM87Xt3KUxK6bFOW%2B3Cbk7YTyc-UCkA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Need Local's::::::::::::::ReactJS developer ,Boston , MA ,Long Term

2016-05-20 Thread sudhanshu pandey
*Hi There,*

*I am looking for Relevant consultant for below job description.*

*Job Title: ReactJS developer *

*Location: Boston , MA *

*Contract: Long Term*

*Interview Mode:  F2F*

*Requirement:*

· *Master level expertise in core UI JavaScript ,HTML 5 concepts
including modular and OO design *

· *Strong expertise in React JS *

· Strong expertise in JavaScript asynchronous programming,
closures, callbacks, prototypes

· Strong expertise in JavaScript MVC/MVP/DOM frameworks such as
ReactJS, AngularJS, Backbone.js, Ember.js, Knockout.js, Node.js, as jQuery

· Strong expertise with Web and RESTful services

· Experience working in fast paced, agile teams



*Thanks & Regards,*
--



Nityo Infotech Corp.
666 Plainsboro Road,

Suite 1285

Plainsboro, NJ 08536



*Sudhanshu Pandey Sr. Technical Recruiter*

Desk : 609-853-0818 X 2126
Fax :   609 7995746

*sudhansh...@nityo.com   *
*www.nityo.com *
*Gtalk : sudhanshu.intime*

-- 
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/CAEZkQ%2BiBK_UT8_%2B%2BXtiaVEvz0-cx6JLmrBoc-v7AVAXB3azCcg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Hot-List

2016-05-20 Thread Rahul Technocraft
*Hi ,*

*Hope you are doing great!*

*Please find the Hotlist of our Bench consultants, they are available
immediately and are open to relocate. Please share the suitable
requirements to **ra...@technocraftsol.com* * or you
can reach me at **614-664-7826**.  let me known if you any suitable
Contracts requirements for them.*

*Note:  please add my Email ID to your distribution list. *


*S.NO* 

*Name*

*Technology*

*Location*

*Experience*

*Relocation*

*1*

*Saurin*

*ETL Informatica*

*Birmingham, IL*

*8+*

*Yes*

*2*

*Anu*

*SQL SERVER*

*Houston,TX*

*7+*

*Open*

*3*

*Mrunali*

*Informatica*

*Irvine,CA*

*7+*

*CA, TX, FL, NC, AZ*

*4*

*Mayu*

*ETL Informatica*

*Plattsburgh,NY*

*7.5*

*Yes*

*5*

*Aishwarya*

*BA*

*Oregon*

*7+*

*Only Oregon*

*6*

*Shradha*

*Sr. ETL Developer*

*Dallas,Tx*

*11+*

*Only Dallas*

*7*

*Sowmya*

*PL/SQL*

*Dallas, TX*

*8+*

*Yes*

*8*

*Rama Krishna*

*PL/SQL*

*Tampa,FL*

*7+*

*Yes*

*9*

*Krunal*

*ETL Informatica*

*Cary, NC*

*7+*

*Yes*

*10*

*Gunemoni*

*Service Now Developer*

*Columbus,OH*

*8*

*Yes*

*11*

*Shree Jana*

*Java*

*Sanfransisco,CA*

*7+*

*Only Texas*

*12*

*Rounak*

*Business Analyst *

*Des Moines, IA*

*7+*

*Open*

*13*

*Mani*

*Oracle Apps Techno*

*Sunnyvale,CA*

*7+*

*Open*

*14*

*Sampath*

*Tableau*

*Bloomington,IL*

*7+*

*Open*

*15*

*Gaurav*

*Oracle DBA*

*Santa Clara,CA*

*7+*

*Open*

*16*

*Raja*

*Tableau*

*Chicago,IL*

*7+*

*Open*


*Thanks and Regards*

*RAHUL*



*Business Development Manager*

*Email** : *ra...@technocraftsol.com

*Contact**:* 614-664-7826

*Yahoo ID / Gmail ID** :*
rahul.technocr...@yahoo.com/rahul.technocaft...@gmail.com

*Linkedin : **https://www.linkedin.com/home?trk=nav_responsive_tab_home*


www.technocraftsol.com

www.xdimensiontech.com

Partner with XDimension Technology

-- 
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/CAJV2-zYbwFMeVJh7-NX3PQzsFARutOGfeTbjZ2Sg8-UvNgTrdg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Hotlist - Technocraft Solutions

2016-05-20 Thread Tapan Kushwaha
Hello,

Greetings!



This is with reference to the Updated Hot-List of “Technocraft Solutions”
consultants, who are actively looking for a new contract opportunity;
Please let me know if you have any suitable requirement for our active
consultants. Also please send me your Job Requirements at
*ta...@technocraftsol.com*  or you can reach me
at 614-664-7644


*S.NO* 

*Name*

*Technology*

*Location*

*Experience*

*Relocation*

1

Shradha

Sr. ETL Developer

Dallas, TX

11+

Only Dallas

2

Mayu

ETL Informatica

Plattsburgh, NY

7.5

Yes

3

Saurin

ETL Informatica

Birmingham, IL

8+

Yes

4

Krunal

ETL Informatica

Cary, NC

7+

Yes

5

Mrunali

Informatica

Irvine, CA

7+

CA, TX, FL, NC, AZ

6

Sowmya

PL/SQL

Dallas, TX

8+

Yes

7

Rama

PL/SQL

Tamha, FL

7+

Yes

8

Ami

SQL/BI Developer

Piscataway, NJ

7+

 Open

9

Anusha

SQL/ SSIS/ SSRS

Dallas, TX

7+

Open

10

Sai

Service NOW

Dallas, TX

7+

Yes

11

Rounak

Business Analyst

Des Moines, IA

7+

Open

12

Sree

Business Analyst

Houston, TX

7+

Open



Looking forward to do Business with you.



Thanks,



*TAPAN*

*Business Development Manager*

*Technocraft Solutions LLC*

7000 parkwood Blvd, Ste#200G

Frisco,TX,75034

Email: ta...@technocraftsol.com

www.technocraftsol.com

www.xdimensiontech.com

Partner with XDimension Technology

Yahoo Id:Tapan_technocraft

Gmail Id: Tapan.technocraft

Contact: 614-664-7644

Fax: 866-360-3962

-- 
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/CA%2BRjhA-rfX0OYEMcSbOng%3DeTyte28_ieN%3DvA7t5q7H7onjOQ7g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Game Service error (4800000)

2016-05-20 Thread B Wolf
I am having the same error...details is given on the screenshotif you 
get a solution, *please post it here.*

On Friday, May 20, 2016 at 5:12:15 AM UTC+6, MEGA Development wrote:
>
>
> whenever I try to create a new service and arrive at the " SET THE GOOGLE 
> PLAY SERVICES TO PLAY AN APP " appears the error (480) 
>
> someone help ?
>

-- 
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/4de78e39-65f2-45a0-b7c9-3e2e7dd045f8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: VideoView inside a ListView

2016-05-20 Thread Ankit Sevak
   Hello Every One
 
   In this time i am Suffering  one problem in Android code.
  I am working on a project which should include a list of videos from 
allover the internet 
(video sources are different - youtube, vimeo, facebook, videos hosted on 
servers, ...). 
I am trying to make a ListView, where item has a video player and some 
description
 When user clicks on play button the video starts playing. I made one 
example, 
where I use VideoView as player, but soon realised that the performance is 
not very good - *scrolling is very laggy * 







On Friday, August 13, 2010 at 4:01:12 AM UTC+5:30, Sandy wrote:
>
> I am trying to play a video via VideoView in my android application. 
> The VideoView is one of items inside a ListView. Video playing 
> functionality works good but when the list scroll happens, there are 
> rendering artifacts at the boundaries of the list. Also, the video 
> view surface changes location only after scroll/flick is complete. 
>
> Anyone tried this before in android? Does android allow this ? If so, 
> can you please suggest of how to fix the rendering artifacts? 
>
> Thanks, 
> Sandy 
>

-- 
This email and any files transmitted with it are confidential and intended 
solely for the use of the individual or entity to whom they are addressed. Any 
views or opinions expressed are solely those of the sender and do not 
necessarily represent those of Pardy Panda Studios. If you have received 
this email in error please notify the sender.

-- 
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/f1eb7d6e-1669-451b-b0aa-e4d7ed835af6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Android Support Toolbar with overflow menu

2016-05-20 Thread rotem levi
Hey, 

I have an android support toolbar implementation on my app,
My toolbar is set to match parent width.
*I want the result as picture number two but with overflow menu like 
picture number one.*

*This is the layout rendered with overflow menu:*



*This is the layout rendered without overflow menu:*



My tool bar XML::
 


http://schemas.android.com/apk/res/android;
xmlns:app="http://schemas.android.com/apk/res-auto;
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/registration_toolbar_background"
android:clipToPadding="false"
android:minHeight="?attr/actionBarSize"
android:theme="@style/MeetzToolBarTheme"
android:popupTheme="@style/MeetzPopupTheme"
app:contentInsetEnd="0dp"
app:contentInsetLeft="0dp"
app:contentInsetRight="0dp"
app:contentInsetStart="0dp"
android:padding="0dp"
android:textDirection="locale"
android:layoutDirection="locale"
android:elevation="@dimen/_25sdp">





























http://schemas.android.com/apk/res/android;
xmlns:app="http://schemas.android.com/apk/res-auto;
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/registration_toolbar_background"
android:clipToPadding="false"
android:minHeight="?attr/actionBarSize"
android:theme="@style/MeetzToolBarTheme"
android:popupTheme="@style/MeetzPopupTheme"
app:contentInsetEnd="0dp"
app:contentInsetLeft="0dp"
app:contentInsetRight="0dp"
app:contentInsetStart="0dp"
android:padding="0dp"
android:textDirection="locale"
android:layoutDirection="locale"
android:elevation="@dimen/_25sdp">





























My header XML:



http://schemas.android.com/apk/res/android;
xmlns:app="http://schemas.android.com/apk/res-auto;
android:id="@+id/meeting_header"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layoutDirection="locale"
android:textDirection="locale">












































-- 
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/e646ccf0-eb67-453f-b2c8-67ad26349559%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] way to link the gmail account to application account?

2016-05-20 Thread Roopa Venkatesh
I am an android developer and implementing inapp purchase feature in my 
application.

As per the documentation, list of products purchased will be tied to gmail 
account on the device.
As the user will create an account with the application also for login, Is 
there a way to link the play store account the user used to buy the in app 
product with the application account/user.

To be more clear, assume user's playstore account is a...@gmail.com and the 
application account is  x...@app.com (it can be any email id). User buys a 
product with a...@gmail.com logged in the app using x...@app.com, then if 
another user logs into the application with 1...@app.com then the product 
that is bought with x...@app.com comes free for 1...@app.com?

Is there a way to avoid this?  Please help.

-- 
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/dd566db8-de9b-45d9-9edc-09a8703e1b19%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Changing soft input language from code

2016-05-20 Thread Gabriel Morin
Hello,

I'm working on an app where the user needs to write in more than one 
language.
Basically, writing a word in a language, then writing the translation in 
another language.
I'm kind of used to switching manually with the little language icon on the 
keyboard, even though it's very painful.
But many of my user feel lost, they don't know (or sometimes can't because 
of the keyboard installed) change the input language.
It's especially a problem when the alphabet is not the same at all between 
the two languages (Latin, Cyrillic, Japanese, Chinese...)

I looked everywhere but could not find any way to change the soft input's 
language from my app's code.

Am I missing something ? If not, is there something on the way that can 
keep me hopeful?

Thanks, 

Gabriel

-- 
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/28c69ba8-95bf-4672-914c-a93f358b7764%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Android-sdk manager is not showing all Packages

2016-05-20 Thread Niladri Dutta
Hi geeks, 


I have a problem , my android-sdk-manager is suddenly stopped showing all 
packages, it is only showing the installed packages only. Can you guys help 
me out how to solve this issue?




-- 
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/9675d29f-a778-4aae-aad0-343690d5744a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] launcher 3 import library

2016-05-20 Thread faisal r
can i import android support design, appcompatactivity to launcher3?

-- 
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/9347e321-f667-42d2-a951-752d2de354b8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.