[android-developers] Not able to compile my APP

2016-06-24 Thread Samarth Kejriwal
XML CODE



http://schemas.android.com/apk/res/android;
xmlns:tools="http://schemas.android.com/tools;
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.android.mycalculator.MainActivity">











//Java Code
package com.example.android.mycalculator;


import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.EditText;
import android.widget.Spinner;
import android.widget.TextView;

public class MainActivity extends Activity implements 
AdapterView.OnItemSelectedListener {

Spinner spinner;
TextView result;
private EditText text1;
private EditText text2;
double l1,l2;
private String[] operations = {"Add","Subtract","Multiply","Divide"};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

spinner = (Spinner) findViewById(R.id.spinner);
result=(TextView) findViewById(R.id.result);
spinner.setOnItemSelectedListener(this);

text1 = (EditText) findViewById(R.id.number1);
text2 = (EditText) findViewById(R.id.number2);
l1 = Double.parseDouble(text1.getText().toString());
l2=Double.parseDouble(text2.getText().toString());


// Spinner Drop down elements

// Creating adapter for spinner
ArrayAdapter dataAdapter = new ArrayAdapter(this, 
android.R.layout.simple_spinner_item, operations);

// Drop down layout style - list view with radio button

dataAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);

// attaching data adapter to spinner
spinner.setAdapter(dataAdapter);
}


public String add() {
double result=l1+l2;
return Double.toString(result);
}
public String sub() {
double result=l1-l2;
return Double.toString(result);
}
public String mul() {
double result=l1*l2;
return Double.toString(result);
}

public void onItemSelected(AdapterView parent, View view, int position, 
long id) {
// On selecting a spinner item
String item = parent.getItemAtPosition(position).toString();
String selected = (String) spinner.getSelectedItem();
if(selected.equals(operations[0])) result.setText(add());
if(selected.equals(operations[1])) result.setText(sub());
if(selected.equals(operations[2])) result.setText(mul());

}
public void onNothingSelected(AdapterView arg0) {
// TODO Auto-generated method stub
}

}

I am not able to compile my app.It is getting crashed when i run it on my 
device.It is showing the error -Invalid double: "".I am not able to figure 
out the error.PLease Help 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/8e101adf-60a2-42e5-90cf-9194b0ce0700%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] NoT able to Run my Calculator App

2016-06-24 Thread Samarth Kejriwal
Enter code here...
JAVA CODE

package com.example.android.mycalculator;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.EditText;
import android.widget.Spinner;
import android.widget.TextView;

public class MainActivity extends Activity implements 
AdapterView.OnItemSelectedListener {

Spinner spinner;
TextView result;
private EditText text1;
private EditText text2;
double l1,l2;
private String[] operations = {"Add","Subtract","Multiply","Divide"};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

spinner = (Spinner) findViewById(R.id.spinner);
result=(TextView) findViewById(R.id.result);
spinner.setOnItemSelectedListener(this);

text1 = (EditText) findViewById(R.id.number1);
text2 = (EditText) findViewById(R.id.number2);
//l1 = Double.parseDouble(text1.getText().toString());
//l2=Double.parseDouble(text2.getText().toString());


// Spinner Drop down elements

// Creating adapter for spinner
ArrayAdapter dataAdapter = new ArrayAdapter(this, 
android.R.layout.simple_spinner_item, operations);

// Drop down layout style - list view with radio button

dataAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);

// attaching data adapter to spinner
spinner.setAdapter(dataAdapter);
}


public String add() {
double result=l1+l2;
return Double.toString(result);
}
public String sub() {
double result=l1-l2;
return Double.toString(result);
}
public String mul() {
double result=l1*l2;
return Double.toString(result);
}

public void onItemSelected(AdapterView parent, View view, int position, 
long id) {
// On selecting a spinner item
String item = parent.getItemAtPosition(position).toString();
String selected = (String) spinner.getSelectedItem();
if(selected.equals(operations[0])) result.setText(add());
if(selected.equals(operations[1])) result.setText(sub());
if(selected.equals(operations[2])) result.setText(mul());

}
public void onNothingSelected(AdapterView arg0) {
// TODO Auto-generated method stub
}

}
XML CODE
Enter code here...


http://schemas.android.com/apk/res/android;
xmlns:tools="http://schemas.android.com/tools;
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.android.mycalculator.MainActivity">












I am trying to create a calculator app that takes two numbers and give me the 
desired result on selecting the desired operation from the drop down menu 
option.
My app is getting crashed and giving me the error-'Invalid double: ""'..What is 
the issue with my code.I am not able to get 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/6bc8374d-4de6-4e46-9b65-deac3165e701%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Phone than F2F Interview:ETL / Data Integration Developer|Cincinnati, OH

2016-06-24 Thread Neha Kumari
*Hello,*

*GREETINGS !!*

*This is Neha from Apetan consulting,*

*Please find the below job description and send me your update resume
matching to it along with Contact details, Current location, Visa and
Availability ASAP.*



*POSITION: ETL / Data Integration Developer*

* INTERVIEW: Phone than F2F Interview*

*LOCATION: Cincinnati, OH*

*DURATION:6 MONTHS*

*START :ASAP*





*Job Overview:*



*There are a total of 8 openings and they are looking for people with all
different levels of experience. ETL / Data Integration Developer.*



Responsibilities:



Expand the company’s use of data as a strategic enabler of corporate goals
and objectives.

Facilitate information gathering sessions and provides data analysis and
data mapping.

Work with various customers, prospects and stakeholders, understands and
translates business use cases and/or requirements into data models, data
integration routines and analytics reports.

Identifies data sources, develop and maintain data architectures,
constructs data catalog and data decomposition diagrams, provide data flow
diagrams and documents the process.

Have the ability to facilitate the development of data integration efforts
with the development team in addition to hands on design and development of
large complex ETL jobs.

Develop, manage and maintain data models, including physical and logical
models of the data warehouse, data marts, development and staging areas and
source systems as necessary to meet new and changing business requirements.

Design, implement and maintain database objects (tables, views, indexes,
etc.) and database security.

Establish methods and procedures for tracking data quality, completeness,
redundancy and improvement; and processes for governing the identification,
collection and use of corporate metadata to assure metadata is accurate and
valid in the business intelligence environments.

Qualifications:



*Hands on ETL development.  Primary ETL tool experience needs to be with
Microsoft products*

Working experiences in design and modeling normalized and dimensional (e.g.
star schema) data warehouses.

Self-motivated team player who excels in a collaborative environment.

Strong sense of accountability, adaptability, flexibility and a sense of
urgency.

They should have a bias for action and achieving results for themselves as
well as their team.

Excellent analytic and problem solving skills.

Ability to work effectively with associates at all levels within the
organization.

Demonstrated ability to establish priorities, organize and plan work to
satisfy established timeframes.

Proven ability to handle multiple tasks and projects simultaneously.

Familiar with the Agile Methodology.

Excellent analytical skills, attention to detail, and problem-solving
skills.

Self-motivated team player who excels in a collaborative environment.

Strong sense of accountability, adaptability, flexibility and a sense of
urgency.

They should have a bias for action and achieving results for themselves as
well as their team.

Passionate about continuously improving organizational practices. Ability
to learn and apply new technologies quickly and self-directed.

Familiarity and working knowledge of SQL Server Database, SSIS, SSAS,
Kalido DIW and Kalido MDM is a plus.



Thanks,


-- 



*Neha Kumari |* *Technical Recruiter* | *Apetan Consulting LLC*

Tel:201-620-9700* 106 | Fax: 201-526-6869 | 72 Van

Reipen Avenue # 255 Jersey City, NJ 07306 |

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


[android-developers] URGENT NEED: IBM BPM DEVELOPER @ CLEVELAND, OH

2016-06-24 Thread Ateeq Rehman
Hi Partner,

Hope you are doing well.

This is Ateeq, from Diverse Lynx.



*Please share profiles for IBM BPM Developer at
ateeq.reh...@diverselynx.com *



*Job Description:*



*Role: IBM BPM Developer*

*Location: Cleveland, OH*

*Experience: 4-6 years*



*Detailed JD:*


*** MDM Application Customization and Development
•4 to 6 years of experience in – InfoSphere IBM MDM Server ( 11.0 or above)
(Installation, customization , web services and UI experience)
Strong  in IBM Business Process Manager (BPM) customization

•Strong in IBM MDM workbench and Customization
•Strong J2EE skills Java, JSP,JDK 1.5, 1.6,JVM, Web Services
•Experience with Oracle Database skills
•Experience with IBM WAS deployment
•Integration knowledge with third party software or other supported IBM
products is a plus





*Thanks & Regards*

*Ateeq Rehman*

*Diverse Lynx LLC|300 Alexander Park|Suite#200|Princeton, NJ 08540*

*Phone No: 732-452-1006 EXT 215*

*Email: **ateeq.reh...@diverselynx.com* * ||
Hangout: ateeq.staffing*

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


[android-developers] Urgent Opening

2016-06-24 Thread Rohit Rai
Hello ,


Tittle:
* SAS Administrator (GRID PLATFORM) *

 Location: NYC, NY

 Duration: 6+Months

Job Description:



*Responsibilities:*

   - Ensure the overall health of the SAS Grid platform which uses IBM’s
   General Parallel File System (GPFS) and includes:


   - Base SAS
  - Office Analytics
  - Enterprise Miner
  - Forecast Server
  - Visual Analytics
  - Access to ODBC, PCFF, Hadoop, Teradata and Oracle

· Monitor the SAS servers for resource utilization and act on
incidents in coordination with internal NBCUniversal Infrastructure teams

   - Apply maintenance releases, upgrades and hot fixes as required for all
   products in the platform in coordination with internal NBCUniversal
   Infrastructure teams
   - Design solutions to reduce the operational and management complexity
   of the platform
   - Design, implement, and maintain platform security
   - Monitor, log, and troubleshoot SAS servers and processes, including
   error messages

· Create and execute platform capacity and disaster recovery
planning working with NBCUniversal infrastructure teams

   - Serve as an escalation point for production and/or platform issues
   - Provide guidance and assistance to SAS developers on operational and
   technical issues
   - Establish best practices and guidelines for usage of the SAS platform

*Skills and experience:*

· Ability to configure SAS servers to run within a SAS GRID
environment leveraging GPFS

· Experience reading SAS logs to determine GRID errors and whether
GRID is functioning correctly

   - Strong communication skills both written and verbal to explain
   technical issues regarding SAS
   - Firm understanding of the capabilities of the SAS analytical
   procedures with experience troubleshooting issues
   - Experience installing, configuring, optimizing and maintaining SAS Grid

· Knowledge of the parallel processing and job submission
capabilities of SAS GRID in relation to usage of SAS Enterprise Miner
and/or SAS Enterprise Guide

· Experience using SAS Management Console (SMC)

   - Creating Users / Groups / Roles
  - Creating and securing folders
  - Experience with Project and Custom repositories
  - Creating, deploying and scheduling jobs
  - Experience with SAS Configuration Wizard to administer SAS
  deployment
  - Experience monitoring Logs from within SMC
  - Experience defining Servers and changing server definitions
  - Experience creating SAS libraries


   - Knowledge of SAS configuration files such as autoexec, configuration
   and environment files
   - Understanding server security and folders and how they relate to SAS
   folders and security
   - Ability to implement a security scheme in SAS and interfacing it with
   OS level security


Regards,

Rohit Rai | Sr.Technical Recruiter | Pro-Tek Consulting
Office: 213-259-8289| ro...@pro-tekconsulting.com

*For H1B Consultants H1B Copy Is Mandatory For Submission To Client.*


New Thinking. New Staffing.
http://http://www.pro-tekconsulting.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/CALriVb4X4hqUn9zteN-ePKEOR7uPj-gqA_oEOW6rtDwoBDNvMQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Excellent Candidate available Java/J2EE Lead QA ETL IOS Mobile Developer Hyperion Websphere Informatica BA Essbase Planning

2016-06-24 Thread Ali Baig
Hi Folks,

We have Excellent Candidate available to join project immediate.

Please add me and share us hot Requirement.

Sr.no Name  Current Location Relocation Skills  Status Visa
1 Gary NYC, NY Open Lead QA / Manual / Performance Immediate Citizen
2 Conor Chicago, IL Chicago, IL Java/ J2EE Developer/ Groovy Grails
Immediate Citizen
3 Vishal Dallas, TX Open Hyperion/HFM/Essbase/Planning  Immediate H1B
4 Charan Charlotte, NC Open Websphere Administrator Immediate H1B
5 Hanoosh Jackson, MI Open Business Analyst Immediate GC
6 Harsh Atlanta, GA Open Business Analyst Immediate GC
7 Bharti Waukesha, WI WI Manual/Automation QA Immediate GC
8 Uma Cary, NC East Coast ETL/ Informatica Immediate GC
9 Trevor Wilmington, DE DE, MD, PA, DC, NJ Mobile Developer Immediate
Citizen
10 Shamim Brooklyn, NY Open QA, UFT, Automation Immediate Citizen

With Warm Regards,

ALi Afsar

BISP Solutions, Inc. | 5640 NW 115th Court Suite 207 Doral, FL 33178|

Web: http://www.bispsolutions.com/

Phone: 786-629-6893 | 321-363-8233 | e Mail: alibaig0...@gmail.com
 |

USA   |   CANADA   |   UK   |   SINGAPORE   |   MEXICO   |   CARIBBEAN
|   UAE  |   INDIA

This is not an unsolicited mail. If you are not interested in receiving our
e-mails then please reply with subject line Remove

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


[android-developers] Excellent Candidate available Java/J2EE Lead QA ETL IOS Mobile Developer Hyperion Websphere Informatica BA Essbase Planning

2016-06-24 Thread Ali Baig
Hi Folks,

We have Excellent Candidate available to join project immediate.

Please add me and share us hot Requirement.

Sr.no Name  Current Location Relocation Skills  Status Visa
1 Gary NYC, NY Open Lead QA / Manual / Performance Immediate Citizen
2 Conor Chicago, IL Chicago, IL Java/ J2EE Developer/ Groovy Grails
Immediate Citizen
3 Vishal Dallas, TX Open Hyperion/HFM/Essbase/Planning  Immediate H1B
4 Charan Charlotte, NC Open Websphere Administrator Immediate H1B
5 Hanoosh Jackson, MI Open Business Analyst Immediate GC
6 Harsh Atlanta, GA Open Business Analyst Immediate GC
7 Bharti Waukesha, WI WI Manual/Automation QA Immediate GC
8 Uma Cary, NC East Coast ETL/ Informatica Immediate GC
9 Trevor Wilmington, DE DE, MD, PA, DC, NJ Mobile Developer Immediate
Citizen
10 Shamim Brooklyn, NY Open QA, UFT, Automation Immediate Citizen

With Warm Regards,

ALi Afsar

BISP Solutions, Inc. | 5640 NW 115th Court Suite 207 Doral, FL 33178|

Web: http://www.bispsolutions.com/

Phone: 786-629-6893 | 321-363-8233 | e Mail: alibaig0...@gmail.com
 |

USA   |   CANADA   |   UK   |   SINGAPORE   |   MEXICO   |   CARIBBEAN
|   UAE  |   INDIA

This is not an unsolicited mail. If you are not interested in receiving our
e-mails then please reply with subject line Remove

-- 
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/CANOhGEM_%3D2vKOUMY%3D3fnxo4kOTyu2U5h5qH-1UWfOx_1%2BkS6jw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Excellent Candidate available Java/J2EE Lead QA ETL IOS Mobile Developer Hyperion Websphere Informatica BA Essbase Planning

2016-06-24 Thread Ali Baig
 Hi Folks,

We have Excellent Candidate available to join project immediate.

Please add me and share us hot Requirement.

Sr.no Name  Current Location Relocation Skills  Status Visa
1 Gary NYC, NY Open Lead QA / Manual / Performance Immediate Citizen
2 Conor Chicago, IL Chicago, IL Java/ J2EE Developer/ Groovy Grails
Immediate Citizen
3 Vishal Dallas, TX Open Hyperion/HFM/Essbase/Planning  Immediate H1B
4 Charan Charlotte, NC Open Websphere Administrator Immediate H1B
5 Hanoosh Jackson, MI Open Business Analyst Immediate GC
6 Harsh Atlanta, GA Open Business Analyst Immediate GC
7 Bharti Waukesha, WI WI Manual/Automation QA Immediate GC
8 Uma Cary, NC East Coast ETL/ Informatica Immediate GC
9 Trevor Wilmington, DE DE, MD, PA, DC, NJ Mobile Developer Immediate
Citizen
10 Shamim Brooklyn, NY Open QA, UFT, Automation Immediate Citizen

With Warm Regards,

ALi Afsar

BISP Solutions, Inc. | 5640 NW 115th Court Suite 207 Doral, FL 33178|

Web: http://www.bispsolutions.com/

Phone: 786-629-6893 | 321-363-8233 | e Mail: alibaig0...@gmail.com
 |

USA   |   CANADA   |   UK   |   SINGAPORE   |   MEXICO   |   CARIBBEAN
|   UAE  |   INDIA

This is not an unsolicited mail. If you are not interested in receiving our
e-mails then please reply with subject line Remove

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


[android-developers] Nearby Messages in android emulator

2016-06-24 Thread azholkover
Hi all,

Does Android Studio Emulators support the Nearby API (Messages,connection)?
Can two emulated devices "connect" as if they were near each other?

Thanks,
Adi

-- 
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/6228b4fb-03be-46e8-b04e-5a4610729187%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Phone than F2F Interview: PROJECT MANAGER OPENINGS in Minnesota - 1 year contracts

2016-06-24 Thread Neha Kumari
*Hello,*

*GREETINGS !!*

*This is Neha from Apetan consulting,*

*Please find the below job description and send me your update resume
matching to it along with Contact details, Current location, Visa and
Availability ASAP.*



*POSITION: PROJECT MANAGER*

* INTERVIEW: Phone than F2F Interview*

*LOCATION: Minnesota*

*DURATION:1 YEAR*

*START :ASAP*





*Job Overview:*





– best candidates suited for this role would be those that have worked
for State
Departments in a Project Management capacity.





Responsibilities include



Provide project and program management and leadership for projects within
the ISDS technical solution, including technical, resource, schedule,
communication and financial plans·

 Management of a pre-identified projects within the ISDS project portfolio.·

 Provide guidance and direction to technology vendors.·

 Responsible for developing and directing strategies, approaches, and
procedures for the IT Solutions·

 Communicate and incorporate business owner’s visions, business plans, and
key objectives.·

 Establish and communicate clear performance expectations to members of the
IT Solutions·

 Provide updates as required for leadership·

 Provide project management and vendor management mentoring to State and
other vendor staff as required·

 Foster a culture that supports and drives staff engagement and
collaboration in support of State objectives·

 Establish, manage, and leverage business and technology relationships both
internal and external to the IT Solution·

 Transfer knowledge to staff.·



Mandatory Qualifications

· B.S or B.A degree with five (5) years of experience as a Project Manager
or an Associate’s degree with seven (7) years of experience as a Project
Manager

 Six (6) engagements/projects lasting more than six (6) months in the role
of a Project Manager·

 Two (2) documented engagements where the project exceeds $500,000·



Desired Skills

 Computer Science, Information Technology or related Degree·

 Project Management Professional (PMP) or Master Project Management (MPM)
Certification·

 Three (3) or more engagements leading teams of greater than ten (10)
individuals·

 Three (3) years working in complex multi-vendor or multi-team IT
environment·

 Demonstrated experience in a mentoring or coaching role·



Thanks,

-- 



*Neha Kumari |* *Technical Recruiter* | *Apetan Consulting LLC*

Tel:201-620-9700* 106 | Fax: 201-526-6869 | 72 Van

Reipen Avenue # 255 Jersey City, NJ 07306 |

n...@apetan.com | www.apetan.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/CAH6F14dDoEdi5R-iMa6CgHpJnqzCaRkC1%3DWVfZb-WEJbbN9LvQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Telephonic interview for Performance LISA tester in Woonsocket, RI

2016-06-24 Thread SALMA BHAT
Hi Partners,

Please share profile at *naseer.ah...@nityo.com *


Duration of Hiring

6+ Months

Detailed job description - Skill Set:







Candidate should have 5+ years of experience in Performance testing.
Knowledge of Load runner is must. Should also possesses SQL database
experience





Mandatory Skills

Performance testing

Good to Have Skills

Experience is LISA (Performance testing tool)





Approx. Client Billing rate


Work Location

Woonsocket, RI

Client Interview / F2F Applicable

YES (Telephonic)

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


[android-developers] Looking for Performance Tester in Hillsboro (OR) with infosys

2016-06-24 Thread SALMA BHAT
Hi Partners,

Please share* local or near by profiles ONLY.*

Please share resume at *naseer.ah...@nityo.com *


Duration of Hiring

6 months

Detailed job description - Skill Set:

Please find attached JD

Mandatory Skills

· Must have extensive experience in performance testing, monitoring
and work load modelling.

· Advanced knowledge of LoadRunner, JMeter & Performance Center
Experience working in Agile environment

· Excellent communication skills



50/hr

Work Location

Hillsboro (OR)

Client Interview / F2F Applicable

Internal video conf evaluation followed by Client interview

-- 
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/CAJ0KNK-edxcica%3DSNxX6Qjovy2r%3DC5RJa%2BdKGf6UWqQdsZF0Pw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Need for DevOps Engineer (health domain)|| Portland, OR

2016-06-24 Thread Dev Singh
*Hi,*

*Only USC/GC*



*Role : DevOps Engineer (health domain)*
*Loc.: Portland, OR*

Skills:

· BS degree in Computer Science, Computer Engineering or equivalent
experience

· Prefer 5 years experience in deploy engineering, and
configuration management

· Understanding of the Release and Deployment Management process
specified by the Information Technology Infrastructure Library (ITIL)
process at the Foundation level

· Cross-platform experience and the expertise to identify and
resolve integration issues

· Knowledge of system level and integration level testing

· Must have advanced *experience with IIS and deployment of .NET
Frameworks* to multiple environments and IIS/Application configuration and
deployment automation is a plus

· Must have experience with implementing and managing applications
in an Application Load Balanced environment

· Strong scripting skills, MS Build preferred, but UCD, PowerShell,
ANT, & Perl experience acceptable

· Proficient in MS Build and/or Urban Code Deploy for automated
Build-Release processes

· Solid understanding of Continuous Integration and Continuous
Delivery concepts

Thanks & Regards

*Dev Singh*


Phone: 609-853-0818 Extn: 2112

*Email*: de...@nityo.com 

   dev09...@gmail.com 

*Hangout: **devs09...@gmail.com *

*Skype : **dev.singh526*

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


[android-developers] Urgent Need: Siebel Developer @ Pittsburgh, PA

2016-06-24 Thread Ateeq Rehman
*Hi Partner, *

Hope you are doing well.

This is Ateeq, from Diverse Lynx.



*Please share profiles for Siebel Developer at *
*ateeq.reh...@diverselynx.com* 



*Job Description:*



*Role: Siebel Open UI Developer*

*Location: Pittsburgh, PA*

*Experience: 6+ Years*



*Detailed JD:*



Must have been part of one large Siebel Implementation Project.
Experience in Siebel Solution Designing
Experience in Configuring UI/Business/Data Layers.
Experience in developing business services/workflows.
Experience in Server/Browser Scripting

*Experience on Siebel EAI is must Experience on Open UI*
Independently complete assigned work within project timelines
Adhere to configuration standards
Unit testing
Participation in design discussions with the business
Provide options to meet business requirements
Identify potential issues or risks
Work with Business Analysts to ensure that business requirements are met.
Collaborate with alliance partners



*Thanks & Regards*

*Ateeq Rehman*

*Diverse Lynx LLC|300 Alexander Park|Suite#200|Princeton, NJ 08540*

*Phone No: 732-452-1006 EXT 215*

*Email: **ateeq.reh...@diverselynx.com* * ||
Hangout: ateeq.staffing*

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


[android-developers] Re: Published app icon issue [URGENT]

2016-06-24 Thread Jason Flanagan
Did you make sure that the icon image is included in your project? Make 
sure you change the icon to the correct filename of your image in the 
manifest. See 
http://stackoverflow.com/questions/26615889/how-to-change-the-launcher-logo-of-an-app-in-android-studio
 
for clarification.

-JF

On Monday, June 20, 2016 at 10:15:29 PM UTC-4, nely...@gmail.com wrote:
>
> Published an app to Google Play. Everything is fine except that the icon 
> and name of the app thumbnail, once downloaded, isn't what I set it to be. 
> I made an old version of the app code, and thought the APK I uploaded is 
> under the right name, it shows that old name. I haven't used that old name 
> file for weeks. The launch icon picture isn't the one I uploaded, it's just 
> an android picture.
>

-- 
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/9ca48a0c-8c46-43db-a29a-33c093517fca%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Taking picture without preview using Camera 2 API and Improve Battery Life

2016-06-24 Thread Akshit Kumar
Greetings all

I am trying to build a camera which is able to take images every X seconds. 
For this I don't want the screen to be on in order to save the battery. I 
tried the approach of dimming the screen to the maximum and even reduced 
the preview size to 1px X 1px. I need the application to be running 
continuously(until the battery is dead) without any human intervention. 
This is just a personal project so I am also ready to alter the source of 
the android api is required. After talking to people on IRC, they said that 
using the Camera 2 API it is possible to take pictures without preview. I 
don't have any experience in using camera 2 api, so could someone point me 
to a resource for how to take images using camera2 api without 
preview/screen off. Also it would be great if someone could tell me about 
hacks(of any sort) to improve the battery and prolong the application. BTW 
I am using Nexus 5X as my device. Any help will be greatly appreciated.

-- 
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/5e973c8a-8b96-43c8-9277-e3dc8e8cf5c5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Permission denied (avd manager)

2016-06-24 Thread Advait Samudralwar
Same Problem with me ...


On Wednesday, February 24, 2016 at 1:39:54 AM UTC+5:30, Zane Adlum wrote:
>
> running:
> OSX Yosemite 10.10.5
> 2.3ghz i7
> 4gb
>
> android studio 1.5.1
> build #AI-141.2456560 built 12-1-2015
> JRE: 1.6.0_65-b14-468-11m4833 x86_64
> JVM: java hotspot 64 bit server vm by apple
>
> when i try to create an AVD using the manager (or command line) i get an 
> error:
> 12:02:30 PM FileNotFoundException: 
> /Users/user/.android/avd/Nexus_5_API_23.ini (Permission denied)
>
>
> i installed- reinstalled- updated etc etc everything for android studio 
> checked the location it pointed to ".android" existed but "avd" did not. i 
> created "avd" and set mode(permissions) for all folders/files android and 
> java to open. tried putting them in same groups. pretty much just tried 
> everything. note: i reset all changes once i found that there was no effect.
> on another mac the avd was built automatically on install and everything 
> ran smoothly so it seems to be a local issue.
>
> i'm in a andoid clas and cant even start homework until this is resolved. 
> please help or just point to proper article i didn't find.
>
>
>

-- 
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/bd07ced1-8b7e-4e1f-b540-b378cfa3801f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] F2F interview for java developer in Macon , GA

2016-06-24 Thread SALMA BHAT
Hi Partners,

Looking local only who can do f2f interview. share profile at
*naseer.ah...@nityo.com
*



*Skill Set*

Java , Spring 3.0 , Hibernate 4.0

*Work Location*

Macon , GA

*Special Instructions*
Duration of Hiring 9 months



*Job Description*


No of years’ experience >=5
Detailed job description - Skill Set: Progress to Java Conversion,
Siteminder implementation, Security remediations
Mandatory Skills Java , Spring 3.0 , Hibernate 4.0
Good to Have Skills WebLogic
Work Location Macon , GA

-- 
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/CAJ0KNK-3BQdA%3D%3DyneA0OpvHJQQDsORSOq21HY5%2BbMzpr5NNHVA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Imageview to Zooming Effect problem.

2016-06-24 Thread chinnarao . ch
How to apply the imageview zooming effect using seekbar and apply pinch 
functionalitys also

-- 
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/02b587c7-1115-4280-b460-92d6f03dfc8f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Can i record audio using 24bits as AudioFormat using AudioRecord?

2016-06-24 Thread 19901112happy
I notice android.media.AudioRecord only support ENCODING_PCM_8BIT and 
ENCODING_PCM_16BIT.

I want to use 24bits as AudioFormat.

In android sdk, When can  support 24bits as AudioFormat In 
android.media.AudioRecord?

Or how can I record as 24bits as AudioFormat?

-- 
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/fc525f9b-dc18-4cae-b9f2-d2927290ee73%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] SPEECH TO TEXT

2016-06-24 Thread Dipan Biswas
plz help me out. i wanna use android speech to text.. to move the point to 
the next cell of a ms excel sheet.. what will be the program code

-- 
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/475843a2-7bfd-4edf-8fac-ac3ed0e6f5e6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] DTMF Tone Generator

2016-06-24 Thread Rimish Bansod
I am developing an app for DTMF Tone generator.
When I Click it generates a tone.
my code is

one.setOnClickListener(new View.OnClickListener()
{
@Override
public void onClick(View v)
{
int streamType = AudioManager.STREAM_MUSIC;
int volume = 70;
ToneGenerator toneGenerator = new ToneGenerator(streamType, volume);
int toneType = ToneGenerator.TONE_DTMF_1;
int durationMs = 50;
toneGenerator.startTone(toneType, durationMs);
}
});


It is a single click listener when I press button for long time it generates 
tone for single time.

When I hold button for long time it should continously generates DTMF tone like 
our phone dial pad

Is there any method to do this.

 

-- 
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/641a0bce-6d6a-4336-b3c2-efebbe795129%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Play music online

2016-06-24 Thread Juma Abdullah



http://pupdup.com/music/

If you are a big fan of country music, then you can download thousands of 
country 
beats  from our albums directory. Our country 
songs not only boost your energy levels, but also helps to think in a 
creative way. If you are planning for a short trip and like to listen to 
play tunes in high frequency, then our collected albums might help you to 
have some fun during your trip. Individuals who are in a bad mood and 
suffering from depression disorder will feel happy after listening to 
country beats as it helps to cope with that problem quickly.

-- 
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/457af01f-ebe9-4358-a422-b71af907434d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.