Re: [android-developers] Re: problem with sending data from app by volley to mysqli

2016-04-19 Thread VISHAL TIKKU
Try from postman client and analyze the response.

On 20 April 2016 at 10:17, Nizzam Mohd  wrote:

> I also facing the same problem, I already debug and everything looks fine.
> Could it be a server response ?
>
> On Sunday, December 6, 2015 at 6:09:11 PM UTC+8, AbdulMajeed Mohammad
> wrote:
>>
>> Hi,
>>
>> I have problem with sending data from app to mysql by php file, I hope to
>> get some help
>> I don't know also if I did it in right way,
>>
>> contact.java
>>
>> public class Contact extends AppCompatActivity {
>>
>> EditText name,phone,email,subject;
>> Button add;
>> RequestQueue requestQueue;
>> String addUrl = "http://10.0.2.2/alruthea/contact/addcontact.php";;
>>
>> @Override
>> protected void onCreate(Bundle savedInstanceState) {
>> super.onCreate(savedInstanceState);
>> setContentView(R.layout.activity_contact);
>> getSupportActionBar().setDisplayShowCustomEnabled(true);
>> getSupportActionBar().setCustomView(R.layout.actionbar);
>>
>> name = (EditText) findViewById(R.id.contactname);
>> phone = (EditText) findViewById(R.id.contactphone);
>> email = (EditText) findViewById(R.id.contactemail);
>> subject = (EditText) findViewById(R.id.contactsubject);
>> add = (Button) findViewById(R.id.contactsend);
>>
>>
>> requestQueue = Volley.newRequestQueue(getApplicationContext());
>>
>>
>> add.setOnClickListener(new View.OnClickListener() {
>> @Override
>> public void onClick(View view) {
>> StringRequest request = new StringRequest(Request.Method.POST, 
>> addUrl, new Response.Listener() {
>> @Override
>> public void onResponse(String response) {
>>
>> }
>> }, new Response.ErrorListener() {
>> @Override
>> public void onErrorResponse(VolleyError error) {
>>
>> }
>> }) {
>> @Override
>> protected Map getParams() throws 
>> AuthFailureError {
>> Map parameters = new HashMap> String>();
>> parameters.put("name", name.getText().toString());
>> parameters.put("phone", phone.getText().toString());
>> parameters.put("email", email.getText().toString());
>> parameters.put("subject", subject.getText().toString());
>>
>> return parameters;
>> }
>> };
>> requestQueue.add(request);
>> }
>>
>> });
>>
>>
>> }
>>
>> }
>>
>>
>>
>> connection.php
>>
>> >
>> define('hostname','localhost');
>> define('user' , 'root');
>> define('password','');
>> define('databaseName','alruthea');
>>
>> $connect = mysqli_connect(hostname, user, password, databaseName);
>>
>> ?>
>>
>>
>>
>>
>>
>> addcontact.php
>>
>> >
>> if($_SERVER["REQUEST_METHOD"]=="POST"){
>>require 'alruthea/contact/connection.php';
>>createContact();
>>}
>>
>>function createcontact()
>>{
>>global $connect;
>>
>>$name = $_POST["name"];
>>$phone = $_POST["phone"];
>>$email = $_POST["email"];
>>$subject = $_POST["subject"];
>>
>>$query = "Insert into contact(name,phone,email,subject) values
>> ('$name;,'$phone','$email','$subject');";
>>
>>mysqli_query($connect, $query) or die (mysqli_error($connect));
>>mysqli_close($connect);
>>}
>>
>>?>
>>
>>
>>
>>
>> --
> 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/ofI7CeDO9gM/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/ad591b4c-999c-4191-a1e5-2cd0b8ce4ca1%40googlegroups.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/CAJK-5s9uYLJfCRtvvPKpXcODQwfmAkeu5uyZY2gKu0F0ZFUSQw%40mail.gmail.com.
For more options, visit https://g

[android-developers] QSync - selenium training programme

2016-04-19 Thread qsyncindia2





*Get Trained on Selenium and Placed in Your Dream Company*

 

*Selenium along with Java Training from Experienced IT Professionals*

*Frame work Development using Selenium, Maven Grid, Jenkins*

 

*Week End Batch Starts on 23-04-2016 Saturday at 10 AM*

*Fee for selenium and java is Rs 7000*


*For Details Contact US @ 080 – 41503090*

*#12, 2nd floor, YSR Mansion, Behind HDFC Bank*

*Ambalipura, Bellandur Gate.*

*Bangalore - 560103*

 

 

 

-- 
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/71db078e-4dd6-4cfe-b415-6f44787661cf%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: problem with sending data from app by volley to mysqli

2016-04-19 Thread Nizzam Mohd
I also facing the same problem, I already debug and everything looks fine. 
Could it be a server response ?

On Sunday, December 6, 2015 at 6:09:11 PM UTC+8, AbdulMajeed Mohammad wrote:
>
> Hi,
>
> I have problem with sending data from app to mysql by php file, I hope to 
> get some help
> I don't know also if I did it in right way,
>
> contact.java
>
> public class Contact extends AppCompatActivity {
>
> EditText name,phone,email,subject;
> Button add;
> RequestQueue requestQueue;
> String addUrl = "http://10.0.2.2/alruthea/contact/addcontact.php";;
>
> @Override
> protected void onCreate(Bundle savedInstanceState) {
> super.onCreate(savedInstanceState);
> setContentView(R.layout.activity_contact);
> getSupportActionBar().setDisplayShowCustomEnabled(true);
> getSupportActionBar().setCustomView(R.layout.actionbar);
>
> name = (EditText) findViewById(R.id.contactname);
> phone = (EditText) findViewById(R.id.contactphone);
> email = (EditText) findViewById(R.id.contactemail);
> subject = (EditText) findViewById(R.id.contactsubject);
> add = (Button) findViewById(R.id.contactsend);
>
>
> requestQueue = Volley.newRequestQueue(getApplicationContext());
>
>
> add.setOnClickListener(new View.OnClickListener() {
> @Override
> public void onClick(View view) {
> StringRequest request = new StringRequest(Request.Method.POST, 
> addUrl, new Response.Listener() {
> @Override
> public void onResponse(String response) {
>
> }
> }, new Response.ErrorListener() {
> @Override
> public void onErrorResponse(VolleyError error) {
>
> }
> }) {
> @Override
> protected Map getParams() throws 
> AuthFailureError {
> Map parameters = new HashMap String>();
> parameters.put("name", name.getText().toString());
> parameters.put("phone", phone.getText().toString());
> parameters.put("email", email.getText().toString());
> parameters.put("subject", subject.getText().toString());
>
> return parameters;
> }
> };
> requestQueue.add(request);
> }
>
> });
>
>
> }
>
> }
>
>
>
> connection.php
>
> 
> define('hostname','localhost');
> define('user' , 'root');
> define('password','');
> define('databaseName','alruthea');
>
> $connect = mysqli_connect(hostname, user, password, databaseName);
>
> ?>
>
>
>
>
>
> addcontact.php
>
> 
> if($_SERVER["REQUEST_METHOD"]=="POST"){
>require 'alruthea/contact/connection.php';
>createContact();
>}
>
>function createcontact()
>{
>global $connect;
>
>$name = $_POST["name"];
>$phone = $_POST["phone"];
>$email = $_POST["email"];
>$subject = $_POST["subject"];
>
>$query = "Insert into contact(name,phone,email,subject) values 
> ('$name;,'$phone','$email','$subject');";
>
>mysqli_query($connect, $query) or die (mysqli_error($connect));
>mysqli_close($connect);
>}
>
>?>
>
>
>
>
>

-- 
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/ad591b4c-999c-4191-a1e5-2cd0b8ce4ca1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] ImmersiveFocusNotifcation

2016-04-19 Thread dsavereide


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.

 

Everything is normal until we access our first .NET control. Then existing 
native windows are resized, text is redrawn with a tiny font and the menu 
bar is now too short to display the menu. I monitored the messages coming 
in and compared them to a Windows 10 Pro PC. The difference is the 
ImmersiveFocusNotifcation (wparam = 0xFFFC), which I understand is an 
android device specific message. We are not receiving any resize messages.

 

It doesn't matter if I ignore it, or answer true or false. Since we are not 
using Immersive Mode or doing anything Android specific, this is confusing 
to me.

 

Does anyone have any ideas for dealing with it?

-- 
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/a64b4f83-8468-4a24-989a-cd8d25ca4ad1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Urgent Req:::::::::::::SAP BPC ,Santa Clara, CA ,6- 12+ Months

2016-04-19 Thread mike digioia
Submit me
On Apr 19, 2016 12:04 PM, "sudhanshu pandey" 
wrote:

> *Hi There,*
>
> *I am technical recruiter and I am looking for Relevant consultant for
> below job description, if interested please let me know the hourly rate you
> are looking for below mention job position.*
>
> *Job Title: SAP BPC*
>
> *Location: Santa Clara, CA *
>
> *Contract: 6- 12+ Months *
>
> *Requirement:*
>
> · SAP BPC 10.0 or 10.1 Net Weaver experience; 2-3 full life cycle
> projects
>
> · BW 7.4 experience including data extraction and modeling;
>
> · Duties & Responsibilities
>
> · Perform BPC planning administration functions
>
> · Monitor and optimize the performance of the BPC planning
> application
>
> · Facilitate requirement gather for financial reporting and
> enhancement and document functional specs to BW technical team;
>
> · Experience in participating and supporting integration testing
> cycle and ability to drive defect resolution for any problem identified;
>
> · Delivery and support of BPC end user training;
>
> · Functional knowledge of CRM, Order Management, Revenue
> Recognition and COPA in SAP ECC6 is desired;
>
> · Excellent verbal and written communication skills.
>
> *Desirable Functional Skills  *
>
> · Functional knowledge of CRM, Order Management, Revenue
> Recognition and COPA in SAP ECC6 is desired
>
> *Total Experience Required  *
>
> · 6- 8 years of experience
>
>
>
> *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%2BhjBXD61KpTz1vv%3D7_A9a_VzXKuNzN9TLJMwxhCpAZsBQ%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/CAMCsUi6n_63xBNzV3qD9mbAXbU-tE%3DtRCVDdp7gSQoEmxZMrnQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Shorter2ResumeEmbeddedUpton46s.doc
Description: MS-Word document


[android-developers] Urgent requirement |buyer|

2016-04-19 Thread durganaveen . usit


Hi  ,

 

This is Naveen from SAGE IT INC.
Hope you are doing great. Please send me your updated resume if you’re 
interested for this position.

 

*JD for Buyer Requirement at Google*

 

*  Location – Bay Area /CA*

*Duration – Long Term*

· Understanding Procurement and Supply Chain Operations 

· Vendor Relations and Quality Operations, Purchasing Operations

· Coordinating purchasing efforts for indirect materials from all 
departments using BPO and POs, Purchasing prototype parts for Engg teams

· Resolve bottlenecks through sourcing of new and direct vendors; 
Work closely with customer and vendor/3rd party 

· Open lines communication bw warehouse, vendors, manufacturing and 
R&D to expedite orders and provide real time problem resolutions

· Year of exp - 2+

· Other skills – Excel and other similar tools, Smart, Independent, 
Problem solving skills, Top communication

· Skills seem to be similar to BPO/KPO skills; Entry into this area 
might give visibility to Engg work also

 

*Thanks & Regards, *

*Durga Naveen*

*Sage IT, Inc*

*Ph:  972 996 0650 Extn 349  *

*c**naveen**@sageitinc.net  *

*URL: www.sageitinc.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/4a0c34f4-67f8-49a3-ad0d-f306fa6d71cd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Req:::::::::::::SAP BPC ,Santa Clara, CA ,6- 12+ Months

2016-04-19 Thread sudhanshu pandey
*Hi There,*

*I am technical recruiter and I am looking for Relevant consultant for
below job description, if interested please let me know the hourly rate you
are looking for below mention job position.*

*Job Title: SAP BPC*

*Location: Santa Clara, CA *

*Contract: 6- 12+ Months *

*Requirement:*

· SAP BPC 10.0 or 10.1 Net Weaver experience; 2-3 full life cycle
projects

· BW 7.4 experience including data extraction and modeling;

· Duties & Responsibilities

· Perform BPC planning administration functions

· Monitor and optimize the performance of the BPC planning
application

· Facilitate requirement gather for financial reporting and
enhancement and document functional specs to BW technical team;

· Experience in participating and supporting integration testing
cycle and ability to drive defect resolution for any problem identified;

· Delivery and support of BPC end user training;

· Functional knowledge of CRM, Order Management, Revenue
Recognition and COPA in SAP ECC6 is desired;

· Excellent verbal and written communication skills.

*Desirable Functional Skills  *

· Functional knowledge of CRM, Order Management, Revenue
Recognition and COPA in SAP ECC6 is desired

*Total Experience Required  *

· 6- 8 years of experience



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


[android-developers] Android Auto text reply to phone call not working

2016-04-19 Thread Jake Brantley


I have created an app that initiates a broadcast receiver class that should 
auto respond to phone calls with a text message. The receiver is working 
however I get the following exception:

*java.lang.IllegalArgumentException: Invalid destinationAddress*

It looks like "incomingNumber" isn't actually getting retrieved. Please 
help!!!


*Main Activity:*

package com.biapps.makin_biscuits;
import android.content.BroadcastReceiver;import android.content.Context;import 
android.content.ContextWrapper;import android.media.AudioManager;import 
android.support.v7.app.AppCompatActivity;import android.os.Bundle;import 
android.content.Intent;import android.telephony.PhoneStateListener;import 
android.telephony.TelephonyManager;import android.view.View;import 
android.widget.ImageButton;import android.util.Log;import 
android.widget.TextView;import android.widget.Toast;
import com.biapps.Contact;import com.biapps.DatabaseHandler;
import java.util.List;
public class MainActivity extends AppCompatActivity {
//set object labels and states here
private ImageButton icon;
private AudioManager am;
private ImageButton people;
private ImageButton ring;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);


am = (AudioManager) getSystemService(Context.AUDIO_SERVICE);

icon = (ImageButton) findViewById(R.id.icon);
icon.setOnClickListener(imgButtonHandler);
people = (ImageButton) findViewById(R.id.people);
people.setOnClickListener(peopleButtonHandler);
ring = (ImageButton) findViewById(R.id.ring);

}

int buttonstate = 0;
public View.OnClickListener imgButtonHandler = new View.OnClickListener() {

public void onClick(View v) {
if (buttonstate == 0) {

icon.setImageResource(R.drawable.buttonup);
buttonstate = 1;
am.setRingerMode(0);
Toast.makeText(getApplicationContext(), "Go!!",
Toast.LENGTH_SHORT).show();

Intent intent = new Intent();
intent.addFlags(Intent.FLAG_INCLUDE_STOPPED_PACKAGES);
intent.setAction("android.intent.action.Trigger");
sendBroadcast(intent);
} else {

icon.setImageResource(R.drawable.button);
buttonstate = 0;
am.setRingerMode(2);
Toast.makeText(getApplicationContext(), "Come back!!",
Toast.LENGTH_SHORT).show();
}
}
};




*Incoming Call Reveiver:*

package com.biapps.makin_biscuits;
import android.content.BroadcastReceiver;import android.content.Context;import 
android.content.Intent;import android.os.Bundle;import 
android.telephony.PhoneStateListener;import android.telephony.SmsManager;import 
android.telephony.TelephonyManager;import android.util.Log;import 
android.widget.Toast;
/**
 * Created by Jake on 3/21/2016.
 */
public class IncomingCallReceiver extends BroadcastReceiver {
private static final String TAG = "MyListener";
private Context mContext;
private Intent mIntent;

@Override
public void onReceive(Context context, Intent intent) {
mContext = context;
mIntent = intent;
TelephonyManager tm = 
(TelephonyManager)mContext.getSystemService(Context.TELEPHONY_SERVICE);
int events = PhoneStateListener.LISTEN_CALL_STATE;

tm.listen(phoneStateListener, events);
}

private final PhoneStateListener phoneStateListener = new 
PhoneStateListener() {
@Override

public void onCallStateChanged(int state, String incomingNumber) {
super.onCallStateChanged(state, incomingNumber);

Log.i(TAG, "number: " + incomingNumber + "");

String PhoneNr = incomingNumber;

switch (state) {
case TelephonyManager.CALL_STATE_IDLE:
Toast.makeText(mContext,"no-one Calling " + 
PhoneNr,Toast.LENGTH_LONG).show();
break;
case TelephonyManager.CALL_STATE_RINGING:
// -- check international call or not.
if (incomingNumber.startsWith("1865")) {
Toast.makeText(mContext,"Knoxville Calling " + PhoneNr 
+ "",Toast.LENGTH_LONG).show();
SmsManager smsManager = SmsManager.getDefault();
smsManager.sendTextMessage(PhoneNr, null, "I'm busy 
bruh", null, null);
} else {
Toast.makeText(mContext,"Other Calling: " + PhoneNr + 
"", Toast.LENGTH_LONG).show();
SmsManager smsManager = SmsManager.getDefault();
smsManager.sendTextMessage(PhoneNr, null, "I'm busy 
bruh", null, null);
}
}
   }
};}


*Manifest:*

http://sch

[android-developers] BPM Solution Architect,Dallas, TX ,8+ Months

2016-04-19 Thread sudhanshu pandey
*Hi There,*

*I am technical recruiter and I am looking for Relevant consultant for
below job description, if interested please let me know the hourly rate you
are looking for below mention job position.*

*Job Title: BPM Solution Architect*

*Location: Dallas, TX*

*Contract: 8+ Months *

*Requirement:*

· Design and implement BPM business Process Management.

· Total Experience 10 or above

*Competencies:*

· Business Process Management.



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


Re: [android-developers] Urgent Req:::::::::::::SAP BPC ,Santa Clara, CA ,6- 12+ Months

2016-04-19 Thread mike digioia
Submit me
On Apr 19, 2016 10:44 AM, "sudhanshu pandey" 
wrote:

> *Hi There,*
>
> *I am technical recruiter and I am looking for Relevant consultant for
> below job description, if interested please let me know the hourly rate you
> are looking for below mention job position.*
>
> *Job Title: SAP BPC*
>
> *Location: Santa Clara, CA *
>
> *Contract: 6- 12+ Months *
>
> *Requirement:*
>
> · SAP BPC 10.0 or 10.1 Net Weaver experience; 2-3 full life cycle
> projects
>
> · BW 7.4 experience including data extraction and modeling;
>
> · Duties & Responsibilities
>
> · Perform BPC planning administration functions
>
> · Monitor and optimize the performance of the BPC planning
> application
>
> · Facilitate requirement gather for financial reporting and
> enhancement and document functional specs to BW technical team;
>
> · Experience in participating and supporting integration testing
> cycle and ability to drive defect resolution for any problem identified;
>
> · Delivery and support of BPC end user training;
>
> · Functional knowledge of CRM, Order Management, Revenue
> Recognition and COPA in SAP ECC6 is desired;
>
> · Excellent verbal and written communication skills.
>
> *Desirable Functional Skills  *
>
> · Functional knowledge of CRM, Order Management, Revenue
> Recognition and COPA in SAP ECC6 is desired
>
> *Total Experience Required  *
>
> · 6- 8 years of experience
>
>
>
> *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%2BgeP5wFZ8--zFDCozJ0C7H84_dB9xbMPYsbD0iPS0Vkrw%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/CAMCsUi5rT9%2BEenhFyyzetfPmXFgMyAkg0nVExKLtNswWxmx8cA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Shorter2ResumeEmbeddedUpton46s.doc
Description: MS-Word document


[android-developers] Urgent Req:::::::::::::SAP BPC ,Santa Clara, CA ,6- 12+ Months

2016-04-19 Thread sudhanshu pandey
*Hi There,*

*I am technical recruiter and I am looking for Relevant consultant for
below job description, if interested please let me know the hourly rate you
are looking for below mention job position.*

*Job Title: SAP BPC*

*Location: Santa Clara, CA *

*Contract: 6- 12+ Months *

*Requirement:*

· SAP BPC 10.0 or 10.1 Net Weaver experience; 2-3 full life cycle
projects

· BW 7.4 experience including data extraction and modeling;

· Duties & Responsibilities

· Perform BPC planning administration functions

· Monitor and optimize the performance of the BPC planning
application

· Facilitate requirement gather for financial reporting and
enhancement and document functional specs to BW technical team;

· Experience in participating and supporting integration testing
cycle and ability to drive defect resolution for any problem identified;

· Delivery and support of BPC end user training;

· Functional knowledge of CRM, Order Management, Revenue
Recognition and COPA in SAP ECC6 is desired;

· Excellent verbal and written communication skills.

*Desirable Functional Skills  *

· Functional knowledge of CRM, Order Management, Revenue
Recognition and COPA in SAP ECC6 is desired

*Total Experience Required  *

· 6- 8 years of experience



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


[android-developers] Exalead CloudView Developer ,Greenville SC ,12+ Months......US Citizen or Green Card Holders Only

2016-04-19 Thread sudhanshu pandey
*Hi There,*

*I am technical recruiter and I am looking for Relevant consultant for
below job description, if interested please let me know the hourly rate you
are looking for below mention job position.*

*Job Title: Exalead CloudView Developer *

*Location: Greenville SC *

*Contract: 12+ Months *

*Requirement:*

· 5 Yrs.

· Must have worked on ExaleadOnePart and ExaleadCloudView

· Must have hands-on experience working with Enovia V6 2014 x&
beyond

· +5 years’ Experience in Enovia V6 3DExperience (V6 2013X, V6
2014X / 2015X)

· Must have worked on all Enovia modules.

· Needs to know in detail level the technical functionality of OOTB
3DExperience.

· Able to coordinate internal resources for testing, but also
support and coordinate testing activities during SIT and UAT

· Proven experience in leading workshops to identify requirements,
provide solutions and validate design/configuration

· Minimum 5 yrs. strong developer experience& onsite delivery role

· Must have experience in Enovia centrals

· Implementation experience in Enovia V6 2012x & beyond  (designing
and developing solutions in Enovia)

· Enovia upgrade experience

· Expertise in C,C++, MQL,Java

· Installation & Configuration experience desired

· Functional understanding of Item & BOM Management, Compliance
Management, Change Management and Manufacturing Process

*Roles & Responsibilities*

· Develop Search Based Applications using ExaleadCloudView.

· Develop, configure and test applications on ExaleadOnePart.

· Support the development of a To-Be Process

· Facilitation of meetings to define use cases and detail
functional specification

· Review of FS with functional team

· Support and coordinate all aspects for Testing activities (CRP,
SIT, UAT)

· Active participation on training and transition activities.

· Requirement Analysis

· Coordination with SMEs for requirements

· Provide proof of concept(POC) if required

· Capture all the requirements in the Quality Center (QC)

· Document all the OOTB defects and follow up with DS.

· Functional Spec Documentation

· Obtain BRD and FS sign off from business team

· Technical Design

· Provide functional support to development and testing team

· Coordinate SIT and UAT with business users.

· Provide demos to users as and when required

· Prepare training material and arrange training sessions for
business users



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


[android-developers] Outage Management Systems Application Engineer ,Irwindale, California,12+ Months

2016-04-19 Thread sudhanshu pandey
*Hi There,*

*I am technical recruiter and I am looking for Relevant consultant for
below job description, if interested please let me know the hourly rate you
are looking for below mention job position.*

*Job Title: Outage Management Systems Application Engineer *

*Location: Irwindale, California *

*Contract: 12+ Months *

*Requirement:*

· 6-8 years

· CGI PragmaLine product experience is highly desirable including
its application installation and setup.

· Strong knowledge of Windows Server 2008/2012 and Windows
Services, .NET

· Knowledge of Oracle database technologies

· Windows Clustering

· Replication Tools / Active Data Guard

· Networking knowledge

· Knowledge on JavaScript Object Notation (JSON)

*Experience Required  *

· Hands-on, Complex Application Support experience in CGI / ABB /
GE / Schneider Outage Management Systems (CGI preferred).

· Excellent communication skills – needs to have skills to engage
with both customer IT and Business users at senior level

· Excellent troubleshooting and analytical skills – needs to have
analysis skills for handling issues and handling Change Request to deliver
the solution with additional benefits keeping SLA in mind to suit the
business needs.

· Team player - needs to work closely with TCS colleagues both
onsite and offshore in India.

*Roles & Responsibilities *

· Specific responsibilities include (but not limited to):

· Manage, oversees and coordinates all aspects of the project from
initial planning through completion of project

· Help translate a wide variety of client needs/requirements into
detailed proposals and project plans to meet project’s requirements

· Proactively communicate project requirements to project team and
wider organization as and when required

· Maintain accurate and up to date records of job status, job
changes, material flow and other control records

· Identify potential project risks and develop/implement strategies
to minimize impact

· Establish project milestones and analyze costs and provide timely
and accurate project cost reports

· Manage the execution and review of all scope of work, and terms
and condition in contracts including cost control, delivery fulfillment,
quality of service and other client requirements as they arise.

· Manage all interfaces and communication between the vendor,
Project Team and business stakeholders; identify gaps and implement
improved processes where required

· Ensure clarity of expectations for project deliverables from all
project participants

· Provide leadership and mentorship to team members

· Communicate all key aspects of the project on a regular basis
through monthly updates and other updates as critical developments occur



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


[android-developers] developing vs job opportunity

2016-04-19 Thread Massimo Canonico

Hi all,
I'm quite new in this mailing list, so probably I haven't a clear idea 
of the purpose of this mailing list.


When I subscribed to android-developer ML, I was thinking about code, 
android studio e stuff like that.


In the last 2 days I have received several "job opportunity" email (many 
of them in several copies).


First, I'm glad that android developers have many job opportunities, but 
second I do not want receive so many emails concerning job opportunities 
(please, at least, just send one copy of your job opportunity).


I see two solutions:
- I unsubscribe to this ML
- Someone creates a new ML just for job opportunity purpose

Best,
Massimo

--
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/57164828.1020300%40di.unipmn.it.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Req:::::::::::::Business Intelligence Lead ,San Jose ,CA,6-12+ Months

2016-04-19 Thread sudhanshu pandey
*Hi There,*

*I am technical recruiter and I am looking for Relevant consultant for
below job description, if interested please let me know the hourly rate you
are looking for below mention job position.*

*Job Title: Business Intelligence Lead*

*Location: San Jose ,CA*

*Contract: 6-12+ Months *

*Requirement:*

*Role Description *

· Cisco SCM-Product operation group is looking to put together
product data elements through Tableau and hadoop platform.

· Understand internal stakeholder’s requirements to develop Data
modeling

· Understand IT infrastructure and sources of data

· Designing data modeling and lead hadoop program"

*Essential Skill Set   *

· Associate with 8 to 9 Years’ experience as Lead role

· Data Warehousing Concepts and Implementation knowledge.

· Requirement gathering, Design/Development & Deployment experience
of BI reports

· Dimensional Modeling with experience design and Implementation.

· Hands on Tableau/any BI reporting.

· Good Analytical / Problem solving skills.

· Oracle PL/SQL work experience. "

*Desirable Skill Set  *

· Hadoop Ecosystem knowledge with Scoop, Spark and Hive experience.

*Total Experience Required *

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


[android-developers] Implement AdapterView that handles BaseAdapter.getView() calls manually...

2016-04-19 Thread Enchanter
Be clement iam new to android and groups.
Ive fetched Lorentzos SwipeCards Lib from 
https://github.com/Diolor/Swipecards.
Previously i must learn to implement a BaseAdapter to provide the method 
getView that was called from Lorentzos SwipeFlingAdapterView.
I implemented getView like the common Tutorials for ListViews and add some 
items to the list. I couldt update the cardStack with notifyDataSetChanged(), 
he described it as issue.
After a lot of tries i noticed that SwipeFlingAdapterView issnt a common 
ListView. In Line 140 in swipeFlingAdapterView he calls 
mAdapter.getView(startingIndex, 
null, this); manually.
So now i try to change this part of the code and first of all i want fill 
the convertView param of getView().
With Lorentzos implementation, a call of list.add() and 
notifyDataSetChanged() must rebuild the whole Cardstack again.
Even iam a newbie but in all tutorials about ListViews (Yes ive seen it is 
an AdapterView but do not understand this way) something like this will 
managed inside the sdk.
Is Lorentzos way okay and if it is, is it right if i hold the empty 
inflated view of the cards in items.xml to give it back as recycled view 
manually?
Can i implement a method that renews the important part of CardStack 
immediately when i call notifyDataSetChanged() or...
If you have a bit time for me, how can i get a reference to the onLayout 
Hook to say: "Render the whole stack again" from my activity respectively 
my fragment (Like the Buttons left and right, implemented in 
MyActivity.java Line 105)?
My intention is to made a onclick undo button that adds an Element at list 
position 0 but with the manually implemented getView call, the stack will 
upgraded only after the next swype.
The Element 0 is gone and the new Element on 0 will removed from List, dead 
end.

Thank you

Sry @ lorentzo but ive searched for a idependetly opinion and give back 
what i have, after my project works.
Your issue: "how to implement a undo button", only works immidiatly if it 
is the last element, If the view is visible, there is no way to add an item 
at position 0. 0 referenceing the visble/touchable card.

-- 
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/753f9c00-819b-4f13-9fed-38374cd3e48c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Hotlist of Technocraft Solutions

2016-04-19 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*

*Arjun*

*ETL Informatica*

*Auburn Hills, MI*

*8+*

*Yes*

*5*

*Nikitha*

*Informatica*

*Dallas, TX*

*7+*

*Yes*

*6*

*Krunal*

*ETL Informatica*

*Cary, NC*

*7+*

*Yes*

*7*

*Mrunali*

*Informatica *

*Irvine, CA*

*7+*

*CA, TX, FL, NC, AZ*

*8*

*Arti*

*QA Automation *

*CA*

*7+*

*Open*

*9*

*Sanjay*

*QA Lead*

*Providence, RI*

*9+*

*Open*

*10*

*Sowmya*

*PL/SQL*

*Dallas, TX*

*8+*

*Yes*

*11*

*Rama*

*PL/SQL*

*Tamha, FL*

*7+*

*Yes*

*12*

*Ami*

*SQL/BI Developer*

*Piscataway, NJ*

*7+*

* Open*

*13*

*Gunnemouni*

*MS SQL Server SSIS/SSRS*

*Dallas, TX*

*7+*

*Yes*

*14*

*Sree Shravya*

*SQL SERVER / MSBI*

*Houston, TX*

*8+*

*Yes*

*15*

*Merilena*

*Service NOW*

*Dallas, TX*

*7+*

*Yes*

*16*

*Raja*

*Lead Developer*

*Omaha, NE*

*11+*

*Open*

*17*

*Nil*

*Oracle DBA*

*MD*

*7+*

*Yes*



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


[android-developers] Sign up and connect with jobseekers for easy recruiting

2016-04-19 Thread Swetha Chittanoori
As a recruiter you may have to reach out to many candidates in order to 
fill a position. Sometimes, Candidates you call up might be no longer 
available for the position. If only, there is a way to filter out the 
unavailable candidates it would be lot easier to do recruiting. Well, 
that's where Employee Master Database comes in handy to you.


Employee Master database(EMDB) is a candidate status database that holds 
the current job seeking status. EMDB also provides a bulk email service 
where you can send emails to candidates at once regarding any position.


Visit www.employeemasterdatabase.com and sign up as recruiter to reap the 
benefits

-- 
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/96f1a1fc-64f1-4bff-a7af-5ec0f14b569f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android 5.0.1 Energy saver, protected apps, not receiving GCM push notifications

2016-04-19 Thread Marcel Molenaar
I did find an interesting post here: 
http://stackoverflow.com/questions/31638986/protected-apps-setting-on-huawei-phones-and-how-to-handle-it

Op dinsdag 19 april 2016 15:16:32 UTC+2 schreef Marcel Molenaar:
>
> Hello all,
>
> I have a problem with recieving GCM push notifications.
>
> I tested my app on a Huawei ALE-L21. On all other devices i tested with 
> the GCM push notifications worked well but on the Huawei it only worked 
> when the app was running in the foreground.
>
> After hours of searching i found in settings -> energy saver -> Protected 
> apps that i had to add my app as a protected app. After that everything 
> worked fine.
>
> The problem is that this was really hard to find and the future users of 
> my app wil not know about this feature and simply will not receive any push 
> notifications.
>
> My question: is there a way to programmatically set my app as being a 
> protected app? Somehow through the manifest file or something? Or is there 
> any other solution for this?
>
> Marcel
>

-- 
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/79d217ca-0d91-4426-9c1f-77c7ef242418%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Business Intelligence Architect or Senior BI Developer ,,San Jose ,CA,6-12+ Months

2016-04-19 Thread sudhanshu pandey
*Hi There,*

*I am technical recruiter and I am looking for Relevant consultant for
below job description, if interested please let me know the hourly rate you
are looking for below mention job position.*

*Job Title: Business Intelligence Architect OR Senior Developer*

*Location: San Jose ,CA*

*Contract: 6-12+ Months *

*Requirement:*

*Role Description *

· Cisco SCM-Product operation group is looking to put together
product data elements through Tableau and hadoop platform.

· Understand internal stakeholder’s requirements to develop Data
modeling

· Understand IT infrastructure and sources of data

· Designing data modeling and lead hadoop program"

*Essential Skill Set   *

· Associate with 8 to 9 Years’ experience as Lead role

· Data Warehousing Concepts and Implementation knowledge.

· Requirement gathering, Design/Development & Deployment experience
of BI reports

· Dimensional Modeling with experience design and Implementation.

· Hands on Tableau/any BI reporting.

· Good Analytical / Problem solving skills.

· Oracle PL/SQL work experience. "

*Desirable Skill Set  *

· Hadoop Ecosystem knowledge with Scoop, Spark and Hive experience.

*Total Experience Required *

· 8-9 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%2BjpOToW7pgq0vwFAaWbS0weFPb-Yu%3DM5iphxFGXFzZrSQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] IT Planning Expert - Immediate Phone Hire

2016-04-19 Thread Ankush Chaudhary
*SEND ONLY PLANNING ANALYSTS*


*Here are the Job Details:*

*Position: IT Planning Expert*
*Location: Phoenix AZ*
*Duration: 6+ months*

*Specific responsibilities will include:*
· Participate in developing a methodology for analyzing
unstructured or loosely-structured business and IT plans from state
agencies;
· Collect and validate data to be used in development of  a
sustainable process;
· State business and IT plan research with collaborative follow up
with authors to obtain clarification and further details;
· Tabulate and cross-reference the concepts identified in State
business and IT plans;
· Identify and research other appropriate inputs which could be
utilized to draft the Statewide Strategic IT Plan;
· Recommend programs for inclusion in the Statewide Strategic IT
plan;
· Research and cost-benefit analysis of the recommended programs
contained in the Statewide IT Plan
· Draft a business case for the recommended programs;
· Draft portions of the Statewide IT Plan

*Minimum Qualifications:*
· Associate Degree in Information Technology or related field, or
equivalent experience;
· Strong oral and written communication and interpersonal skills;
· Demonstrated ability to lead discussions and make presentations;
· Strong reading, analytical and critical thinking skills;
· Solid experience with Microsoft Word, Excel and PowerPoint.

Thanks & regards,

Ankush Chaudhary
Team Lead Recruitment
Email:  anku...@adventglobal.com

Advent Global Solutions, Inc.
12777 Jones Road, Suite 445, Houston, TX 77070

-- 
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/CAEUFWB9wODy%2BsT7z%2Bpck_J%2B4rEQ9A%2BBjuYDrTquPvHVpTAT%3DxA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Req:::::::::::::MES Solution architect ,Toledo, Ohio,6-12+ Months

2016-04-19 Thread sudhanshu pandey
*Hi There,*

*I am technical recruiter and I am looking for Relevant consultant for
below job description, if interested please let me know the hourly rate you
are looking for below mention job position.*

*Job Title: MES Solution architect *

*Location: Toledo, Ohio *

*Contract: 6-12+ Months *

*Requirement:*

*Relevant Experience (in Yrs) *

· *10 + *

*Technical/Functional Skills :  *

1)Good knowledge of manufacturing domain with different industry verticals

2) Good understanding of MES and industry standards required for MES

2)Good experience in project implementation and Solution Architecting using
GE-Proficy sute ( SCADA, Plant Application, Workflow, Historain, IGS OPC
server)

3) Good knowledge of SQL and SSRS

4) good understanding of database

5) Exposure to MES technologies, including automated data collection,
visualization, quality, efficiency, SCADA, DCS, automated decision control,
workflow, scheduling, and interface to ERP systems and plant floor devices

6) End – to –End project implementation experience using standard
methodology

7) Good knowledge of Programming skills using .Net and C#, VBA



*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%2BjUObhS0%3DBmh1yexVLfAwhPwu-QL2%2BjLCU7d86Ar0XM2A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Req:::::::::::::Database Business Intelligence Architect ,,San Jose ,CA,6-12+ Months

2016-04-19 Thread sudhanshu pandey
*Hi There,*

*I am technical recruiter and I am looking for Relevant consultant for
below job description, if interested please let me know the hourly rate you
are looking for below mention job position.*

*Job Title: Database Business Intelligence Architect*

*Location: San Jose ,CA*

*Contract: 6-12+ Months *

*Requirement:*

*Role Description *

· Cisco SCM-Product operation group is looking to put together
product data elements through Tableau and hadoop platform.

· Understand internal stakeholder’s requirements to develop Data
modeling

· Understand IT infrastructure and sources of data

· Designing data modeling and lead hadoop program"

*Essential Skill Set   *

· Associate with 8 to 9 Years’ experience as Lead role

· Data Warehousing Concepts and Implementation knowledge.

· Requirement gathering, Design/Development & Deployment experience
of BI reports

· Dimensional Modeling with experience design and Implementation.

· Hands on Tableau/any BI reporting.

· Good Analytical / Problem solving skills.

· Oracle PL/SQL work experience. "

*Desirable Skill Set  *

· Hadoop Ecosystem knowledge with Scoop, Spark and Hive experience.

*Total Experience Required *

· 8-9 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%2Bgb6i92WwDiHnymsAzffvrjCkgRtE_5EarNU-sx1EKg9g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Android 5.0.1 Energy saver, protected apps, not receiving GCM push notifications

2016-04-19 Thread Marcel Molenaar
Hello all,

I have a problem with recieving GCM push notifications.

I tested my app on a Huawei ALE-L21. On all other devices i tested with the 
GCM push notifications worked well but on the Huawei it only worked when 
the app was running in the foreground.

After hours of searching i found in settings -> energy saver -> Protected 
apps that i had to add my app as a protected app. After that everything 
worked fine.

The problem is that this was really hard to find and the future users of my 
app wil not know about this feature and simply will not receive any push 
notifications.

My question: is there a way to programmatically set my app as being a 
protected app? Somehow through the manifest file or something? Or is there 
any other solution for this?

Marcel

-- 
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/1484e28d-9b6c-45da-9d65-37cccd7ab329%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] camera app android

2016-04-19 Thread Mithun Kumar
hello
i want to use face tracking in camera android. how to do this?
below link is an example how to use camera app in android. but facetracking 
is not mentioned in this app. this app performance is good.
https://github.com/googlesamples/android-Camera2Basic


i found another sample , link shown below. this app gives face tracking 
option. but the performance is not good. app opens with delay. how to 
improve performance? can anyone give idea on this?
https://github.com/googlesamples/android-vision/tree/master/visionSamples/FaceTracker

anyone give me idea how to track the face in first link example app. or i 
need idea how to improve the performance of app in second link.
thank you
mithun

-- 
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/62c3a609-4ecc-4b2b-a6a4-d5c004c5628a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Help regarding Play developer accounts

2016-04-19 Thread Hitesh Vikani
I had an google play developer account previously. But it was terminated 
because of violation of terms.
I requested multiple times but there was only one computer generated mail 
mailed to my email address once. At last, I deleted my whole google account 
itself.
Now, I registered a new account with same Name as I cannot change my name 
for Google😐. Now can I registered my account with google play account. 
Will it be terminated again? Please If anyone knows, help me. As I want to 
publish my apps on google play and its important for my career and life. 

-- 
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/ceb2feac-64f1-482f-b3fd-41167ba5ed8d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] cameraSource.takePicture not working, please can anyone help?

2016-04-19 Thread Mithun Kumar


hello all


i want to save caputured image from camera preview. i am using 

*https://github.com/googlesamples/android-vision/tree/master/visionSamples/FaceTracker*

*above app. i want to know how to use camerasource.takepicture method to save 
captured image from camera*



/*inside FaceTrackerActivity.java*/

*.*

*.*

*.*


final CameraSource.ShutterCallback shutterCallback = new 
CameraSource.ShutterCallback() {
@Override
public void onShutter() {
Log.d(TAG, "onShutter");
Toast.makeText(view.getContext(),"sd",Toast.LENGTH_SHORT).show();
}
};
CameraSource.PictureCallback myPictureCallback_JPG = new 
CameraSource.PictureCallback(){
@Override
public void onPictureTaken(byte[] arg0) {
// TODO Auto-generated method stub
Bitmap bitmapPicture = BitmapFactory.decodeByteArray(arg0, 0, arg0.length);

//save file
String path = Environment.DIRECTORY_DCIM.toString();
  
OutputStream fOut = null;
File file = new File(path, "FitnessGirl"+".jpg"); // the File to save to
try{
fOut = new FileOutputStream(file);
bitmapPicture.compress(Bitmap.CompressFormat.JPEG, 85, fOut); // saving 
the Bitmap to a file compressed as a JPEG with 85% compression rate

MediaStore.Images.Media.insertImage(getContentResolver(),file.getAbsolutePath(),file.getName(),file.getName());
fOut.flush();
fOut.close(); // do not forget to close the stream

}catch (FileNotFoundException exception){

}catch (IOException e){

}
//save file
}};

mCameraSource.takePicture(shutterCallback, myPictureCallback_JPG);

 
thanks in advance

mithun







-- 
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/6ff64c40-a8ea-4961-815e-f64f7de17205%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] How to add a badge to the icon of an application

2016-04-19 Thread Marco Odasso


Could you help me?

I need an example of code for android studio. To obtain on the icon of the 
app a red balloon: to see the numbers of posts published in the blog of the 
app.

 

Thanks a lot

 

Mark 

Email: rdp@gmail.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/8c3e3a1b-d16f-4d51-8db3-477dad421f57%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: IAP Error

2016-04-19 Thread Javier Mora Casas
I´ve the same issue, anyone find the solution? thanks!

El martes, 16 de febrero de 2016, 14:03:21 (UTC+1), sardar khan escribió:
>
> Hy i have implemented the IAP in android.I create the application on 
> playstore , i add publickey to my project, i add the testacount and test 
> the app from my test acount and i also click the link and become a tested 
> to test application and i have uploaded the apk on Open Alpha testing, and 
> i alos try for open beta testing on playstore the error is same.
> "The item you requested is not available for purchase".
> can any one plese help me to solve this issue i have google it but cannot 
> find the solution on Stack Over flow no solution work for me 
> Thanks for 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/847ba5f5-d3a8-4c2e-ad27-6ac9d79257b7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.