[android-developers] Guys plz help ...getting this error

2016-05-06 Thread Akshay Chavan
Error:error reading 
C:\Users\AKSHAY.AKAHAY\AppData\Local\Android\sdk\extras\android\m2repository\com\android\support\support-annotations\23.3.0\support-annotations-23.3.0.jar;
 zip file is empty



But the file is still on location ...plz 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/01aa2ee2-a7d2-485f-a950-ed59420cef7d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Android external touch screen help

2016-05-06 Thread Brian Sheffield
I have a playjam gamestick rooted with full Android 4.1.2 and a Hyundai D320MLI 
32" IR touch screen monitor and I want to sync them together but they wont. 
Does anyone have any ideas how to get them to communicate?

-- 
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/68efb32e-d5ea-4b5f-8043-c8f528bb3874%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] startwd wandroid studio getting this error plz help....

2016-05-06 Thread Akshay Chavan
Error:error reading 
C:\Users\AKSHAY.AKAHAY\AppData\Local\Android\sdk\extras\android\m2repository\com\android\support\support-annotations\23.3.0\support-annotations-23.3.0.jar;
 
zip file is empty

-- 
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/7ce6c0c6-41b3-4979-9142-ee730dbc848b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Cannot send notification under managed profile (android for work)

2016-05-06 Thread AndroidJellyB

I am running into the same issue with Alarms.

java.lang.SecurityException: get application info: Neither user 1510130 nor 
current process has android.permission.INTERACT_ACROSS_USERS.
at android.os.Parcel.readException(Parcel.java:1546)
at android.os.Parcel.readException(Parcel.java:1499)
at android.app.IAlarmManager$Stub$Proxy.set(IAlarmManager.java:244)
at android.app.AlarmManager.setImpl(AlarmManager.java:425)
at android.app.AlarmManager.setExact(AlarmManager.java:373)

Also 3rd party apps cannot use INTERACT_ACROSS_USERS permission
or set the singleUser=true option.

How is a 3rd party app supposed to set an Alarm on multi-user device?

PackageManager: Not granting permission 
android.permission.INTERACT_ACROSS_USERS to package com.xyz. 
(protectionLevel=50 flags=0xbbe46)
Permission Denial: Receiver com.xyz.AlarmsReceiver requests 
FLAG_SINGLE_USER, but app does not hold 
android.permission.INTERACT_ACROSS_USERS


On Monday, January 11, 2016 at 11:26:18 PM UTC-8, hai zhu wrote:
>
>
> I am writing an app to run under the managed profile (android for work). 
> But it always crashed when sending a notification.
> Here is the sample code:
>
> protected void onResume() {
> super.onResume();
>
> final Notification.Builder builder = new Notification.Builder(this);
> builder.setAutoCancel(true)
> .setContentText("Test Notification")
> .setSmallIcon(android.R.drawable.ic_menu_close_clear_cancel);
> NotificationManager nm = (NotificationManager) 
> getSystemService(Context.NOTIFICATION_SERVICE);
> nm.notify(1001, builder.build());
> }
>
> and the log:
> 01-12 15:08:23.990 12822 12822 E AndroidRuntime: Caused by: 
> java.lang.SecurityException: Permission Denial: broadcast from android asks 
> to run as user 0 but is calling from user 10; this requires 
> android.permission.INTERACT_ACROSS_USERS_FULL or 
> android.permission.INTERACT_ACROSS_USERS
> 01-12 15:08:23.990 12822 12822 E AndroidRuntime:  at 
> android.os.Parcel.readException(Parcel.java:1599)
> 01-12 15:08:23.990 12822 12822 E AndroidRuntime:  at 
> android.os.Parcel.readException(Parcel.java:1552)
> 01-12 15:08:23.990 12822 12822 E AndroidRuntime:  at 
> android.app.INotificationManager$Stub$Proxy.enqueueNotificationWithTag(INotificationManager.java:709)
> 01-12 15:08:23.990 12822 12822 E AndroidRuntime:  at 
> android.app.NotificationManager.notify(NotificationManager.java:230)
> 01-12 15:08:23.990 12822 12822 E AndroidRuntime:  at 
> android.app.NotificationManager.notify(NotificationManager.java:194)
> 01-12 15:08:23.990 12822 12822 E AndroidRuntime:  at 
> com.example.testproj.MainActivity.onResume(MainActivity.java:56)
> 01-12 15:08:23.990 12822 12822 E AndroidRuntime:  at 
> android.app.Instrumentation.callActivityOnResume(Instrumentation.java:1258)
> 01-12 15:08:23.990 12822 12822 E AndroidRuntime:  at 
> android.app.Activity.performResume(Activity.java:6312)
> 01-12 15:08:23.990 12822 12822 E AndroidRuntime:  at 
> android.app.ActivityThread.performResumeActivity(ActivityThread.java:3092)
> 01-12 15:08:23.990 12822 12822 E AndroidRuntime:  ... 10 more
>
> and the permissions mentioned above:
> 
>  android:protectionLevel="signature|privileged|development" />
>
> 
>  android:protectionLevel="signature|installer" />
>
> So, the question is, as the two permissions mentioned 
> (INTERACT_ACROSS_USERS_FULL and INTERACT_ACROSS_USERS) are hidden from third 
> party app, how can I send out a notification under the managed profile ?
>
>

-- 
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/3efb9760-63b1-49b7-a534-f16c3ffc7808%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Senior Storage/Architect/ SME......

2016-05-06 Thread sudhanshu pandey
*Job Title: Senior Storage/Architect/ SME*

*Contract: 12+ Months*



*Requirement:*

*POSITION SUMMARY:*

· Enterprise Storage Engineer will be responsible for hands-on
Engineering role in a Fortune 12 company on 1 year contract

· Responsibilities will include developing implementation solutions
based on established Enterprise Technical Architecture standards and
service catalogs, evaluating new technologies and creating supporting
documentation to be used by other parts of IT organization.

· The individual will work with domain architects, other
engineering and operations team members to fulfill business IT requirements
by delivering effective solutions that are supportable, maintainable and
cost effective. Selected individual will focus on primarily EMC
technologies that are both SAN and NAS based.

*Target Technologies:*

The skill set needs to be EMC centric and include:

   - Solutions Enabler
   - VMAX 2/3
   - VNX
   - DMX
   - Brocade Switches
   - Connectrix Manager
   - SRDF
   - Isilon
   - Centera
   - Data Domain
   - Avamar

*PRIOR WORK EXPERIENCE:*

· 5+ years of experience with Enterprise Storage Engineering
technologies

*Required Skills:*

· Strong knowledge of EMC based storage technologies (VMAX, VNX,
Isilon, Data Domain, Celerra, Centera)

· In-depth knowledge of connectivity requirements for open systems
hosts (ESX, Linux, Windows,  UNIX)

· Understanding of storage replication and virtualization
technologies

· Understanding of how to interact with external vendors in the
form of troubleshooting and escalation

· Ability to do both capacity planning and performance analysis

*Desired Abilities:*

   - Strong problem solving, time management and organizational skills
   - Excellent interpersonal and communication (oral, listening and
   writing) skills are required
   - Excel at efficient multi-tasking
   - Demonstrate a sense of urgency in completing tasks and resolving
   issues in order to deliver quality projects on time and within budget
   - Strong collaboration skills and ability to communicate all aspects of
   the job requirements, including the creation of formal documentation

*Time allocation*

· Engineering services - deliver Engineering storage build
solutions and documentation in accordance with established Architecture
guidelines -  90%

· Assist with escalated storage issue resolution - 5%

· Lead POC activities for new to CVS storage devices, create
operational documentation - 5%





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


[android-developers] Urgent Need: Agile Coach @ Columbus, OH - 6+ Month

2016-05-06 Thread Ateeq Rehman
*Hi Folk,*

Hope everything is going well with you.



Please share *Agile Coach *Profile at *ateeq.reh...@diverselynx.com*




*Job Description:*


*Role: Agile Coach*

*Location: Columbus, OH*

*Experience: 10+ years*



*Detailed JD:*



o Minimum 10 to 12 years’ experience in Agile and Lean based process
improvements in a large organization acting in a leadership role /Managing
Consultant /Client Program Manager.
o Minimum 3-5 years of industry experience (IT, Manufacturing, Production,
BFS, etc.) as an Agile Coach (resume should clearly articulate the coaching
experience in a large scale enterprise agile transformation).
o Experience in training teams on Agile methodologies (Scrum, Kanban, Lean,
XP, RAD etc.) along with the capability to conduct role based Agile
training such as Scrum Master Training, Product Owner Training, etc.
o Experience in managing or leading Agile engagements in a distributed
agile environment such as on-site / off-shore model
o Experience in enterprise Agile frameworks such as Scaled Agile Framework
(SAFe), Large Scale Scrum (LeSS), Disciplined Agile Delivery (DAD) with
ability to guide the customer organization on the right path for Scaled
Agile adoption and maturity
o Experience in creating and tailoring Agile processes based on customer
need, keeping the processes always aligned to the Agile Manifesto
o Experience in consulting or implementing Agile processes in legacy
application environment such as mainframe
o Experience in customer facing roles





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


[android-developers] HOT LIST

2016-05-06 Thread ram r
*Dear Associates,*



*Greetings for the day.*



*Please find below the updated available consultants list for Corp to Corp
projects.*



*If you come across any requirements in the area, please do mail me @
**r...@talenttechcorp.com
 **or you can  reach me@ **469-666-9886*



*S.No*

*Name*

*Technology*

*Exp*

*Location*

*Re Location*

*1*

*Mohan*

*Sr.Java_J2EE  Hadoop Developer*

*8+ *

*PA*

*Open*

*2*

*Ravi*

*Sr.MSBI  Developer*

*8+*

*GA*

*Open*

*3*

*HimaBindu*

*Sr.Java Developer*

*9+*

*TX*

*TX*

*4*

*Madhu *

*Sr.VMWare  Administrator*

*7+*

*NY*

*Open*

**

*--*

*--*

*--*

*--*

*-*













*5*

*Raghu*

*Sr.TSM  and Commvault  Administrator*



*8+*

*Richmond*

*Open*





























*Warm Regards,*

*Ram*

*Talent Tech*

*Contact : # **469-666-9886*

*Email id: **r...@talenttechcorp.com *

*www.* *talenttechcorp.com  *

*Gtalk & Yahoo: **ramc.recruiter*



*If you’d prefer not to receive email from me in the future “put remove” in
the subject line and I’ll honor your request.*

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


[android-developers] Urgent req for Java Developer @ Chicago, IL

2016-05-06 Thread Shaik Sadiq
Hi,



Hope you are doing well !!!



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



*Job Title: Java Developer*

Location: Chicago, IL

Duration: 3+ Month

Total Experience: 7+ Years





*JD:*

JavaScript, Java, J2EE, Applets, EJB, JSP, Java Script, Servlets, JDBC,
JDK, jQuery, Backbone.js, Handlebars.js, RequireJs, Jasmin and
Underscore.js, HTM5, CSS3

Mandatory Skills: *Backbone.js, underscore.js, handlebars.js, HTML5, CSS3
and styling*



NOTE: *Candidate must and should have all the Skills. please check with the
consultant's if their are having all the skills. It's a sure shot closure
Requirement.*



*Sadiq Shaik*

ASAP Solutions Group LLC,

678-221-4992 (ext) 217

ssh...@myasap.com 

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


[android-developers] HOT LIST

2016-05-06 Thread ram r
*Dear Associates,*



*Greetings for the day.*



*Please find below the updated available consultants list for Corp to Corp
projects.*



*If you come across any requirements in the area, please do mail me @
**r...@talenttechcorp.com
 **or you can  reach me@ **469-666-9886*



*S.No*

*Name*

*Technology*

*Exp*

*Location*

*Re Location*

*1*

*Mohan*

*Sr.Java_J2EE  Hadoop Developer*

*8+ *

*PA*

*Open*

*2*

*Ravi*

*Sr.MSBI  Developer*

*8+*

*GA*

*Open*

*3*

*HimaBindu*

*Sr.Java Developer*

*9+*

*TX*

*TX*

*4*

*Madhu *

*Sr.VMWare  Administrator*

*7+*

*NY*

*Open*

**

*--*

*--*

*--*

*--*

*-*













*5*

*Raghu*

*Sr.TSM  and Commvault  Administrator*



*8+*

*Richmond*

*Open*





























*Warm Regards,*

*Ram*

*Talent Tech*

*Contact : # **469-666-9886*

*Email id: **r...@talenttechcorp.com *

*www.* *talenttechcorp.com  *

*Gtalk & Yahoo: **ramc.recruiter*



*If you’d prefer not to receive email from me in the future “put remove” in
the subject line and I’ll honor your request.*

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


[android-developers] Immediate Closure::::Looking for Active Directory Admin OR Expert

2016-05-06 Thread sudhanshu pandey
*Job Title: Active Directory Admin /Expert*

*Contract: Long Term *

*Requirement:*



*Job Description:* The Active Directory SME is a subject matter expert that
has global accountability for the architecture and design of Active
Directory and Windows Server 2008 R2 virtual machine server environment.
The Active Directory-subject matter expert  has global accountability for
the architecture and design of Active Directory and Windows Server 2008 R2
virtual machine server environment. This person must be an Active Directory
and Microsoft Windows Server technology expert and must be able to operate
and continuously improve the environment distributed across remote sites
and offices throughout the world. Additionally, the successful Technology
Analyst should possess the ability to own and perform audits using AD
toolkits and identify security risks in an Active Directory Enterprise
environment.



*Required:*

· Design remediate and provide solution for Active Directory
Infrastructure, including, design and implementation of Group Policy.

· Strong understanding of architecting and configuring including AD
Forests, Domains, Trusts, Group Policy and Organizational Units

· Strong record of operational success in managing Microsoft Active
Directory services including outstanding uptime and throughput.

· Design remediate and architect PKI infrastructure

· Knowledge of PKI/Certificates - SSL

· PowerShell/Perl: Write scripts & Update existing scripts

· ACL/Permission Management

· Implement AD schema changes.

· LDAP integration.

· Good experience in Threat Management Gateway(TMG)

· Custom and In-house application integration.

· Responsible for the design and architecture of the global backup
and recovery of Active Directory

· Develop and maintain security and distribution groups to support
functionality of applications and in-house tools.

· Strong 'principal of least privilege' understanding and ability
to leverage technology to achieve such principal.

· Provide 3rd level escalation support for Active Directory, ADFS
and PKI related issues. Coordinate with service and support leads,
application vendors and other infrastructure teams.



*Desired:*

· Technical infrastructure expert/design/support as represented in
the IT Standards/ Policies/Procedures for Windows Server operating systems.

· Owns and participates discussions in business and technical
information technology solution implementations, upgrades, enhancement and
conversions.

· Review/analyze enterprise infrastructure computing needs,
computer system capabilities, workflows, and scheduling limitations. May
analyze or recommend commercially-available software.

· Evaluate and review product updates and roadmaps from Microsoft.
Test and implement life cycle management process.

· Minimum 7 years of experience in Windows , Active directory , GPO
, deployment and design of new Windows domains and environments

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


[android-developers] Looking for MF/Web based Functional testing

2016-05-06 Thread salma bhat
*Position: MF/Web based Functional testingWork LocationNaperville,
ILLINOISPosition: Contract: *

*( Automation is a plus. Healthcare domain knowledge)*


Job Description
• At least 5 years of experience in Functional Testing Skills •
• At least 5 years of experience in test case creation and test
execution.
• At least 2 years of Combined experience in automation tools viz.
QuickTest Pro (HP-QTP)./UFT  Experience in framework development
• At least 1 year experience in SOA / Web Services testing
• Experience with Healthcare Services domain is a plus.
• Ability to work in team environment and client interfacing
skills.
• Analytical skills
• Experience and desire to work in a Global delivery environment
• Excellent client interfacing skills
• Lead activities in all phases of projects, building and mentoring
teams. Have proven ability of being an independent and team player in all
aspects of project life cycle.
• Experience in the following:  Performing Automation feasibility
analysis, developing & implementing Test Automation Strategy
• Analyzing the requirements (explicit & implicit) and define
appropriate framework & guidelines • Automation of script development in
Web applications using Keyword driven / Hybrid frameworks • Maintenance of
Automation Framework & script maintenance
• Analyze & Implement Best practices like Reuse to improvise
scalability and performance
• Automate applications on varied platforms & technologies eg. Web,
Mainframe, Web services • Pro-actively analyze current processes and
practices and suggest/ drive improvements






*Salma Bhat*

Desk : 609-853-0818 Ext: 2121

mailto:naseer.ah...@nityo.com 

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


[android-developers] Looking for MF/Web based Functional testing

2016-05-06 Thread SALMA BHAT
*Position: MF/Web based Functional testing Work LocationNaperville,
ILLINOIS Position: Contract:  *

*( Automation is a plus. Healthcare domain knowledge)*


Job Description
• At least 5 years of experience in Functional Testing Skills •
• At least 5 years of experience in test case creation and test
execution.
• At least 2 years of Combined experience in automation tools viz.
QuickTest Pro (HP-QTP)./UFT  Experience in framework development
• At least 1 year experience in SOA / Web Services testing
• Experience with Healthcare Services domain is a plus.
• Ability to work in team environment and client interfacing
skills.
• Analytical skills
• Experience and desire to work in a Global delivery environment
• Excellent client interfacing skills
• Lead activities in all phases of projects, building and mentoring
teams. Have proven ability of being an independent and team player in all
aspects of project life cycle.
• Experience in the following:  Performing Automation feasibility
analysis, developing & implementing Test Automation Strategy
• Analyzing the requirements (explicit & implicit) and define
appropriate framework & guidelines • Automation of script development in
Web applications using Keyword driven / Hybrid frameworks • Maintenance of
Automation Framework & script maintenance
• Analyze & Implement Best practices like Reuse to improvise
scalability and performance
• Automate applications on varied platforms & technologies eg. Web,
Mainframe, Web services • Pro-actively analyze current processes and
practices and suggest/ drive improvements







*Salma Bhat*

Desk : 609-853-0818 Ext: 2121

mailto:naseer.ah...@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/CAJ0KNK-NKn3NKomCxTXM7nhAx4w1DTKXexa6KGL9g0xL5yo2jw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent req for Solution Architect @ Atlanta, GA

2016-05-06 Thread Shaik Sadiq
Hi,



Hope you are doing well !!!



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



*Job Title: Solution Architect*

Location: Atlanta, GA

Duration: 6+ Month

Total Experience: 8+ Years



JD:

The Platform Technical Architect will be responsible to define high level
architecture and design across multiple initiatives. They will be
responsible to work with multiple internal and external teams in order to
best define approaches, technologies and systems in order to ensure quick
implementation and delivery. The architect will need to work closely with
the Target State Architecture group in order to understand the principles
of new solution approaches, which choices are available from a technology,
platforms and systems perspective. They will need to be a champion of the
TSA as they interact with various development organizations, in order to
ensure that solutions are created in accordance with the TSA and its
evolution. The Platform Technical Architect will also be responsible to
ensure that the solution approaches defined in the context of particular
initiatives comply from a technical, platform, systems and standards
perspective.



*Sadiq Shaik*

ASAP Solutions Group LLC,

678-221-4992 (ext) 217

ssh...@myasap.com 

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


[android-developers] Hot-List

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

*Hope you are doing great!*

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

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



*S.NO* 

*Name*

*Technology*

*Location*

*Experience*

*Relocation*

*1*

*Mayu*

*ETL Informatica*

*Plattsburgh,NY*

*7.5*

*Yes*

*2*

*Saurin*

*ETL Informatica*

*Birmingham, IL*

*8+*

*Yes*

*3*

*Shradha*

*Sr. ETL Developer*

*Dallas,Tx*

*11+*

*Only Dallas*

*4*

*Krunal*

*ETL Informatica*

*Cary, NC*

*7+*

*Yes*

*5*

*Anu*

*SQL SERVER*

*Houston,TX*

*7+*

*Open*

*6*

*Sree *

*Sr. Business Analyst*

*Houston, Texas*

*7+*

*Yes*

*7*

*Mrunali*

*Informatica*

*Irvine,CA*

*7+*

*CA, TX, FL, NC, AZ*

*8*

*Ami*

*SQL/BI Developer*

*Piscataway, NJ*

*7+*

* Open*

*9*

*Rama Krishna*

*PL/SQL*

*Tampa,FL*

*7+*

*Yes*

*10*

*Rounak*

*Business Analyst *

*Des Moines, IA*

*7+*

*Open*

*11*

*Sowmya*

*PL/SQL*

*Dallas, TX*

*8+*

*Yes*

*12*

*Arti*

* QA (automation)*

*Irving (Texas) *

*6+*

*yes*



*Thanks and Regards*

*RAHUL*



*Business Development Manager*

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

*Contact**:* 614-664-7826

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

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


www.technocraftsol.com

www.xdimensiontech.com

Partner with XDimension Technology

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


[android-developers] Any android experts - help please

2016-05-06 Thread NCA Sathish Kummar
An android app (source code) I downloaded from the web is working on one 
android phone and not working on other 2 phones ... 

need guidance.

App working in Samsung / Android ver 4.12 but not working in moto G / ver 
5.1 and HTC one / Ver 6.0

Started my first app development. Downloaded a location tracking app and 
created a APK; App working in Samsung / Android ver 4.12 but not working in 
moto G / ver 5.1 and HTC one / Ver 6.0

Using Android studio  Can some one help ? Manifest xml posted here 

Error is " application stopped unexpectedly ... "

apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.1"

defaultConfig {
applicationId "com.marginalhacks.locationexample"
minSdkVersion 16
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 
'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.+'
compile 'com.google.android.gms[image: :p]lay-services:+'
}

-- 
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/50d7ba4d-194f-4535-8830-8ff45e63fbc1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] HOT-LIST

2016-05-06 Thread sai praveen G
*Hi*

*Please find the updated hot-list of my consultants..*

*Please send the suitable requirements to *s...@theplanetp.com  *or feel
free to call me at **786-484-7805*





*S.No*

*Name*

*Skill / Job Title*

*Experience*

*Location*

*Relocation*

*1*

Nabeel

.Net Developer

8+ Years

Dallas, TX

Open

*2*

Kalpa

.Net Developer

8+ Years

Austin, TX

Open

*3*

Mittul

QA

7+ Years

Detroit, MI

Open

*4*

Kaushal

QA

8+ Years

 NY

Open

*5*

Gokul

UI Developer

7+ Years

San Jose, CA

Bay Area

*6*

Sai

UI Developer

8+ Years

TX

Open

*7*

Sainath

UI Developer

7+ Years

San Jose, CA

Open

8

Jeevitha

Java developer

8+ Years

NY

EST

*9*

Anusha

Data Modelling

8+ Years

CT

Open




[image: Planet-P Logo.png]

*Sai Praveen*

*Sr.IT Recruiter*

*Planet-P, Inc.,*

7950 NW 53rd Street, Suite 337, Miami, Florida 33166

Direct: +1 (786) 484 - 7805, Fax: +1 (866) 480-9591

Web:   www.theplanetp.com eMail: s...@theplanetp.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/CAABDhFzdgshRdHpLqSCRqRx5drFNUe__dOs99%3D1uJPxvyPLu9A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Hot_list

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

*Hope you are doing great!*

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

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


*S.NO* 

*Name*

*Technology*

*Location*

*Experience*

*Relocation*

*1*

*Mayu*

*ETL Informatica*

*Plattsburgh,NY*

*7.5*

*Yes*

*2*

*Saurin*

*ETL Informatica*

*Birmingham, IL*

*8+*

*Yes*

*3*

*Shradha*

*Sr. ETL Developer*

*Dallas,Tx*

*11+*

*Only Dallas*

*4*

*Krunal*

*ETL Informatica*

*Cary, NC*

*7+*

*Yes*

*5*

*Anu*

*SQL SERVER*

*Houston,TX*

*7+*

*Open*

*6*

*Sree *

*Sr. Business Analyst*

*Houston, Texas*

*7+*

*Yes*

*7*

*Mrunali*

*Informatica*

*Irvine,CA*

*7+*

*CA, TX, FL, NC, AZ*

*8*

*Ami*

*SQL/BI Developer*

*Piscataway, NJ*

*7+*

* Open*

*9*

*Rama Krishna*

*PL/SQL*

*Tampa,FL*

*7+*

*Yes*

*10*

*Rounak*

*Business Analyst *

*Des Moines, IA*

*7+*

*Open*

*11*

*Sowmya*

*PL/SQL*

*Dallas, TX*

*8+*

*Yes*

*12*

*Arti*

* QA (automation)*

*Irving (Texas) *

*6+*

*yes*



*Thanks and Regards*

*RAHUL*



*Business Development Manager*

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

*Contact**:* 614-664-7826

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

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


www.technocraftsol.com

www.xdimensiontech.com

Partner with XDimension Technology

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


[android-developers] MF/Web based Functional testing with Healthcare domain & COSMOS, SSAS, SSIS((Should have had earlier exposure of working for Microsoft.))

2016-05-06 Thread SALMA BHAT
Hi Partners.

My apologies if email is bothering you. Please let me me know i will then
remove from my list.

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

.Should have had earlier exposure of working for Microsoft.


*Skill SetCOSMOS, SSAS, SSIS Work LocationREDMOND, WA, USA*
Job Description

8-10 Years of experience in developing large Data Warehouse projects using
Microsoft BI including SSAS, SSIS At least 5 years of experience in
defining new architectures and driving an independent project from an
architectural stand point. At least 5 years of experience in defining
technology solutions for to solve business/ IT problem. 1-2 years of
hands-on experience on COSMOS, ADL, ADF and other Big Data Programs inside
Microsoft. 2-3 Years of experience in designing and developing large scale
Big Data Programs using Hadoop etc. Should be able to generate the Next
Generation BI Platform view Mandatory Skills-COSMOS, SSAS, SSIS Good to
Have Skills- Should have had earlier exposure of working for Microsoft.
__



*Position: MF/Web based Functional testing.( Automation is a plus.
Healthcare domain knowledge) Work LocationNaperville, ILLINOIS
Position: Contract:  *
Job Description
• At least 5 years of experience in Functional Testing Skills •
• At least 5 years of experience in test case creation and test
execution.
• At least 2 years of Combined experience in automation tools viz.
QuickTest Pro (HP-QTP)./UFT  Experience in framework development
• At least 1 year experience in SOA / Web Services testing
• Experience with Healthcare Services domain is a plus.
• Ability to work in team environment and client interfacing
skills.
• Analytical skills
• Experience and desire to work in a Global delivery environment
• Excellent client interfacing skills
• Lead activities in all phases of projects, building and mentoring
teams. Have proven ability of being an independent and team player in all
aspects of project life cycle.
• Experience in the following:  Performing Automation feasibility
analysis, developing & implementing Test Automation Strategy
• Analyzing the requirements (explicit & implicit) and define
appropriate framework & guidelines • Automation of script development in
Web applications using Keyword driven / Hybrid frameworks • Maintenance of
Automation Framework & script maintenance
• Analyze & Implement Best practices like Reuse to improvise
scalability and performance
• Automate applications on varied platforms & technologies eg. Web,
Mainframe, Web services • Pro-actively analyze current processes and
practices and suggest/ drive improvements


Naseer
Desk : 609-853-0818 Ext: 2184
naseer.ah...@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/CAJ0KNK9TSaS8VN7YS0_wf0aQNJQOv%3DV8HSpaX-pGjoq8t09QLA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] MF/Web based Functional testing with Healthcare domain & COSMOS, SSAS, SSIS((Should have had earlier exposure of working for Microsoft.))

2016-05-06 Thread salma bhat
Hi Partners.

My apologies if email is bothering you. Please let me me know i will then
remove from my list.

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

.Should have had earlier exposure of working for Microsoft.


*Skill SetCOSMOS, SSAS, SSIS Work LocationREDMOND, WA, USA*
Job Description

8-10 Years of experience in developing large Data Warehouse projects using
Microsoft BI including SSAS, SSIS At least 5 years of experience in
defining new architectures and driving an independent project from an
architectural stand point. At least 5 years of experience in defining
technology solutions for to solve business/ IT problem. 1-2 years of
hands-on experience on COSMOS, ADL, ADF and other Big Data Programs inside
Microsoft. 2-3 Years of experience in designing and developing large scale
Big Data Programs using Hadoop etc. Should be able to generate the Next
Generation BI Platform view Mandatory Skills-COSMOS, SSAS, SSIS Good to
Have Skills- Should have had earlier exposure of working for Microsoft.
__



*Position: MF/Web based Functional testing.( Automation is a plus.
Healthcare domain knowledge) Work LocationNaperville, ILLINOIS
Position: Contract:  *
Job Description
• At least 5 years of experience in Functional Testing Skills •
• At least 5 years of experience in test case creation and test
execution.
• At least 2 years of Combined experience in automation tools viz.
QuickTest Pro (HP-QTP)./UFT  Experience in framework development
• At least 1 year experience in SOA / Web Services testing
• Experience with Healthcare Services domain is a plus.
• Ability to work in team environment and client interfacing
skills.
• Analytical skills
• Experience and desire to work in a Global delivery environment
• Excellent client interfacing skills
• Lead activities in all phases of projects, building and mentoring
teams. Have proven ability of being an independent and team player in all
aspects of project life cycle.
• Experience in the following:  Performing Automation feasibility
analysis, developing & implementing Test Automation Strategy
• Analyzing the requirements (explicit & implicit) and define
appropriate framework & guidelines • Automation of script development in
Web applications using Keyword driven / Hybrid frameworks • Maintenance of
Automation Framework & script maintenance
• Analyze & Implement Best practices like Reuse to improvise
scalability and performance
• Automate applications on varied platforms & technologies eg. Web,
Mainframe, Web services • Pro-actively analyze current processes and
practices and suggest/ drive improvements

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


[android-developers] Urgent req for Maximo Developer with Java @ Atlanta, GA

2016-05-06 Thread Shaik Sadiq
Hi,



Hope you are doing well !!!



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



*Job Title: Maximo Developer with Java*

Location: Atlanta, GA

Duration: 4+ Month

Total Experience: 8+ Years



*JD:*

Resource will be responsible to design code and test complex new Maximo
modules using Maximo or Java based on the user stories and functional
requirements.



Note: *Candidate should have 3+ years’ experience as Maximo Developer*



*Sadiq Shaik*

ASAP Solutions Group LLC,

678-221-4992 (ext) 217

ssh...@myasap.com 

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


[android-developers] Re: vision barcode api - aztec codes

2016-05-06 Thread droidgeo
Yes, zxing has similar problem

W dniu piątek, 6 maja 2016 09:35:35 UTC+2 użytkownik gjs napisał:
>
> https://github.com/zxing/zxing/issues/357

-- 
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/48d941dd-58fd-4038-9925-9da6a1fbd2af%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent req for Java with Maximo @ Atlanta, GA

2016-05-06 Thread Shaik Sadiq
Hi,



Hope you are doing well !!!



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



*Job Title: Java with Maximo*

Location: Atlanta, GA

Duration: 4+ Month

Total Experience: 8+ Years



*JD:*

Resource will be responsible to design code and test complex new Maximo
modules using Maximo or Java based on the user stories and functional
requirements.



Note: *Candidate should have 3+ years’ experience in Maximo or as Maximo
Developer*



*Sadiq Shaik*

ASAP Solutions Group LLC,

678-221-4992 (ext) 217

ssh...@myasap.com 

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


[android-developers] Hotlist- Looking Forward to work with you

2016-05-06 Thread Tapan Kushwaha
Hello,

Greetings!



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



*S.NO* 

*Name*

*Technology*

*Location*

*Experience*

*Relocation*

*1*

*Shradha*

*Sr. ETL Developer*

*Dallas, TX*

*11+*

*Only Dallas*

*2*

*Mayu*

*ETL Informatica*

*Plattsburgh, NY*

*7.5*

*Yes*

*3*

*Saurin*

*ETL Informatica*

*Birmingham, IL*

*8+*

*Yes*

*4*

*Krunal*

*ETL Informatica*

*Cary, NC*

*7+*

*Yes*

*5*

*Mrunali*

*Informatica*

*Irvine, CA*

*7+*

*CA, TX, FL, NC, AZ*

*6*

*Arti*

*QA Automation*

*CA*

*7+*

*Open*

*7*

*Sowmya*

*PL/SQL*

*Dallas, TX*

*8+*

*Yes*

*8*

*Rama*

*PL/SQL*

*Tamha, FL*

*7+*

*Yes*

*9*

*Ami*

*SQL/BI Developer*

*Piscataway, NJ*

*7+*

* Open*

*10*

*Anusha*

SQL/ SSIS/ SSRS

*Dallas, TX*

*7+*

*Open*

*11*

*Sai*

*Service NOW*

*Dallas, TX*

*7+*

*Yes*

12

Sree

Business Analyst

Houston, TX

7+

Open




Looking forward to do Business with you.



Thanks,



*TAPAN*

*Business Development Manager*

*Technocraft Solutions LLC*

7000 parkwood Blvd, Ste#200G

Frisco,TX,75034

Email: ta...@technocraftsol.com

www.technocraftsol.com

www.xdimensiontech.com

Partner with XDimension Technology

Yahoo Id:Tapan_technocraft

Gmail Id: Tapan.technocraft

Contact: 614-664-7644

Fax: 866-360-3962

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


[android-developers] Salesforce Developer with (Lawson S3 ERP), Milwaukee, WI ,8+ Months

2016-05-06 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: Salesforce Developer with (Lawson S3 ERP)*

*Location: Milwaukee, WI *

*Contract: 8+ Months*

*Requirement:*

· Experience (Years)  6-8

· Customer Support, liaising directly with the clients. --Analyze
and review business, functional, and technical requirements

· Document and develop code according to specifications and
standards

· Prepare test data and plan and conduct basic unit or module
testing

· Provide support for quality assurance testing and defect
resolution

· Participate in project team meetings and communicate effectively
with peers, architects, system analysts,business analysts, project
managers, quality control, and across other technology team
boundaries,reporting project status as required

· May be required to be on call to provide support on a need-to
basis



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


[android-developers] Hot-List

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

*Hope you are doing great!*

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

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


*S.NO* 

*Name*

*Technology*

*Location*

*Experience*

*Relocation*

*1*

*Mayu*

*ETL Informatica*

*Plattsburgh,NY*

*7.5*

*Yes*

*2*

*Saurin*

*ETL Informatica*

*Birmingham, IL*

*8+*

*Yes*

*3*

*Shradha*

*Sr. ETL Developer*

*Dallas,Tx*

*11+*

*Only Dallas*

*4*

*Krunal*

*ETL Informatica*

*Cary, NC*

*7+*

*Yes*

*5*

*Anu*

*SQL SERVER*

*Houston,TX*

*7+*

*Open*

*6*

*Sree *

*Sr. Business Analyst*

*Houston, Texas*

*7+*

*Yes*

*7*

*Mrunali*

*Informatica*

*Irvine,CA*

*7+*

*CA, TX, FL, NC, AZ*

*8*

*Ami*

*SQL/BI Developer*

*Piscataway, NJ*

*7+*

* Open*

*9*

*Rama Krishna*

*PL/SQL*

*Tampa,FL*

*7+*

*Yes*

*10*

*Rounak*

*Business Analyst *

*Des Moines, IA*

*7+*

*Open*

*11*

*Sowmya*

*PL/SQL*

*Dallas, TX*

*8+*

*Yes*

*12*

*Arti*

* QA (automation)*

*Irving (Texas) *

*6+*

*yes*



*Thanks and Regards*

*RAHUL*



*Business Development Manager*

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

*Contact**:* 614-664-7826

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

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


www.technocraftsol.com

www.xdimensiontech.com

Partner with XDimension Technology

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


[android-developers] Multiple positions....... Technology/ Business Analyst & Test Analyst or Technical Test lead...............Atlanta, GA & Sunnyvale, USA

2016-05-06 Thread SALMA BHAT
Hi Partners,

Please provide some resume on salma.b...@nityo.com



*Role :* *Technology/ Business Analyst*

*Location : Atlanta, GA*

*Position type:  Contract*





*Key Responsibilities And Accountabilities:*



*Qualifications*

• Bachelor’s degree or foreign equivalent required. Will also consider one
year of relevant work experience in lieu of every year of education

. • 4+ years of experience in Web design and prototype creation.



*Skill set*

• Experience with Agile/Scrum process a large positive.

• Good written and verbal communication skills

• Technical grasp of web technologies; development skills not needed, but
should be familiar with web concepts (HTML, CSS, JS, web services)

• Ability to interact with non-technical business sponsors and translate
business needs into system requirements.

• Ability to interact with external dependent technology teams in refining
user stories that have external dependencies to complete the work

• Ability to work closely with Product Owners, and Dev/QA teams to answer
questions regarding requirements

• Co-located with team in Agile team room.







……





*Role :* *Test Analyst or Technical Test lead*

*Location : Sunnyvale, USA*

*Position type:  Contract*



*Key Responsibilities And Accountabilities:*



*Years of experience* : 5- 8 Years Equivalent



*Job Description*:· Strong Programming in Java, J2EE

· Should have played Java developer role for at least 3 years.

· Should have expertise/ knowledge in JUnit, Mocking libraries.
Testing knowledge is advantageous.

· Should have worked end to End software development life cycle
including testing phase.-

· Knowledge in iOS & MacOSX









*Salma Bhat*

Desk : 609-853-0818 Ext: 2121

salma.b...@nityo.com 

*Nityo Infotech Corp. *

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


[android-developers] Multiple positions....... Technology/ Business Analyst & Test Analyst or Technical Test lead...............Atlanta, GA & Sunnyvale, USA

2016-05-06 Thread salma bhat
Hi Partners,

Please provide some resume on salma.b...@nityo.com



*Role :* *Technology/ Business Analyst*

*Location : Atlanta, GA*

*Position type:  Contract*





*Key Responsibilities And Accountabilities:*



*Qualifications*

• Bachelor’s degree or foreign equivalent required. Will also consider one
year of relevant work experience in lieu of every year of education

. • 4+ years of experience in Web design and prototype creation.



*Skill set*

• Experience with Agile/Scrum process a large positive.

• Good written and verbal communication skills

• Technical grasp of web technologies; development skills not needed, but
should be familiar with web concepts (HTML, CSS, JS, web services)

• Ability to interact with non-technical business sponsors and translate
business needs into system requirements.

• Ability to interact with external dependent technology teams in refining
user stories that have external dependencies to complete the work

• Ability to work closely with Product Owners, and Dev/QA teams to answer
questions regarding requirements

• Co-located with team in Agile team room.







……





*Role :* *Test Analyst or Technical Test lead*

*Location : Sunnyvale, USA*

*Position type:  Contract*



*Key Responsibilities And Accountabilities:*



*Years of experience* : 5- 8 Years Equivalent



*Job Description*:· Strong Programming in Java, J2EE

· Should have played Java developer role for at least 3 years.

· Should have expertise/ knowledge in JUnit, Mocking libraries.
Testing knowledge is advantageous.

· Should have worked end to End software development life cycle
including testing phase.-

· Knowledge in iOS & MacOSX









*Salma Bhat*

Desk : 609-853-0818 Ext: 2121

salma.b...@nityo.com 

*Nityo Infotech Corp. *

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


[android-developers] QA Performance Tester

2016-05-06 Thread Manisha Budhwar
Hi,

Hope you doing Well !!!

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



*Role:-  QA Performance Tester*

*Location: SFO/Sacramento, CA*

*Duration:- 6+ months*

*Interview: Phone/ Skype *

*Years of Experience: 8+ *



*Required Experience and Technical Skills*:-

Skill Set: 1) Strong performance testing experience at least a good 2 -3
years only in performance testing.

2) TL+ experienced resources.

 3) HP Suite and tool set knowledge (ALM, preferably QTP, Winrunner / load
runner)

4) Need to be able to plan, script, and test..

 5) Needs to handle independently each project and proactively identify
performance issues by doing analysis, and working with dev teams.

6) Needs to be able to resolve technical problems and drive things to
closure.

7) Knowledge in BSC applications (Facets, EDI, Informatica batch, Portals
etc.) is an added advantage..

*Mandatory Skills* :-

1. Strong performance testing experience at least a good 2 -3 years only in
performance testing. 2. TL+ experienced resources.

 3. HP Suite and Tool set Knowledge (ALM, Preferably QTP,Winrunner/Load
Runner )



*Thanks & Regards,  *

*Manisha Budhwar*

Recruiter

Nityo InfoTech .

Desk No-609-853-0818 Ext-2160

Gtalk ID:- manishanityo16

E Mail: manish...@nityo.com

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


[android-developers] Salesforce Developer, Milwaukee, WI ,8+ Months

2016-05-06 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: Salesforce Developer *

*Location: Milwaukee, WI *

*Contract: 8+ Months*

*Requirement:*

· Experience (Years)  6-8

· Customer Support, liaising directly with the clients. --Analyze
and review business, functional, and technical requirements

· Document and develop code according to specifications and
standards

· Prepare test data and plan and conduct basic unit or module
testing

· Provide support for quality assurance testing and defect
resolution

· Participate in project team meetings and communicate effectively
with peers, architects, system analysts,business analysts, project
managers, quality control, and across other technology team
boundaries,reporting project status as required

· May be required to be on call to provide support on a need-to
basis



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


[android-developers] My app has been removed from play store

2016-05-06 Thread Arun Billur
Hello, my app has been removed from play store for violating policy and now 
i have removed the necessary code and updated my app in google play store. 
Please any one suggest me how much time it ill take to show in play store 
again, also if i want to acces the user contacts then which all privicy 
policies i need to accept.

-- 
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/6ccad485-5195-4bf2-8462-ea11a0510155%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] E/libEGL: validate_display:255 error 3008 (EGL_BAD_DISPLAY) on Nexus 9 + Android 6

2016-05-06 Thread enrico ancis
Hi, 
I'm porting and old big application in Cordova 3.4, from Eclipse to Android 
Studio.
I have to do it, because this application used a library that now has been 
update to Andoird 6

After some issues with build.gradle and settings.gradle the App builds, 
runs and I can make the apk.
Every thing works fine on devices with Android 5

With Android 6 on Nexus 9 the app crashes, with a white screen with this 
error:

*E/libEGL: validate_display:255 error 3008 (EGL_BAD_DISPLAY)*

On Internet I've found few answers to this problem, I've tryed to work on 
images resolution, but the problem is not solved

Can some one help me?
Thank you

-- 
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/51c06d47-d732-4f95-b5a0-897127ee95f7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] vision barcode api - aztec codes

2016-05-06 Thread gjs
https://github.com/zxing/zxing/issues/357

-- 
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/7b496046-58c5-46ca-9b57-16300a134f08%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android 4.3 (API 18) google maps development problem

2016-05-06 Thread gjs
You need internet connection to download Google  map tiles. GPS is just used to 
decide which map tiles to download and display.

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


[android-developers] Android Bluetooth Profile AVRCP not working?

2016-05-06 Thread Mad
Hi everybody, i'm trying to connect a remote controller using bluetooth to 
my Android device and everytime the failure is the same, when the android 
device sends the SDP ( bluetooth service discovery protocol ) to the remote 
controller, the remote controller response with the attributes and just a 
second later the android device sends a disconnection request. Using A2DP 
profile instead of AVRCP all is working fine. On a ifruit device is working 
fine using AVRCP or A2DP profiles with the same remote controller.

The question is someone is using avrcp profile on android working well? 
This picture is a capture from the bluetooth HCI log



Everytime the behaviour is exactly the same the phone connects and after a 
second send the disconnect request if i'm using AVRCP profile only. It's 
not possible to use a bluetooth remote controller under Android?

I tested this under Android 6.0.1 and 5.1.1 with the same result. 

-- 
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/517e3aa6-8af2-49e7-a281-a5b94ef08808%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.