[android-developers] Re: bluetooth connection - paring required?

2009-11-12 Thread D
Informative thread. I was also hoping BT connections could be made
between apps without user intervention. I came across FluidNexus which
creates an ad hoc network using Bluetooth. I thought it was a great
idea. I believe he has it working for Symbian phones and was porting
it over to Android(I think I even saw a working model).

1. Just to be 100% sure, even if I have a client and server running on
both phones(an app that someone has written), with the server
listening for it's specific client, there's no way they can exchange
data unless the user authorizes it?

2. Not to hijack this thread, but do any similar restrictions apply to
wifi ad hoc?

Thanks.

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] On screen Key board

2008-09-30 Thread D

Has there been a program developed for an on screen key board with
Android software? I currently have an HTC T Mobile Wing, and I am used
to a quarty keyboard. Though convenient, I still like to be able to
text, or send an email with one hand. I am able to do this on the wing
using windows 6.0, but I was hoping the new Android phones( T Mobile
G1) would also include an touch screen keyboard with large buttons
that make it easy to text.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Retrieving List type from remote service

2009-08-15 Thread D

Hi,

I am having trouble passing a List type from a remote service to the
UI activity.
Here is a modified version of RemoteService example from the APIDemo.
(only included where its modified)

PROBLEM: The call back function (for List) is called successfully, but
the List returned is empty...

It works fine when the service does not run in a remote process.
(w/o android:process=":remote" in the manifest file)

Why is this happening...?

Also, when I tried Map type, it didn't even successfully generate a
IRemoteServiceCallback.java file
it tries to do new Map() and complains that its an abstract
class..
(FYI, List instantiates by new ArrayList())



1. in IRemoteServiceCallback.java

oneway interface IRemoteServiceCallback {
/**
 * Called when the service has a new value for you.
 */
void valueChanged(int value);
void valueChangedList(out List values);
void valueString(String value);
}

2. In RemoteServiceBinding.java
  /**
 * This implementation is used to receive callbacks from the
remote
 * service.
 */
private IRemoteServiceCallback mCallback = new
IRemoteServiceCallback.Stub() {
/**
 * This is called by the remote service regularly to tell us
about
 * new values.  Note that IPC calls are dispatched through a
thread
 * pool running in each process, so the code executing here
will
 * NOT be running in our main thread like most other things --
so,
 * to update the UI, we need to use a Handler to hop over
there.
 */
public void valueChanged(int value) {
Log.d("ee", "valuechanged=" + value);
mHandler.sendMessage(mHandler.obtainMessage(BUMP_MSG, value,
0));
}

public void valueChangedList(List values) 
throws RemoteException {
// TODO Auto-generated method stub
Log.d("ee", "valuechangedlist=" + 
values.toString());

mHandler.sendMessage(mHandler.obtainMessage(LIST_MSG, values));
}

public void valueString(String value) throws 
RemoteException {
Log.d("ee", "valueString=" + value);
}
};


3. In RemoteService.java

   private final Handler mHandler = new Handler() {
@Override public void handleMessage(Message msg) {
switch (msg.what) {

// It is time to bump the value!
case REPORT_MSG: {
// Up it goes.
int value = ++mValue;

// Broadcast to all clients the new value.
final int N = mCallbacks.beginBroadcast();
for (int i=0; i values = new 
ArrayList
();
values.add("Hello, Mars");
mCallbacks.getBroadcastItem
(i).valueChangedList(values);

mCallbacks.getBroadcastItem(i).valueString
("HEEE");
} catch (RemoteException e) {
// The RemoteCallbackList will take care
of removing
// the dead object for us.
}
}
mCallbacks.finishBroadcast();

// Repeat every 1 second.
sendMessageDelayed(obtainMessage(REPORT_MSG),
1*1000);
} break;
default:
super.handleMessage(msg);
}
}
};

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Retrieving List type from remote service

2009-08-16 Thread D

This seems to be the fix.

oneway interface IRemoteServiceCallback {
 /**
  * Called when the service has a new value for you.
  */
 void valueChanged(int value);
 void valueChangedList(in List values);
 void valueString(String value);

}

On Aug 15, 12:44 am, D  wrote:
> Hi,
>
> I am having trouble passing a List type from a remote service to the
> UI activity.
> Here is a modified version of RemoteService example from the APIDemo.
> (only included where its modified)
>
> PROBLEM: The call back function (for List) is called successfully, but
> the List returned is empty...
>
> It works fine when the service does not run in a remote process.
> (w/o android:process=":remote" in the manifest file)
>
> Why is this happening...?
>
> Also, when I tried Map type, it didn't even successfully generate a
> IRemoteServiceCallback.java file
> it tries to do new Map() and complains that its an abstract
> class..
> (FYI, List instantiates by new ArrayList())
>
> 1. in IRemoteServiceCallback.java
>
> oneway interface IRemoteServiceCallback {
>     /**
>      * Called when the service has a new value for you.
>      */
>     void valueChanged(int value);
>     void valueChangedList(out List values);
>     void valueString(String value);
>
> }
>
> 2. In RemoteServiceBinding.java
>   /**
>      * This implementation is used to receive callbacks from the
> remote
>      * service.
>      */
>     private IRemoteServiceCallback mCallback = new
> IRemoteServiceCallback.Stub() {
>         /**
>          * This is called by the remote service regularly to tell us
> about
>          * new values.  Note that IPC calls are dispatched through a
> thread
>          * pool running in each process, so the code executing here
> will
>          * NOT be running in our main thread like most other things --
> so,
>          * to update the UI, we need to use a Handler to hop over
> there.
>          */
>         public void valueChanged(int value) {
>                 Log.d("ee", "valuechanged=" + value);
>                 mHandler.sendMessage(mHandler.obtainMessage(BUMP_MSG, value,
> 0));
>         }
>
>                                 public void valueChangedList(List values) 
> throws RemoteException {
>                                         // TODO Auto-generated method stub
>                                         Log.d("ee", "valuechangedlist=" + 
> values.toString());
>                                         
> mHandler.sendMessage(mHandler.obtainMessage(LIST_MSG, values));
>                                 }
>
>                                 public void valueString(String value) throws 
> RemoteException {
>                                         Log.d("ee", "valueString=" + value);
>                                 }
>     };
>
> 3. In RemoteService.java
>
>    private final Handler mHandler = new Handler() {
>         @Override public void handleMessage(Message msg) {
>             switch (msg.what) {
>
>                 // It is time to bump the value!
>                 case REPORT_MSG: {
>                     // Up it goes.
>                     int value = ++mValue;
>
>                     // Broadcast to all clients the new value.
>                     final int N = mCallbacks.beginBroadcast();
>                     for (int i=0; i                         try {
>                             mCallbacks.getBroadcastItem(i).valueChanged
> (value);
>                                         List values = new 
> ArrayList
> ();
>                                         values.add("Hello, Mars");
>                                         mCallbacks.getBroadcastItem
> (i).valueChangedList(values);
>                                         
> mCallbacks.getBroadcastItem(i).valueString
> ("HEEE");
>                         } catch (RemoteException e) {
>                             // The RemoteCallbackList will take care
> of removing
>                             // the dead object for us.
>                         }
>                     }
>                     mCallbacks.finishBroadcast();
>
>                     // Repeat every 1 second.
>                     sendMessageDelayed(obtainMessage(REPORT_MSG),
> 1*1000);
>                 } break;
>                 default:
>                     super.handleMessage(msg);
>             }
>         }
>     };
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Question about requestLocationUpdates()...

2009-05-28 Thread D.

I have two questions regarding this call:

1. After making this call, does it update the current location then
call the listener you give it? In other words, does it actually wait
to complete the location update, store the location in
"lastknownlocation", then call your location listener?

2. If you give this call a "min time" as one of the arguments(instead
of 0), will it automatically make locations updates using the time
given then call your listener OR does providing a time just mean that
it will only respond to a call after the min time has expired and
won't process anything before it?

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Is it possible to send a log file via mms or email without user interaction?

2009-06-16 Thread D.

I know an android app can send an sms without the user's interaction,
but what about an mms? I think i've read that the intent used to send
an email brings up the email client for the user to decide which email
app and account to use(which is understandable), but how about mms?

I'm simply looking to send a text file to another phone or email
address via my app without the user's intervention. Can I use mms? Any
other ideas? Thanks.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Bluetooth pairing with Android 2.3 and using insecure RFCOMM sockets

2011-04-13 Thread D
1. Assuming two Android phones are running Android 2.3+, bluetooth
2.1, and are listening/connecting using the new "insecureRfcomm"
APIs...will a pairing authentication dialog prompt pop up? In other
words, can a bluetooth connection be made on two mobile devices with
these insecure rfcomm sockets without user intervention?

2. I know there is a bluetooth chat example available, but if the
above is true...are there any newer examples using these APIs?

Thanks.

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] SensorEvent class instantiation

2010-05-12 Thread b...@d+m@D
How to instantiate SensorEvent class. Even if i create my class
extended from SensorEvent i got error - something "Stub"

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Immediate hire for Business Analyst with IAM and Scrum Master

2022-07-19 Thread Yuvi D
Dear Friends,

Good Morning!!!

*Please share suitable profiles to nik...@anirasolutions.net
 / **bhar...@anirasolutions.net
*

*JD as follows:*

Title: *Business Analyst with IAM and Scrum master exp*
*Location: Jersey City, NJ (Hybrid Model, Weekly 3 days from onsite)*
Duration: 6 - 12 Months with possibility of extension
Rate: $DOE/hr on C2C all Inc
Interview mode: MS teams

*Mandatory Skills:*


*IAM - Identity access ManagementScrum master *

Job highlights

Qualifications
• Requires a high-level understanding of systems, industry, and end-user
requirements
• Demonstrates subject matter expertise and is able to integrate domain
knowledge with an understanding of financial services standards and
practices
• Applies specialized business knowledge and technical skills to
significant deliverables and projects that involve multiple IT departments,
business units and have enterprise impact
• Creates detailed business requirements for functional (e.g., business
processes, rules) and non-functional (e.g., data, security) capabilities
• Minimum of a Bachelor's degree in Computer Science, MIS or related degree
and three to five (3-5) years of relevant experience or combination of
education, training, and experience

*Responsibilities*

• Acts as a partner with the business to facilitate and implement
technology solutions
• Responsible for writing system requirements that will ensure the
technology solution will meet the needs of the business
• Leverages appropriate technical resources
• Gathers and interprets information from multiple sources (including
databases, interviews, etc.) and makes recommendations
• Provides support for application development teams including documenting
business processes
• Translates technical concepts to business audience and business
information to a technical audience

Skills:

• Creates detailed business requirements for functional (e.g., business
processes, rules) and non-functional (e.g., data, security) capabilities.
• Gathers and interprets information from multiple sources (including
databases, interviews, etc.) and makes recommendations.
• Provides support for application development teams including documenting
business processes.
• Translates technical concepts to business audience and business
information to a technical audience.
• Participates in developing estimates and implementation plans for
technical solutions.
• Partners with team members to develop project schedules, reports and
documentation. May be required to act as project lead on small to medium
projects and/or provide direction to others on the team.
• Understands and applies principles in risk management, issue tracking and
change management.
• Performs other duties and responsibilities as assigned.

-- 


*---*

*Thanks and Regards,*

*NikhilAnira Solutions Inc*
*nik...@anirasolutions.net  /
bhar...@anirasolutions.net *

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


[android-developers] Immediate hire for Application Architect for a long term contract

2022-07-20 Thread Yuvi D
Dear Friends,

Please find the JD below, and share the suitable resumes to
*bhar...@anirasolutions.net
 / nik...@anirasolutions.net
*

*JD as follows:*

*Title: Application Architect*
Location: WI (Remote until pandemic)
Duration: 1 year with possibility of extension
Rate: $DOE/hr on C2C all Inc

*Top Desired Skills: *
• JavaScript – strong technical mastery is mandatory
• .NET MVC with C#
• Full stack development
• Solid Test-Driven Development (TDD) experience

Key responsibilities of the AA:
• Provide architectural and big picture oversight for development of new or
enhanced software products.
• Ensure quality and consistency of the software architecture across the
system and providing day-to-day technical guidance to the development
teams.
• Writing code and reviewing the code of others on the team, participate in
cross team code reviews
• Promote and follow TDD
• Define and document the system, technical, and application architectures
for major areas of development.
• The AA will lead the team to web applications that:
o Are cost effective and minimize technical debt
o Are sustainable and stable
o Follow security best practices and comply with the State of WI security
policies and DCF web application standards
• Write technical design documents
• Mentor others on the team and in the section
• Understand infrastructure and development architecture designs and
issues.
• Research and implement best frameworks/capability models that will
control costs, provide higher quality, and/or increase predictability of
service delivery.
• Work with project manager and web application development technical
advisor to research and discuss new technology and development tools to
remain abreast of current and emerging technology.

---
Thanks and Regards,
Anira Solutions Inc

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


[android-developers] Immediate hire for BDD tester for a long term contract

2022-07-21 Thread Yuvi D
Dear Friends,

Please share profiles to *nik...@anirasolutions.net
*

JD as follows:

*QA Tetser w/ BDD Tools*




*Exp: 5 yearsLocation: Alpharetta , GA (Remote until pandemic)Domain:
Insurance DomainRate: $50/hr on C2C all IncDuration: 6 - 12 Months with
possibility of extension*

BDD Tools:

BDD Tools
Popular development testing tools for creating and managing BDD tests are:
• SpecFlow: .NET framework
• Cucumber: Ruby framework
• Gauge: JavaScript, C#, Java, Python, Ruby framework
• Tricentis Tosca: Scriptless testing framework for APIs and GUIs
• Jasmine: JavaScript testing framework
• Tricentis qTest Scenario: Jira BDD plugin
• Behat: Php framework
• Concordion: Java framework
• Squish GUI Tester:  BDD GUI testing tool for JavScript, Python, Perl,
Ruby, and Tcl)

*Mandatory SKills:*

BDD tools expertise
Insurance Domain in recent project
Locals or near by are given preference.


Required Qualifications

Bachelor’s degree in Information Technology or equivalent
Thorough knowledge about testing methodologies and experience with Data
Driven Testing
Experience with XML, fixed-length, csv, and other flat file formats
Working knowledge of batch processing
Working knowledge of software testing best practices and software
development lifecycles
3-5 + years Linux/Unix experience using command line functions to traverse
through file system. Experience using vi editor and proficient at using
file manipulation and search capabilities
5 + years’ experience in functional, negative, regression, integration, and
acceptance testing with client/server applications, preferably a workflow
applications
5+ years’ experience writing SQL queries
3+ years’ experience with Java, XML
1+ year’ experience in Groovy, PHP
2+ years’ experience in shell scripting
Working knowledge of regular expressions
Working knowledge of SOAPUI or similar web service testing tools
Working knowledge of SQL is able to execute complex queries
Ability to make modifications to shell/bash scripts
Ability to work with developers, project managers and business analysts to
understand requirements and ensure that software is thoroughly tested
Ability to deal with changing priorities to complete tasks in a short
period of time
Ability to handle multiple projects simultaneously
Ability to quickly learn new tools and technologies
Excellent problem analysis, troubleshooting, and resolution skills
Excellent verbal and written communication skills
Flexible with hours depending on the project needs

Preferred Qualifications
Insurance Industry knowledge is a plus

-- 

---
Thanks and Regards,
Anira Solutions Inc

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


[android-developers] Immediate hire for Project Manager w/ Salesforce for 100% remote

2022-08-02 Thread Yuvi D
Dear Friends,

Greetings of the day!!

Please find the JD below:

*Title: Project Manager w/ Salesforce*
100% Remote
Rate: $DOE/hr on C2C all Inc
Duration: 5 months contract (with possibility of extension)
*100% Remote*
Interviews: 02 (MS Teams)


Additional duties:
• Coordinate regular status meetings, requirements sessions and other
meetings as required.
• Deliver projects on time, within budget and scope and with high quality
• Salesforce configuration
• Successfully manage project expectations and clarify roles and
responsibilities when needed
• Establish, improve, and champion the use of formal project management
tools and techniques across in all assignments, in the areas of:
• Project and process plans
• Regular status reports and executive summary reports
• Development and maintenance of accurate project schedules
• Management of issues and action items, tracking to timely resolution
• Work with corporate PMO staff to ensure all required documentation and
procedures are followed.

Critical Competencies / Minimum Requirements:
• 5-7 years of successful project management experience
*• SalesForce.com expertise mandatory.*
• Sales Cloud Knowledge: Marketing & Leads, Opportunities & Quotes,
Approvals & Workflow and Contracts & Entitlements
• Service Cloud Knowledge: Call Center, Knowledge, Analytics, Partners,
Approvals & Workflow and Contracts & Entitlements.
• Demonstrated history of leading the successful implementation of multiple
Sales, Service , Community Cloud modules
• Emphasis on Customer Service, Field Service
• Strong communication skills.
• Excellent communication and planning skills with a history of developing
effective relationships with business, technical staff and executive
management.
• Successful ability to manage conflict with positive results
• Well organized, independent, self starter
• Ability to create a team vision and motivate the team to achieve a common
goal.
• Ability to lead a team spread over various geographic regions, mostly
offshore.

-- 

---
Thanks and Regards,
Anira Solutions Inc
bhar...@anirasolutions.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAEOzk3w9C8ApTdwCR%2BODNxwiyv0FvW910giwrJ6G07vNLRrSzg%40mail.gmail.com.


[android-developers] Immediate hire for Salesforce Architect for a long term contract

2022-08-02 Thread Yuvi D
Dear Friends,

Good Afternoon!!!

Please share resumes to *chushm...@anirasolutions.net
 *at earliest

JD as follows:

*Title - SFDC Technical Architect*
Rate-  $DOE/hr
Location – Scottsdale , AZ
Duration: 12 - 18 Months
*Exp: 10+ Years*
Interviews: 02 (MS Teams)

JD:
• Responsible for designing and sharing the architectural vision across
product teams
• Reviews design approach of technical business analysts to ensure
architecture is done according to standards / best practices
• Promotes adaptive design and engineering practices, facilitates the reuse
of ideas, components, services, and proven patterns across product teams
• Provides architectural governance and technical direction for the
solution deployment strategy at the product team level
• Determines the systems, subsystems, interfaces and data flows across
systems
• Partners with enterprise, application & solution architects to ensure
technical debt is minimized, functionality is maximized (reusable) and
development teams have an understanding of new components
• Should Have knowledge of Service cloud and worked in health care domain .
• Ensure repeatable patterns are understood, documented as appropriate, and
meet the overarching solution's vision
• Salesforce Platform (Sales Cloud, Service Cloud) expertise is a must
• A minimum of 2 years of experience developing Salesforce customizations
(Apex/VF), integrations, and developing and executing data migrations
• A minimum of 2 years of experience creating the technical architecture
for complex Salesforce implementations
• A minimum of 5 years of experience in technology implementation for full
lifecycle enterprise software projects

-- 

---
Thanks and Regards,
*chushm...@anirasolutions.net *
Anira Solutions Inc

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


[android-developers] Direct Client requirement -- Immediate hire for Full Stack Developer

2022-08-09 Thread Yuvi D
Dear Friends,

Please share resumes to* bhar...@anirasolutions.net
* at earliest convenience.

JD as follows:


*Title: Full stack Developer (Mid level)Exp: 8+ years*
Preferred : Chicago, IL (*Who can relocate in 3 months *)
Rate: $DOE/hr
Duration: 6 - 12 Months

Mode of interview: MS Teams

• 4 + years of software development experience in Java
• 2 - 3 + years of software development experience in *ReactJS or Vue JS *
• Development  experience with React native or Flutter or Kotlin native app
is a great plus.
• Any CSS framework experience – Bootstrap or Materialize or Tailwind
• At least 3 + years of deploying and maintaining software using a public
cloud such as AWS / GCP / AZURE (AWS preferred)
• Experience in building microservices – *Spring Boot, Node JS*
• Experience designing well-defined reactive APIs.
• Nice to have experience in building GraphQL or gRPC API’s.
• Experience writing API proxies on platforms such as AWS API Gateway
• Deploying software using CI/CD tools such as *GitLab’s, Jenkins, AWS,
GitBucket CI/CD, DevOps, etc.*
• Experience with - Message brokers such as *Kafka, RabbitMQ, AWS SQS, AWS
SNS, Apache ActiveMQ, Kinesis*
• Hands-on experience with API tools such as Swagger, Postman, and
Assertible

-- 

---
Thanks and Regards,
*bhar...@anirasolutions.net *
Anira Solutions Inc

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


[android-developers] Immediate hire for .Net Developer w/ React JS ... 100% Remote

2022-08-11 Thread Yuvi D
Dear Friends,

Please share resumes to *bhar...@anirasolutions.net
*

Title: .Net Developer w/ ReactJS
Exp: 10 years
Location: 100% Remote
Duration: 6 - 12 MOnths
Rate: $65/hr on C2C all Inc

Mandatory Skills

*.Net Developer*
*ReactJS*

-- 

---
Thanks and Regards,
bhar...@anirasolutions.net
Anira Solutions Inc

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAEOzk3zG3bta%3D0Su6sUC7Kpj%2BOx4%2Bwd7DDhvY5RzmCENE0yOnQ%40mail.gmail.com.


[android-developers] Immediate hire for Informatica Lead for a long term contract

2022-08-12 Thread Yuvi D
Dear Friends,

Please share resumes to *bhar...@anirasolutions.net
*

JD as follows:

*Job Title : Informatica Tech Lead *

*Location : WI (Remote until covid)*

*Duration : 12 Months with possibility of extension*



* Insurance domain experience is mandatory*



   - 10+ years of total experience executing data projects with focus on
   data warehousing, data lake and datamarts
   - 4+ years of experience with Informatica Powercenter
   - 4+ years of experience executing data projects in Hadoop / cloud
   environments
   - Good knowledge of SQL
   - Knowledge of Azure is a plus
   - Experience in working in agile execution model
   - Excellent communication and presentation skills
   - Should have onsite-Offshore delivery model experience
   - Excellent communication in presenting and interacting with clients and
   team.

Should be able to manage team and deliverables.

-- 

---
Thanks and Regards,
*bhar...@anirasolutions.net *
Anira Solutions Inc

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAEOzk3yK8iOiNT2f_Wf1aCJwTbq1snt-StoViW6v%2B8-V2L-uWA%40mail.gmail.com.


[android-developers] Immediate hire ... Webmethods Developer / lead / Architect ... 100% Remote

2022-08-15 Thread Yuvi D
Dear Friends,

Please share resumes to chus...@anirasolutions.net

*JD as follows:*

*Webmethods Developer / Lead / Architect*
Location: 100% Remote
Rate: $DOE/hr on C2C all Inc
Duration: 6 - 12 Months
*No. of positions: 15*
*Interviews: MS Teams*

We are looking for Webmethods Developers Leads and Architect
We have multiple roles available

---
Thanks and Regards,
*chus...@anirasolutions.net *
Anira Solutions Inc

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAEOzk3xm4ink-T6cjnC4Gcadf6B5c4hXd_92zi%3D7MxD-52hWZA%40mail.gmail.com.


[android-developers] Immediate hire for UI Developer w/ Angular ... Hybrid Model

2022-08-16 Thread Yuvi D
Dear Friends,

Please share resumes to *bhar...@anirasolutions.net
*

Position: UI Angular Developer
Exp: 5 Years
Location: Alpharetta, GA/New York, NY(*need atleast 3 days onsite in a week
for now)*
Duration: 12+ Months
Rate: $DOE/hr on C2C all Inc

The UI team builds user interfaces that will run in responsive websites and
hybrid mobile applications.
The candidate is expected to code, conduct code reviews, and test software
as needed, working as part of a global agile team that comprises web
application and web services developers.
Our UI tech stack includes the Angular framework, TypeScript, SCSS, RxJS,
Adobe Analytics, and Cordova.
The candidate should be flexible and a self-motivated team player,
committed to delivering on time.
Skills Required
• 5+ years of experience building responsive websites
• Excellent in JavaScript and CSS
• Solid understanding of object-oriented programming
• Attention to detail, with the ability to reproduce a visual design
exactly using CSS and HTML
• Strong communication skills and problem solving skills
• Ability to take ownership of work streams, operate without close
supervision, and work across the organization.
Skills Desired
• Experience with Angular, TypeScript, and SCSS
• Knowledge of responsive web development and accessibility, including WCAG
2.1 guidelines
• Strong grasp of user experience
• Experience with agile methodologies

-- 

---
Thanks and Regards,
bhar...@anirasolutions.net
Anira Solutions Inc

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


[android-developers] Immediate hire for Security lead ... Hybrid Model

2022-08-16 Thread Yuvi D
Dear Friends,

Please share resumes to *bhar...@anirasolutions.net
*

*Title: Security Lead*
Location: Jersey City, NJ
Hybrid
Rate open
• Responsible for enterprise security of the organization along with
assisting on policies, standards, projects, investigations, and similar
initiatives with regards to security practices at the organization.
• Assisting on customer network landscape, Network security testing scope
and requirements.
• Perform vulnerability assessment on quarterly basis and keep track of
remediation activities as part of best practices.
• Identify and analyze key business risks and provide recommendations to
mitigate the potential impacts.
• Provided comprehensive report on findings and mitigation to fix the
identified vulnerabilities/malware.
• Collaboratively work on solutions with cross functional teams and various
stakeholders for remediation plan and other issues.
• Deploying Symantec to Endpoint Devices in different Regions across *IMEA,
APAC &  AMERICAS*
• Worked on tickets, *SIR, SIT, VIT, INC* planning and implementing the
preventive actions.
• Qualys Vulnerability Management certified.
• Managed network security alerts & utilized Splunk for long-term
investigation and reporting as a SIEM tool.
• Investigated Email tickets using Symantec DLP, Proofpoint and Securonix.
• Investigated potential malicious software using wildfire, Bluecoat
security, CrowdStrike, SEP, WAF, Palo Alto Firewall and many other tools.

-- 

---
Thanks and Regards,
*bhar...@anirasolutions.net *
Anira Solutions Inc

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


[android-developers] Immediate hire for Database Developers

2022-08-16 Thread Yuvi D
Dear Friends,

Please share resumes to bhar...@anirasolutions.net

*Title: Database Developer with SQL coding*
Start Date: ASAP
Duration: 60 days to start with possibility of extension
Location: Remote
Time Zone: EST

Skills
This is for full time position (40 hrs/week). Resource must have good
written and verbal English, and possess the following:

• pl/sql developer (in addition to sql coding skills)
• Experience in Apps development lifecycles – Dev, UAT, Promote to Prod,
Prod release etc
• Version control like Git, change management
• Agile tools, Jira
• Experience on Agile sprints
• Work with customer to extract requirements
• SOA/OSB Data Insert into tables via WebService call experience a plus.

-- 

---
Thanks and Regards,
bhar...@anirasolutions.net
Anira Solutions Inc

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


[android-developers] Immediate hire for Siebel integration with AWS Connect .. 100% Remote

2022-08-18 Thread Yuvi D
Dear Friends,

Please share resumes to *bhar...@anirasolutions.net
*

*Title: Siebel integration with AWS Connect*
*Duration: 10 Days only*
Location: Remote
Rate: $DOE
No. of Interview: 01
Mode of interviews: MS Teams

Need: Siebel integration with AWS Connect
Good communication skills

-- 

---
Thanks and Regards,
*bhar...@anirasolutions.net *
Anira Solutions Inc

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


[android-developers] Immediate hire for Automation Tester with IBM Sterling

2022-08-18 Thread Yuvi D
Dear Friends,

Please share resumes to bhar...@anirasolutions.net

*JD as follows:*

*Position: Automation Tester with Strong IBM Sterling experience*
Location: SFO, CA
Duration: 1 Year
*Hybrid Model – 3days onsite per week*

*Responsibilities:*

1. Strong Experience in Functional & Automation testing
2. Strong experience in working with IBM Sterling
3. Expert in Selenium & BDD Framework
4. Experience in working with API Automation
5. Strong in Test Reporting


---
Thanks and Regards,
*bhar...@anirasolutions.net *
Anira Solutions Inc

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


[android-developers] Immediate hire for Scala Developer

2022-08-18 Thread Yuvi D
Dear Friends,

Please share resumes to bhar...@anirasolutions.net

*JD as follows:*

*Title: Scala Developer *
Location: NY OR GA
Duration: 12+ Months
*Hybrid Model – 3 days onsite per week*

*Job Description: *
Hands on Scala developer either with Kafka or Kinesis. Need experience in
NO SQL database
Good understanding of AWS.
Senior developer who can code and architect the solution.

*Job Roles & Responsibilities:*
Code high scale application using Kinesis or Kafka either with Dynamo or
Cassandra or NO SQL and deploy on AWS based ecosystem.

-- 

---
Thanks and Regards,
*bhar...@anirasolutions.net *
Anira Solutions Inc

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


[android-developers] Immediate hire for Webmethods Developer ... 100% remote

2022-08-22 Thread Yuvi D
Dear Friends,

Please share resumes to* lokes...@anirasolutions.net
*

*JD as follows:*

*Webmethods Developer*
Location: 100% Remote
Rate: $DOE/hr on C2C all Inc
Duration: 12 Months with possibility of extension
*No. of positions: 15*
*Interviews: MS Teams*

We are looking for Webmethods Developers with 7+ years of experience
Must have good communication skills.
We have multiple roles available

-- 

---
Thanks and Regards,
*lokes...@anirasolutions.net *
Anira Solutions Inc

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAEOzk3z5iGxPCQBOSm-BQ%2BW%3DfMo0J70%3DNnJLkG4GOa8-ACuBqA%40mail.gmail.com.


[android-developers] Immediate hire for Salesforce Architect ... 100% Remote ... multi year contract

2022-08-23 Thread Yuvi D
Dear Friends,

Please share resumes to *lokes...@anirasolutions.net
 *

*JD as follows:*
*Position: Salesforce Architect*
Exp: 10 years
Location: Remote
Duration: Multi Year

- Strong influencing and communication skills. Conversant with both
technical and business audience
- Desire to improve the user experience in Health care/Customer focused
- Minimum 8 years of Salesforce platform experience
- Minimum 3 years of experience within the healthcare/Insurance domains
- Minimum 2 years of  experience in Health Cloud
- Proven ability to design and optimize business processes and integrate
business processes across disparate systems
- Experience working with technical and business stakeholders from global
cross-functional teams
- Strong understanding of external application integrations via API
Callouts and other integration patterns
- Salesforce Certifications required to be considered for this position:
Technical, Application, or System Architect preferred

*Regards,*
*lokes...@anirasolutions.net *
Anira Solutions Inc

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


[android-developers] Immediate hire for Dot Net Developer .. Hybrid Model

2022-08-25 Thread Yuvi D
Dear Friends,

Please share resumes *nik...@anirasolutions.net *

*JD below:*

Position: Dot Net Developer
Exp: 5 years
Rate: $DOE/hr on C2C all Inc.
Location: Alpharetta, GA/New York, NY(need atleast 3 days onsite in a week
for now)
Duration: 12+ Months

The Role
The candidate will be responsible for developing and supporting external
client facing web applications.
The candidate is expected to code, conduct code reviews, and test software
as needed, working as part of a global agile team that comprises web
application and web services developers.
The candidate will also be expected to participate in application
architecture and design, and other phases of the SDLC. The candidate may
also be called on to provide technical, troubleshooting and design guidance
to other application development teams.
The candidate should be flexible and a self-motivated team player,
committed to delivering on time.
Skills Required
• 5+ years of experience using .NET technologies with an emphasis on C#
• 3+ years’ experience creating/consuming web services and data
• Solid understanding of object-oriented programming
• Excellent in analysis, technical design, and development
• Database skills (preferably DB2, SQLServer) to design new or alter
existing table structures to satisfy specifications and requirements
• Thorough understanding of web technologies and web architectures
• Strong communication skills and problem solving skills
Skills Desired
• Experience with agile methodologies
• Prior work on client-facing websites in the banking/brokerage industry a
plus

---
Thanks and Regards,
*nik...@anirasolutions.net *
Anira Solutions Inc

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


[android-developers] Immediate hire for UI Developer / Web Developer / Angular Developer ... Hybrid Model

2022-08-25 Thread Yuvi D
Dear Friends,

Please share profiles to *bhar...@anirasolutions.net
*

*JD as follows:*

*Position: UI Developer / Web Developer / Angular Developer*
Exp: 5+ Years
Rate: $DOE?hr on C2C all Inc
*Location: Alpharetta, GA/New York, NY(need atleast 3 days onsite in a week
for now)*
Duration: 12+ Months

The UI team builds user interfaces that will run in responsive websites and
hybrid mobile applications.
The candidate is expected to code, conduct code reviews, and test software
as needed, working as part of a global agile team that comprises web
application and web services developers.
Our UI tech stack includes the Angular framework, TypeScript, SCSS, RxJS,
Adobe Analytics, and Cordova.
The candidate should be flexible and a self-motivated team player,
committed to delivering on time.
*Skills Required*



*• 5+ years of experience building responsive websites• Excellent in
JavaScript and CSS• Solid understanding of object-oriented programming•
Attention to detail, with the ability to reproduce a visual design exactly
using CSS and HTML*
• Strong communication skills and problem solving skills
• Ability to take ownership of work streams, operate without close
supervision, and work across the organization.
Skills Desired
• Experience with Angular, TypeScript, and SCSS
• Knowledge of responsive web development and accessibility, including WCAG
2.1 guidelines
• Strong grasp of user experience
• Experience with agile methodologies

-- 

---
Thanks and Regards,
*bhar...@anirasolutions.net *
Anira Solutions Inc

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


[android-developers] Immediate hire .. Selenium Lead ... 100% Remote

2022-08-29 Thread Yuvi D
Hi,

Please share resumes to *vi...@anirasolutions.net
*

*Selenium test lead*
Remote
Exp: 10 years
*Domain: healthcare*

Must have 10+ years of Exp in testing
Must have lead experience
Healthcare domain exp would be preferred.

-- 

---
Thanks and Regards,
vi...@anirasolutions.net
Anira Solutions Inc

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAEOzk3xrX%3Dce4%2BtKt1UtUMmxHccKNp1SLQU2SFvs%2BKqGYjwzEA%40mail.gmail.com.


[android-developers] Immediate hire for Technical Business Analyst -- Hybrid Model

2022-10-04 Thread Yuvi D
Hi Friends,

Please share resumes to vi...@anirasolutions.net

*JD as follows:*

Position: Technical Business Analyst
Location: *Day 1 Onsite at Alpharetta, GA or New York, NY( 3days in a week
must)*
Duration: 12+ Months
Rate: $DOE/hr

*Role & Responsibilities: *
• Partner with Business and Operations partners to understand and elaborate
requirements.
• Document Functional Requirements with supporting UI Mockups/Wireframes,
use cases, current vs future state flow diagrams and sequence diagrams.
• Participate in technical design discussions to ensure the design meets
specifications.
• Assist QA and UAT teams to bridge the gap in understanding requirements
and review test cases/test plan to make sure all scenarios are covered.
Perform BA Testing before functionality is rolled out for QA/UAT.
• Proficiency in basic UML diagrams (Use Case, Activity, Interaction,
Sequence)
• Hands-on BA, ready to dive into the database, understand tables, data
model to perform data analysis using SQL queries. Good understanding of
relational databases (RDBMS) and SQL.
• Lead and manage projects through development, testing and deployment to
production by aligning respective teams, setting expectations and
addressing requirement related questions. Provide updates to the key
stakeholders in the form of ppt slides etc. on the progress and any delays
or risks.
• Be highly motivated, willing to learn and be flexible with work timings
to collaborate closely with teams in New York and India.

*Primary Skills (Must have) *
• Strong analytical, written and verbal communication skills.
• Have strong background in technology (undergrad/bachelor in Computer
Science, Information Systems or related Degree).
• Have good background in Software Development Lifecycle, 3 Tier
Application Architecture.
• A proven ability to build strong collaborative working relationships with
business partners and department leads.

Regards,
Vinay,
vi...@anirasolutions.net

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


[android-developers] Immediate hire for BI Functional Analyst for a long term contract

2022-10-06 Thread Yuvi D
Dear Friends,

Please share resumes to *vvskris...@anirasolutions.net
*

Title : BI Functional Analyst
Location : : Mountain View, CA  *(Onsite from Day 1)*
Rate : $DOE/hr on C2C all Inc
Onsite

*Skills Highlight*
• Data Warehousing / Business Intelligence knowledge (Mandatory. P0)
• Customer-facing requirements gathering skills (Mandatory. P0)
• Advanced SQL skills (Strongly desired. P1)

*Detailed Qualifications / Skills*
• Experience in delivering Data Warehousing/Business Intelligence solutions
• Strong experience in engaging with customers, as well as performing data
analysis, to produce solution requirements
• Strong SQL skills in complex queries and data manipulation a big plus
• Strong communications skills. Clear verbal and written communication
• Preferably task and project management skills. Ability to prioritize own
tasks and manage deliverables and dates
• Preferrably functional knowledge of 1 or more enterprise operations
domains. E.g. HR Operations,
• Finance, Supply Chain, Sales & Marketing

*Not suitable for this role*
• Developer / Analyst without customer engagement experience
• Developer / Analyst without Data Warehousing / BI experience
• Non-technical Project Manager or Analyst
• Non-hands-on resources

*Regards,*
VVS Krishna,
*vvskris...@anirasolutions.net *

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


[android-developers] SQL Developer with Dot.Net - Multiple Locations

2017-01-09 Thread Vinaay D
Hi, 

Greetings from Vigiboss Inc.,

*Role:* SQL Developer with Dot.Net. 
*Location: *Multiple Locations 
*Description :* Looking for the candidate with experience on SQL Developer 
with Dot.Net. 


*David Williams*

*Tech. Recruiter, Vigiboss Inc.*

Email: dwilli...@vigiboss.com

http://vigiboss.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/fb99832c-1b63-4f99-931d-dbbd3fe4c2d4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Immediate hire for Java Developer w/ JBPM @ TX for a long term contract

2018-05-16 Thread Yuvi D
Friends,

Please share profiles to *as...@hclglobal.com ;*

*JD as follows:*

Title: Java JBPM - 2 positions
Location: Dallas, TX
Duration: 12 Months
Positions: 03
Rate: $DOE/hr on C2C all Inc
Start date: ASAP

Atleast 5 to 7 years of experience as a Java Developer
Must have 2 years of experience with JBPM
Must have good communication skills.

Looking forward to work with you.

---
Thanks and Regards,
Asker,
HCL Global Systems,
Ph: 248-473-0720*165
Email: as...@hclglobal.com 

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

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


[android-developers] Java Developer Norfolk, VA / Alpharetta, GA **Long Term**

2018-05-18 Thread abhinov d


*Hi ,*


*Hope you are doing well. I have the below opportunity for Java Developer 
Norfolk, VA.*


*Let me you have any references.. *


*Software Developer / Java Full Stack, *

*Location: Norfolk VA *

 

*Description*

 

Looking to hire *Java Full Stack Developer* for Client project in *Norfolk 
VA.*

   - 6 8 years of experience in strong knowledge and hands on experience 
   required in core java version 6 mandatory and OOPS concepts, nice to have 
   Java7 and Java8 JSP Servlet JS CSS JQuery 
   - Strong knowledge and hands on experience in web technologies. 
   - Should have knowledge on UI debugging skills. 
   - Hands on experience required in creating JSP pages with CSS, 
   Javascript JQuery. 
   - Good to have knowledge in Angular and EXTJS Spring 
   - Strong knowledge and hands on experience is required in Spring4 MVC, 
   CORE, AOP, Spring Hibernate integration Hibernate 
   - Strong knowledge and hands on experience is required on Hibernate 3 , 
   must have knowledge in Declarative Transaction management, HQL, Hibernate 
   template, Criteria API etc Webservices 
   - Must have String knowledge and hands on experience in REST and SOAP 
   based services RDBMS 
   - Strong hands on experience in writing SQL queries, Stored Proc, Joins 
   - Experience working with Maven, Junit, Mocito Must have good verbal and 
   written communication skills. 

Thanks

Abhinov D

abhi...@sparinfosys.com

SPAR Information Systems

-- 
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/7803d8ae-0fcd-407a-8082-2f4c2206a809%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Immediate requirement's - Sr. Android Developer & Python Developer

2019-07-15 Thread amithkumar d


*Hi All,*


*We have an Immediate two requirement's for below Position in two 
locations. Send me suitable resumes*


*Role :- Android Developer *

*Location - Mooresville, NC & Atlanta, GA*

*Experience :- 8+*

*MOI :- Telephonic & Skype*



*Requirements:- *


*1. Excellent working experience developing and distributing 2. Android 
applications using Android Studio written in Java or Kotlin.*

*3. Mobile application security.*

*4. Excellent knowledge of working with dynamic data (e.g., JSON, XML) over 
various protocols and transfer types (e.g., REST, SOAP).*

*5. Produce code to the highest standards while adhering to 
industry-accepted architecture and design pattern techniques and 
methodologies (e.g., MVC, SOA, OOP, DI etc.)*



*Role : Python Full Stack Developer*

*Location :- Weehawken, NJ & New York City, NY*

*Experience :- 8+*

*MOI :-  Skype + F2F*

*VisaType: OtherThan OPT’s and No H1 transfers*



*Experience with Cassandra, Spark, Python, Flask, Django, JavaScript, CSQL 
(other languages would be a plus).*


*Knowledge of front-end frameworks like HTML5, CSS, ReactJS, D3JS or High 
charts.*


*Share Resumes at amithkuma...@primesoftinc.com 
 *

*(312)-273-4025*


*Thanks,*

*Amith Kumar*

-- 
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/2399e395-4c32-4a9b-9ac4-2016b210f665%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Interview Slot for AzureAD Architect @ IL

2019-08-15 Thread Samar D
Hello, Greetings of the Day !! Today I'm having an hashtag#exclusive 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6567893807231311872&keywords=%23exclusive&originTrackingId=pPTl%2B9JfRCKsrnNf0hsviA%3D%3D>
 
hashtag#directclient 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6567893807231311872&keywords=%23directclient&originTrackingId=pPTl%2B9JfRCKsrnNf0hsviA%3D%3D>
 
hashtag#requirement 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6567893807231311872&keywords=%23requirement&originTrackingId=pPTl%2B9JfRCKsrnNf0hsviA%3D%3D>
 
on "AzureAD Architect" for hashtag#c2c 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6567893807231311872&keywords=%23c2c&originTrackingId=pPTl%2B9JfRCKsrnNf0hsviA%3D%3D>.
 
If any consultant is available please share the updated resume to 
sa...@netprosystem.com or give a call on 860-435-7792. Job Profile: AzureAD 
architect Duration: 1+ years Location: Deerfield, IL VISA: USC/GC/H1B 
Experience: 10+ years Interview: Video Key Skills: IAM, AzureAD, Ping 
Desired Skills: JAVA Job Descriptions: • BS or MS in computer science (or a 
technical field). • Expert knowledge of Identity Management, Access 
Management , Directory Services ,Good understanding of Cloud concepts and 
hands on knowledge on Azure/AD. • Hands-on management experience of 
software developers/system administrators/architects. • Hands-on experience 
developing and deploying large-scale enterprise Identity & Access 
Management solutions using Oracle products. • Knowledge of applicable SOX 
audit controls and applicability to IAM services architecture, design, and 
processes. • Security certifications like CISSP is a plus. hashtag#
azurearchitect 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6567893807231311872&keywords=%23azurearchitect&originTrackingId=pPTl%2B9JfRCKsrnNf0hsviA%3D%3D>
 
hashtag#ping 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6567893807231311872&keywords=%23ping&originTrackingId=pPTl%2B9JfRCKsrnNf0hsviA%3D%3D>
 
hashtag#iam 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6567893807231311872&keywords=%23iam&originTrackingId=pPTl%2B9JfRCKsrnNf0hsviA%3D%3D>
 
hashtag#interviewslot 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6567893807231311872&keywords=%23interviewslot&originTrackingId=pPTl%2B9JfRCKsrnNf0hsviA%3D%3D>
 
hashtag#fastmoving 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6567893807231311872&keywords=%23fastmoving&originTrackingId=pPTl%2B9JfRCKsrnNf0hsviA%3D%3D>

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


[android-developers] URGENT INTERVIEW SLOT FOR SHAREPOINT DEVELOPER @ IA

2019-08-21 Thread Samar D
Hello, Greetings of the Day !! Today I'm having an hashtag#exclusive 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6569981732932644865&keywords=%23exclusive&originTrackingId=80%2F1YAEnSjqznoEIZiCnkw%3D%3D>
 
hashtag#directclient 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6569981732932644865&keywords=%23directclient&originTrackingId=80%2F1YAEnSjqznoEIZiCnkw%3D%3D>
 
hashtag#requirement 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6569981732932644865&keywords=%23requirement&originTrackingId=80%2F1YAEnSjqznoEIZiCnkw%3D%3D>
 
on "Share Point Developer" for hashtag#c2c 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6569981732932644865&keywords=%23c2c&originTrackingId=80%2F1YAEnSjqznoEIZiCnkw%3D%3D>.
 
If any consultant is available please share the updated resume to 
sa...@netprosystem.com or give a call on 860-435-7792. Job Profile: Share 
Point Developer Duration: 1+ years Location: Cedar Rapids, Iowa VISA: GC, 
GCEAD, Citizen,H4EAD Experience: 5+ years Job Descriptions: • Must have: 
Microsoftflows and Power Apps • Minimum 5 years of SharePoint development 
experience. • Minimum 2+ years of SharePoint 2016/Office 365 hands on 
experience. • Client-side solution development experience using CSOM, REST, 
Jquery, React, HTML. • Custom Power Apps development for SharePoint 2016. 
hashtag#sharepointdeveloper 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6569981732932644865&keywords=%23sharepointdeveloper&originTrackingId=80%2F1YAEnSjqznoEIZiCnkw%3D%3D>
 
hashtag#microsoftflows 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6569981732932644865&keywords=%23microsoftflows&originTrackingId=80%2F1YAEnSjqznoEIZiCnkw%3D%3D>
 
hashtag#powerapps 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6569981732932644865&keywords=%23powerapps&originTrackingId=80%2F1YAEnSjqznoEIZiCnkw%3D%3D>
 
hashtag#urgentinterviewslot 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6569981732932644865&keywords=%23urgentinterviewslot&originTrackingId=80%2F1YAEnSjqznoEIZiCnkw%3D%3D>

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


[android-developers] Urgent Interview for .Net Developer @ NJ

2019-08-22 Thread Samar D
Hello, Greetings of the Day !! Today I'm having an hashtag#exclusive 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6570323852700856320&keywords=%23exclusive&originTrackingId=%2FK9dv7StSOSuIH%2F%2F7%2Fg5Pw%3D%3D>
 
hashtag#directclient 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6570323852700856320&keywords=%23directclient&originTrackingId=%2FK9dv7StSOSuIH%2F%2F7%2Fg5Pw%3D%3D>
 
hashtag#requirement 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6570323852700856320&keywords=%23requirement&originTrackingId=%2FK9dv7StSOSuIH%2F%2F7%2Fg5Pw%3D%3D>
 
on ".Net Developer" for hashtag#c2c 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6570323852700856320&keywords=%23c2c&originTrackingId=%2FK9dv7StSOSuIH%2F%2F7%2Fg5Pw%3D%3D>.
 
If any consultant is available please share the updated resume to 
sa...@netprosystem.com or give a call on 860-435-7792. Job Profile: Sr. 
C#.Net Developer/Full Stack .Net Developer Duration: 1+ years Location: 
Florham Park NJ VISA: GC, GCEAD, Citizen, H4EAD Experience: 8+ years Job 
Descriptions: • Must have UI framework experience • Strong Angular2/4/6/7, 
JavaScript, React, .Net Core, Mainframe -C# • .Net Core, C#, .Net Fullstack 
hashtag#UI 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6570323852700856320&keywords=%23UI&originTrackingId=%2FK9dv7StSOSuIH%2F%2F7%2Fg5Pw%3D%3D>
 
hashtag#angular 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6570323852700856320&keywords=%23angular&originTrackingId=%2FK9dv7StSOSuIH%2F%2F7%2Fg5Pw%3D%3D>
 
hashtag#javascript 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6570323852700856320&keywords=%23javascript&originTrackingId=%2FK9dv7StSOSuIH%2F%2F7%2Fg5Pw%3D%3D>
 
hashtag#react 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6570323852700856320&keywords=%23react&originTrackingId=%2FK9dv7StSOSuIH%2F%2F7%2Fg5Pw%3D%3D>
 
hashtag#dotnetcore 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6570323852700856320&keywords=%23dotnetcore&originTrackingId=%2FK9dv7StSOSuIH%2F%2F7%2Fg5Pw%3D%3D>
 
hashtag#dotnetfullstack 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6570323852700856320&keywords=%23dotnetfullstack&originTrackingId=%2FK9dv7StSOSuIH%2F%2F7%2Fg5Pw%3D%3D>

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


[android-developers] Urgent Interview for Java Developer @NJ

2019-08-23 Thread Samar D
Hello, Greetings of the Day !! Today I'm having an hashtag#exclusive 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6570683181056561152&keywords=%23exclusive&originTrackingId=eMyowpF5TO2uWQZqKVhtyw%3D%3D>
 
hashtag#directclient 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6570683181056561152&keywords=%23directclient&originTrackingId=eMyowpF5TO2uWQZqKVhtyw%3D%3D>
 
hashtag#requirement 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6570683181056561152&keywords=%23requirement&originTrackingId=eMyowpF5TO2uWQZqKVhtyw%3D%3D>
 
on "Java Developer" for hashtag#c2c 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6570683181056561152&keywords=%23c2c&originTrackingId=eMyowpF5TO2uWQZqKVhtyw%3D%3D>.
 
If any consultant is available please share the updated resume to 
sa...@netprosystem.com or give a call on 860-435-7792. Job Profile: Java 
Developer Duration: Long Term Location: Middle Town, NJ VISA: OPEN 
Experience: 7+ years Job Descriptions: • Must have Java/J2EE, Kubernetes & 
Dockers experience • Need Experiences on DevOps knowledge, APIs, Automation 
& Agile • Need Experiences on Telecom Application/Service Assurances hashtag
#javadeveloper 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6570683181056561152&keywords=%23javadeveloper&originTrackingId=eMyowpF5TO2uWQZqKVhtyw%3D%3D>
 
hashtag#j2ee 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6570683181056561152&keywords=%23j2ee&originTrackingId=eMyowpF5TO2uWQZqKVhtyw%3D%3D>
 
hashtag#kubernetes 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6570683181056561152&keywords=%23kubernetes&originTrackingId=eMyowpF5TO2uWQZqKVhtyw%3D%3D>
 
hashtag#dockers 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6570683181056561152&keywords=%23dockers&originTrackingId=eMyowpF5TO2uWQZqKVhtyw%3D%3D>
 
hashtag#devops 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6570683181056561152&keywords=%23devops&originTrackingId=eMyowpF5TO2uWQZqKVhtyw%3D%3D>
 
hashtag#agile 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6570683181056561152&keywords=%23agile&originTrackingId=eMyowpF5TO2uWQZqKVhtyw%3D%3D>
 
hashtag#interviewslot 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6570683181056561152&keywords=%23interviewslot&originTrackingId=eMyowpF5TO2uWQZqKVhtyw%3D%3D>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/abbbf89e-6534-4e1a-97ed-0990e9b7aaf4%40googlegroups.com.


[android-developers] URGENT INTERVIEW SLOT FOR .NET DEVELOPER @ PA

2019-08-26 Thread Samar D
#Looking 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6571768268611289088&keywords=%23Looking&originTrackingId=ldmor9CkQYC4y6oDeIn5bw%3D%3D>
 
for hashtag#urgent 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6571768268611289088&keywords=%23urgent&originTrackingId=ldmor9CkQYC4y6oDeIn5bw%3D%3D>
 
consultant on".Net Developer"for an exclusive requirements from our direct 
client. Share your consultant resume to sa...@netprosystem.com or give a 
call on 860-435-7792 Job Profile: .Net Developer with Micro Services 
Experiences Duration: Long Term Location: Philadelphia, PA VISA: GC, H4, 
L2, USC, H1(With Passport No.) Experience: 9+ years Interview: Telephonic & 
Skype/Onsite(But Onsite is preferred more) • Looking for an experienced 
.NET Developer with Strong Experience on Microservices. • Docker Experience 
would be a huge plus hashtag#dotnetdeveloper 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6571768268611289088&keywords=%23dotnetdeveloper&originTrackingId=ldmor9CkQYC4y6oDeIn5bw%3D%3D>
 
hashtag#microservices 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6571768268611289088&keywords=%23microservices&originTrackingId=ldmor9CkQYC4y6oDeIn5bw%3D%3D>
 
hashtag#docker 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6571768268611289088&keywords=%23docker&originTrackingId=ldmor9CkQYC4y6oDeIn5bw%3D%3D>
 
hashtag#interviewslot 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6571768268611289088&keywords=%23interviewslot&originTrackingId=ldmor9CkQYC4y6oDeIn5bw%3D%3D>
 
hashtag#hotrequirements 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6571768268611289088&keywords=%23hotrequirements&originTrackingId=ldmor9CkQYC4y6oDeIn5bw%3D%3D>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/468fcf4b-c517-4138-8ec6-2d01bcf07ef2%40googlegroups.com.


[android-developers] Urgent Interview slot for UX Designer @ CO

2019-08-27 Thread Samar D
Hello, Greetings of the Day !! Today I'm having an hashtag#exclusive 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6572133520829923328&keywords=%23exclusive&originTrackingId=e%2Fnm0cAUSmyBenLpECtEfQ%3D%3D>
 
hashtag#directclient 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6572133520829923328&keywords=%23directclient&originTrackingId=e%2Fnm0cAUSmyBenLpECtEfQ%3D%3D>
 
hashtag#requirement 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6572133520829923328&keywords=%23requirement&originTrackingId=e%2Fnm0cAUSmyBenLpECtEfQ%3D%3D>
 
on "UX Designer" for hashtag#c2c 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6572133520829923328&keywords=%23c2c&originTrackingId=e%2Fnm0cAUSmyBenLpECtEfQ%3D%3D>.
 
If any consultant is available please share the updated resume to 
sa...@netprosystem.com or give a call on 860-435-7792. Job Profile: UX 
Designer Duration: Long Term Location: CO VISA: OPEN Experience: 7+ years 
hashtag#uxdesigner 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6572133520829923328&keywords=%23uxdesigner&originTrackingId=e%2Fnm0cAUSmyBenLpECtEfQ%3D%3D>
 
hashtag#interviewslot 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6572133520829923328&keywords=%23interviewslot&originTrackingId=e%2Fnm0cAUSmyBenLpECtEfQ%3D%3D>
 
hashtag#fastmoving 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6572133520829923328&keywords=%23fastmoving&originTrackingId=e%2Fnm0cAUSmyBenLpECtEfQ%3D%3D>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/67f82edf-5b0a-4aca-aa9a-973fe037b645%40googlegroups.com.


[android-developers] Urgent Interview slot for Java Developer @ NJ

2019-08-28 Thread Samar D
Hello, Greetings of the Day !! Today I'm having an hashtag#exclusive 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6572521607808589824&keywords=%23exclusive&originTrackingId=jmZ0xc57SVarkwk68vI%2BPQ%3D%3D>
 
hashtag#directclient 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6572521607808589824&keywords=%23directclient&originTrackingId=jmZ0xc57SVarkwk68vI%2BPQ%3D%3D>
 
hashtag#requirement 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6572521607808589824&keywords=%23requirement&originTrackingId=jmZ0xc57SVarkwk68vI%2BPQ%3D%3D>
 
on "Java Full Stack Developer" for hashtag#c2c 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6572521607808589824&keywords=%23c2c&originTrackingId=jmZ0xc57SVarkwk68vI%2BPQ%3D%3D>.
 
If any consultant is available please share the updated resume to 
sa...@netprosystem.com or give a call on 860-435-7792. Job Profile: Java 
Full Stack Developer Duration: Long Term Location: Parsipanny, NJ VISA: GC, 
H4, L2, USC Experience: 7-8 years Must have skills on AWS, Spring Boot, 
Angular, Micro Services hashtag#javadeveloper 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6572521607808589824&keywords=%23javadeveloper&originTrackingId=jmZ0xc57SVarkwk68vI%2BPQ%3D%3D>
 
hashtag#interviewslot 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6572521607808589824&keywords=%23interviewslot&originTrackingId=jmZ0xc57SVarkwk68vI%2BPQ%3D%3D>
 
hashtag#fastmoving 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6572521607808589824&keywords=%23fastmoving&originTrackingId=jmZ0xc57SVarkwk68vI%2BPQ%3D%3D>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/3c5e104c-d276-471b-91ef-5ca197934638%40googlegroups.com.


[android-developers] Looking for Java Engineer @ MA

2019-09-04 Thread Samar D
#looking 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6575040177314631680&keywords=%23looking&originTrackingId=%2BHma4gXuQxKcThjVkfhg7g%3D%3D>
 
for hashtag#urgently 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6575040177314631680&keywords=%23urgently&originTrackingId=%2BHma4gXuQxKcThjVkfhg7g%3D%3D>
 
Java Engineer in Boston, MA. Share the suitable profile to 
sa...@netprosystem.com Job Profile:   Java Engineer 
Duration:  Long Term Location:  
Boston, MA Required Experiences:  8+ years -- Must have experiences 
on ESB, Apache Camel, Spring. -- Strong experience working with Java, SQL, 
Spring. hashtag#javaengineer 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6575040177314631680&keywords=%23javaengineer&originTrackingId=%2BHma4gXuQxKcThjVkfhg7g%3D%3D>
 
hashtag#esb 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6575040177314631680&keywords=%23esb&originTrackingId=%2BHma4gXuQxKcThjVkfhg7g%3D%3D>
 
hashtag#apache 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6575040177314631680&keywords=%23apache&originTrackingId=%2BHma4gXuQxKcThjVkfhg7g%3D%3D>
 
hashtag#apachecamel 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6575040177314631680&keywords=%23apachecamel&originTrackingId=%2BHma4gXuQxKcThjVkfhg7g%3D%3D>
 
hashtag#spring 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6575040177314631680&keywords=%23spring&originTrackingId=%2BHma4gXuQxKcThjVkfhg7g%3D%3D>
 
hashtag#sql 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6575040177314631680&keywords=%23sql&originTrackingId=%2BHma4gXuQxKcThjVkfhg7g%3D%3D>
 
hashtag#java 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6575040177314631680&keywords=%23java&originTrackingId=%2BHma4gXuQxKcThjVkfhg7g%3D%3D>
 
hashtag#fastmoving 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6575040177314631680&keywords=%23fastmoving&originTrackingId=%2BHma4gXuQxKcThjVkfhg7g%3D%3D>
 
hashtag#interviewslot 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6575040177314631680&keywords=%23interviewslot&originTrackingId=%2BHma4gXuQxKcThjVkfhg7g%3D%3D>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/9f5516d1-75dc-4b7a-804f-74c0131ce7a1%40googlegroups.com.


[android-developers] Looking for Guideware Developer @ NJ

2019-09-09 Thread Samar D
#looking 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6576905204367790081&keywords=%23looking&originTrackingId=jPsWt9J9SSmctxxr8hMHYA%3D%3D>
 
for hashtag#urgently 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6576905204367790081&keywords=%23urgently&originTrackingId=jPsWt9J9SSmctxxr8hMHYA%3D%3D>
 
Guidewire Developer in IL. Share the suitable profile to 
sa...@netprosystem.com Job Profile: Guidewire Developer Duration: Long Term 
Location: NJ VISA: GC, H4, USC, H1( with PP No.) Required Experiences: 7+ 
years Must Skills: • Experience on GW v9 PolicyCenter as a 
Integration/configuration Developer. • Hands on experience working on 
J2EE/XML/Web Services/RDBMS. • Experience working in agile methodology 
hashtag#guidewaredeveloper 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6576905204367790081&keywords=%23guidewaredeveloper&originTrackingId=jPsWt9J9SSmctxxr8hMHYA%3D%3D>
 
hashtag#fastmoving 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6576905204367790081&keywords=%23fastmoving&originTrackingId=jPsWt9J9SSmctxxr8hMHYA%3D%3D>
 
hashtag#interviewslot 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6576905204367790081&keywords=%23interviewslot&originTrackingId=jPsWt9J9SSmctxxr8hMHYA%3D%3D>

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


[android-developers] Looking for Lead Python Developer @ MA

2019-09-10 Thread Samar D
#looking 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6577238699799654400&keywords=%23looking&originTrackingId=%2FtrZz%2B5yRiCryOK9I8WIbg%3D%3D>
 
for hashtag#urgently 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6577238699799654400&keywords=%23urgently&originTrackingId=%2FtrZz%2B5yRiCryOK9I8WIbg%3D%3D>
 
Lead Python Developer in Boston, MA Share the suitable profile to 
sa...@netprosystem.com Job Profile: Lead Python Developer Duration: Long 
Term Location: Boston, MA VISA: GC, H4, USC, L2 Required Experiences: 8+ 
years STRONG AWS, MONGO/DYNAMO DB, AND SQL Skills: • 8+ years of experience 
in Python • 3+ years of backend development • 3+ years of experience with 
AWS platform using services such as S3, IAM, Lambda • 3+ years of 
experience with NoSQL databases (DynamoDB) • Experience with micro-services 
architecture, CI/CD solutions (including Docker) hashtag#pythondeveloper 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6577238699799654400&keywords=%23pythondeveloper&originTrackingId=%2FtrZz%2B5yRiCryOK9I8WIbg%3D%3D>
 
hashtag#aws 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6577238699799654400&keywords=%23aws&originTrackingId=%2FtrZz%2B5yRiCryOK9I8WIbg%3D%3D>
 
hashtag#sql 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6577238699799654400&keywords=%23sql&originTrackingId=%2FtrZz%2B5yRiCryOK9I8WIbg%3D%3D>
 
hashtag#mongodb 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6577238699799654400&keywords=%23mongodb&originTrackingId=%2FtrZz%2B5yRiCryOK9I8WIbg%3D%3D>
 
hashtag#dynamodb 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6577238699799654400&keywords=%23dynamodb&originTrackingId=%2FtrZz%2B5yRiCryOK9I8WIbg%3D%3D>
 
hashtag#fastmoving 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6577238699799654400&keywords=%23fastmoving&originTrackingId=%2FtrZz%2B5yRiCryOK9I8WIbg%3D%3D>
 
hashtag#interviewslot 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6577238699799654400&keywords=%23interviewslot&originTrackingId=%2FtrZz%2B5yRiCryOK9I8WIbg%3D%3D>

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


[android-developers] Looking for Java Developer @ NJ- Local

2019-09-12 Thread Samar D
Sr. Java Full Stack Developer in NJ Share the suitable profile to 
sa...@netprosystem.com Job Profile: Sr. Java Full Stack Developer Duration: 
Long Term Location: Parsipanny, NJ (Only Local) VISA: GC, H4, USC, L2 
Required Experiences: 8+ years required Interview: In person 
Skills/Experience: • 8+ years with Java • UI development - knowledge and 
experience in JavaScript framework such as AngularJS or Marionette, Jquery, 
CSS • 5+ Years of experience with Oracle - PL/SQL, Stored Procedures, 
Tuning and Optimization hashtag#javadeveloper 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A657704365436928&keywords=%23javadeveloper&originTrackingId=bb%2FL2EoDTFyq6ZPBV8RsGQ%3D%3D>
 
hashtag#ui 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A657704365436928&keywords=%23ui&originTrackingId=bb%2FL2EoDTFyq6ZPBV8RsGQ%3D%3D>
 
hashtag#sql 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A657704365436928&keywords=%23sql&originTrackingId=bb%2FL2EoDTFyq6ZPBV8RsGQ%3D%3D>
 
hashtag#javascript 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A657704365436928&keywords=%23javascript&originTrackingId=bb%2FL2EoDTFyq6ZPBV8RsGQ%3D%3D>
 
hashtag#css 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A657704365436928&keywords=%23css&originTrackingId=bb%2FL2EoDTFyq6ZPBV8RsGQ%3D%3D>
 
hashtag#jquery 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A657704365436928&keywords=%23jquery&originTrackingId=bb%2FL2EoDTFyq6ZPBV8RsGQ%3D%3D>
 
hashtag#fastmoving 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A657704365436928&keywords=%23fastmoving&originTrackingId=bb%2FL2EoDTFyq6ZPBV8RsGQ%3D%3D>
 
hashtag#interviewslot 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A657704365436928&keywords=%23interviewslot&originTrackingId=bb%2FL2EoDTFyq6ZPBV8RsGQ%3D%3D>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/7effc377-23aa-4dd7-8315-ca0954d646a2%40googlegroups.com.


[android-developers] Looking for Java Developer @ GA

2019-09-16 Thread Samar D
JAVA DEVELOPER in Alpharetta, GA. Share the suitable consultant details to 
sa...@netprosystem.com Job Profile: Java Developer Location: Alpharetta, GA 
Duration: Long Term Required Experiences: 7+ years VISA: GC, USC, H4, 
GC-EAD Must Skills: Angular, Spring Boot, Javascript hashtag#javadeveloper 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6579384989169827841&keywords=%23javadeveloper&originTrackingId=MnOh8kNszSXw1RIvT0fmeQ%3D%3D>
 
hashtag#angular 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6579384989169827841&keywords=%23angular&originTrackingId=MnOh8kNszSXw1RIvT0fmeQ%3D%3D>
 
hashtag#spring 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6579384989169827841&keywords=%23spring&originTrackingId=MnOh8kNszSXw1RIvT0fmeQ%3D%3D>
 
hashtag#javasricpt 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6579384989169827841&keywords=%23javasricpt&originTrackingId=MnOh8kNszSXw1RIvT0fmeQ%3D%3D>
 
hashtag#fastmoving 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6579384989169827841&keywords=%23fastmoving&originTrackingId=MnOh8kNszSXw1RIvT0fmeQ%3D%3D>
 
hashtag#interviewslot 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6579384989169827841&keywords=%23interviewslot&originTrackingId=MnOh8kNszSXw1RIvT0fmeQ%3D%3D>
 
hashtag#hotrequirements 
<https://www.linkedin.com/feed/hashtag/?highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6579384989169827841&keywords=%23hotrequirements&originTrackingId=MnOh8kNszSXw1RIvT0fmeQ%3D%3D>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/6f2a9f53-ad41-4678-99e7-4d4ea9d7a644%40googlegroups.com.


[android-developers] Looking for Urgent Consultant @ Multi-Location

2019-09-20 Thread Samar D


Hello,

 

Hope you are doing great.

 

Currently I am having few requirements on urgent basis. If any suitable 
consultant available then give me the details ASAP. Email- 
sa...@netprosystem.com / 860-435-7792

 

*1. **Job Profile: Software Engineer – Java 
Full Stack Developer*

*Duration: Long Term*

*Location: Bellevue, WA*

*VISA:OPEN*

*Required Experiences:  8 years*

 

 

 

*2. **Job Profile: Java Developer*

*Duration: Long Term*

*Location:  Livingstone, NJ*

*VISA:  GC, H4, USC*

*Required Experiences:   8 years*

 

 

 

*3. **Job Profile: .Net Full Stack Developer*

*Duration: Long Term*

*Location:  Jersey  city, NJ*

*VISA:  GC, H4, USC*

*Required Experiences:   8 years*

 

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/fc1cdefb-ccc2-46f3-b3de-521220fbdcf9%40googlegroups.com.


[android-developers] Requirement - IAM Consultant - Greensboro, NC - H1B/USC/GC

2019-09-20 Thread Vinaay D


Hello,

 

GSS Inc., is hiring for IAM Consultant – Greensboro, NC for one of its 
direct client requirements. So please go through the below requirement & 
let me know your interest’s.


*Role:* IAM Consultant

*Location:* Greensboro, NC, USA

*Primary Skills: *SAS, AOUTH, ADFS, cloud applications, MFA ( Multi-factor 
authentication ), SSO (single sign-on ), OAUTH, SECRETS, AD, SAML, PKI, IAM.

*Description:*

   +The core requirement for this role is extensive IAM experience 
utilizing AD/ADFS ( Active Directory Federation Services ) platform.

   *AFDS is a MUST ( ie Ping federate etc not acceptable )

   * If a candidate is not actively working ADFS design work he/she 
will be disqualified, even if currently operating in IAM role and meet all 
the IAM architect requirements like AOUTH + SAML + MFA etc.

   *Candidates without ADFS experience should not be submitted.

*IAM Consultant:*

·  The IAM Consultant will be responsible for providing Identity 
Access Management development support for internal, SAS and cloud 
applications.

· Responsibilities include setting and implementing policies and 
standards across enterprise; guiding IAM architecture; align IAM 
initiatives to business processes; working closely with Information monitor 
controls and regulatory compliance to required standards; define user 
roles, attributes and need-to-know; define access controls necessary for 
application usage and data access.

*Core skills:*

Expert knowledge of Active Directory and Active Directory Federated 
Services is required.

3+ years of Direct hands-on experience in IAM.

Extensive experience with authentication protocols such as SAML, OAuth.

Proficient knowledge of User/Group OUs, Group policies.

Experience with multi-factor authentication (MFA) solutions and single sign 
on (SSO).

*Additional Job Requirements: *New application integration request continue 
to come in and queue up ( OAUTH, SAML, PKI, SSO, SECRETS etc)

 

*Submission Format:*

*Full Name:*

*Contact Number:*

*Email:*

*Current location with ZIP:*

*Work Authorization ( NO OPT/CPT ):*

*Availability to Join:*

*Month & date of Birth:*

*Rate:*

 

 

 

*Vinay *| Sr.Resource Management Executive

Gallega Software Solutions Inc.

*Tel: *678-922-8024 | *Fax:*  215-827-5699

*EMail:* vi...@mygallega.com | *Web**:* www.gallegasoft.com

*Address:* 625 Union Hill Road, Alpharetta , GA 30004.

A NMSDC/GMSDC Certified Company

A Georgia Minority Corporation

 

In case of my absence Please reach my manager Mr. Aravind (678) 922 2050

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/99e5c734-5449-423e-a6b5-9069548aeac9%40googlegroups.com.


[android-developers] Opening - Oracle DBA - Baton Rouge, Louisiana

2019-09-20 Thread Vinaay D
.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/ba43c79c-6952-4b1b-a19c-408b666feb51%40googlegroups.com.


[android-developers] Looking for Good Consultant

2019-09-23 Thread Samar D


Hello,

 

Hope you are doing great.

 

Currently I am having few requirements on urgent basis. If any suitable 
consultant available then give me the details ASAP. 


Email- sa...@netprosystem.com / 860-435-7792

 

*1.  **Job Profile: Lead Automation Engineer*

*Duration: Long Term*

*Location: Milwaukee, WI*

*VISA:OPEN*

*Required Experiences:   8-10 years*

 

 

 

*2.  **Job Profile: Devops Engineer*

*Duration: Long Term*

*Location:  Dallas, TX*

*VISA:  OPEN*

*Required Experiences:   10+ years*

 

 

 

*3.  **Job Profile: ETL LEAD*

*Duration: Long Term*

*Location:  Saltlake City, UT*

*VISA:  OPEN*

*Required Experiences:   10 years*

 

 

 

*4.  **Job Profile: UI Developer*

*Duration: Long Term*

*Location:  Longmont, CO*

*VISA:  OPEN*

*Required Experiences:   8 years*

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


[android-developers] Looking for UI & AWS consultant

2019-09-27 Thread Samar D


Hello,

 

Hope you are doing great.

 

Currently I am having few requirements on urgent basis. If any suitable 
consultant available then give me the details ASAP. 


Email: sa...@netprosystem.com  /  860-435-7792

 

*1.   **Job Profile: UI Developer*

*Duration: Long Term*

*Location:  CA, CO*

*VISA:  OPEN*

*Required Experiences:   8  years*

 

 

*2.   **Job Profile: AWS Lead*

*Duration: Long Term*

*Location:  WA*

*VISA:  OPEN*

*Required Experiences:   10+ years*

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/44c2258e-f01c-442d-8458-de6e8d332ac3%40googlegroups.com.


[android-developers] Immediate hire for Java Developer @ AZ for a long term contract

2019-10-03 Thread Yuvi D
Dear Friends,

Please share resumes to *sudh...@hclglobal.com *

*JD as follows:*

Java with PL/SQL
Location: Tempe, AZ
Rate: $DOE/hr
Duration: 6 - 12 Months

Candidate must have* 7 years of exp *

*Job Description: *


*Candidate should have minimum 7 years of exp We need a strong Java
resource with exp in Pl/SQL*

-- 

---
Thanks and Regards,
Yuvi,
HCL Global Systems,
Ph: 248-473-0720*164
Email: y...@hclglobal.com

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAEOzk3zPufHr_%2BJkRCyrJxnzsVZBAHu2Bg%3Dss%3DQT%2BY213-LQPw%40mail.gmail.com.


[android-developers] Looking for Android & JAVA Consultant

2019-10-10 Thread Samar D


Hello,

 

Hope you are doing great.

Currently I am having few requirements on urgent basis. If any suitable 
consultant available then give me the details ASAP.


Share the profile to sa...@netprosystem.com / 860-435-7792

 

*1.   **Job Profile: Android Developer*

*Duration:  Long Term*

*Location:  WI, CA*

*VISA:  OPEN*

*Required Experiences:7-10 years*

 

*Key Skills:  Kotlin*

 

 

*2.   **Job Profile: JAVA Developer*

*Duration: Long Term*

*Location:  New York (Local Prefer)*

*VISA: GC, USC*

*Required Experiences:8+ years*

 

 

*Key Skills: Must have Java, Spring/Spring Boot, 
Micro Services, AWS*

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


[android-developers] Looking for Urgent Consultant

2019-10-11 Thread Samar D


Hello,

 

Hope you are doing great.

Currently I am having few requirements on urgent basis. If any suitable 
consultant available then give me the details ASAP.


Email- sa...@netprosystem.com / 860-435-7792

 

*1.   **Job Profile: Duke Creek Developer *

*Duration: Long Term*

*Location:  MD*

*VISA:  OPEN*

*Required Experiences:  7-8 years*

 

*Key Skills: Must have AGILE methodology*

*Implementing Duck Creek 
application Billing and PAS*

*Duck Creek and Integration*

 

 

*2.   **Job Profile: JAVA Developer*

*Duration: Long Term*

*Location:  New York*

*VISA:  GC, USC*

*Required Experiences:   8+ years*

 

 

*Key Skills: Must have Java, Spring/Spring Boot, Micro Services, AWS*

 

 

 

*3.   **Job Profile: Android Developer*

*Duration: Long Term*

*Location:  WI, CA*

*VISA:  OPEN*

*Required Experiences:   7-10 years*

 

 

*Key Skills: Must have Kotlin*

 

 

*4.   **Job Profile: UI Developer*

*Duration: Long Term*

*Location:  Sunnyvale, CA*

*VISA:  OPEN*

*Required Experiences:   7+ years*

 

 
*Key Skills: Must have React, Angular*

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/cd7f526e-0863-4bf1-86a2-3700c0e6f0bc%40googlegroups.com.


[android-developers] .Net Developer//Chicago//6/Contract

2020-02-28 Thread MuniRaj D
Dear 
Greeting from Simba Staffing 
Job Tile :Dot Net Developer
Location :Chicago, IL
Duration :6 months
C2C: contact
• 8+ years’ experience in software development
• Strong hands on experience in Core Java, OOPS, Multithreading and Java 
Concurrency
• Strong hands on experience in RDBMS - DB2 and Oracle
• Experience in Unix/Linux commands, shell scripting and Autosys
• Experience developing high volume transaction systems – both real-time 
and batch
• Strong Experience in Continuous Integration and Continuous Delivery 
systems, e.g Maven, Jenkins, Nexus

Thanks & Regards
Asha
Email: ashathesi...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/035f7167-2a0d-4456-8f8d-5cf8ddb6f5f9%40googlegroups.com.


[android-developers] Immediate hire for Microstrategy developer for contract

2017-08-14 Thread Yuvi D
Dear,

Please share resumes to* y...@hclglobal.com ;*

*JD as follows:*

*Title: micro Strategy Developer*
Experience: 2 - 3 years
Location: Any where in USA
Duration: 6 - 12 Months
*Visa: OPT's / CPT's*

*Roles and responsibilities:*

Must have 2 - 3 years of experience with Micro Strategy
Must have good communication skills


-- 

---
Thanks and Regards,
Yuvi,
Accounts Manager,
HCL Global Systems,
Ph: 248-473-0720*170
Email: y...@hclglobal.com

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

<https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail>
Virus-free.
www.avast.com
<https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail>
<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

-- 
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/CAEOzk3w2au-Pts%2Bz%3DG-x0FMs0CBW7EAYKw%2BTxGVi3Y4kwE0O1w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Immediate hire for Selenium Tester for contract

2017-08-16 Thread Yuvi D
Team,

Please share resumes to y...@hclglobal.com;

Title: Selenium Tester

Experience: 3 - 4 years

*Interview Mode: Skype and Telephonic*

Location: MN

*Rate: $30/hr on C2C all Inc*

Implementer: Cognizant



*Skill required:*

Java, selenium with Cucmber and Webdriver

Automation experience is mandatory



-- 

---
Thanks and Regards,
Yuvi,
Accounts Manager,
HCL Global Systems,
Email: y...@hclglobal.com

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

<https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail>
Virus-free.
www.avast.com
<https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail>
<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

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


[android-developers] Immediate hire for SAP Basis consultant @ PA for contract

2017-08-17 Thread Yuvi D
Friends,

Greetings of the day!!!

Please share profiles to *as...@hclglobal.com ;
a...@hclglobal.com *

*JD as follows:*

Title: SAP Basis consultant
Location: PA
Duration: 6 - 12 Months
*Rate: $55/hr on C2C all Inc*
Mode of interview: Skype followed by telephonic

*Skills:*

Must have 7 - 8 years of experience with SAP Basis
Must have good communication skills.




-- 

---
Thanks and Regards,
Yuvi,
Accounts Manager,
HCL Global Systems,
Ph: 248-473-0720*165
Email: y...@hclglobal.com

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

<https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail>
Virus-free.
www.avast.com
<https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail>
<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

-- 
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/CAEOzk3zWZtG4cWnuEp%2BBoCaFwO9jyd-0n-HBUytpKcJ4bvyaUA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Immediate hire for QA Analyst with Data Masking experience @ TX for contract

2017-08-24 Thread Yuvi D
Dear Friends,

Please share resumes to y...@hclglobal.com.

Below is the JD for your reference:

*Title: QA analyst with Data Masking Experience*

Location: Dallas, TX

*Pay Rate: $30/hr on C2C all Inc*

Duration: 6  months

Type: Contract



*Roles and Responsibilities: *



JD -  Data masking analyst who has good understanding of masking and
remediation methods.  This resource will manage all the auditing and work
with the EDM team to mask data where necessary, work with the application
teams to understand data flows, track sensitive data elements residing in
lower environments, work with application teams on preferred remediation
methods where needed, work with internal and external audit teams to
provide data where needed for audits



-- 

---
Thanks and Regards,
Yuvi,
Accounts Manager,
HCL Global Systems,
Email: y...@hclglobal.com

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

<https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail>
Virus-free.
www.avast.com
<https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail>
<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

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


[android-developers] Immediate hire for SAP BODS @ CA for a long term contract

2017-08-28 Thread Yuvi D
Dear Folks,

Good Afternoon!!!

Please share profiles to *y...@hclglobal.com ;
as...@hclglobal.com *

*JD as follows:*

*Title: Sr SAP BODS *
Location:- Santa Clara, CA
Duration: 6 months +

At least 5 years of experience in BODS
Strong SAP Integration experience with BODS specifically handling
Standard/Custom extractors
Good understanding of SAP BW landscape
Aware of Master Data knowledge related to business
Exposure to Data Quality, Data Profiling
Experienced in basic reporting, fair data modeling
Possess notable SQL skills
Excellent communication

---
Thanks and Regards,
Yuvi,
Accounts Manager,
HCL Global Systems,
Ph: 248-473-0720*165

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

<https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail>
Virus-free.
www.avast.com
<https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail>
<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

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


[android-developers] Immediate hire for SAP BODS consultant with Information Steward @ MT for contract

2017-08-28 Thread Yuvi D
Dear Folks,

Good Afternoon!!!

*please share resumes to y...@hclglobal.com ;
a...@hclglobal.com *

*Please find the JD below:*

Title: SAP BODS With Information Steward
Location: MT
Duration: 6 months
Rate: $DOE/hr

JD as follows:

He/She will be single POC working closely with Client  IT, Business for
Data validations. He will provide solutions around BODS data validation ,
do planning for Finance (R3) release.
7+ years of experience in SAP BODS
Hands on Experience in Information Steward


-- 

---
Thanks and Regards,
Yuvi,
Accounts Manager,
HCL Global Systems,
Ph: 248-473-0720*205

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

<https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail>
Virus-free.
www.avast.com
<https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail>
<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

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


[android-developers] Immediate hire for SAP BO Admin @ TX for contract

2017-08-28 Thread Yuvi D
Folks,

Please share profiles to *as...@hclglobal.com ;
a...@hclglobal.com *

*JD as follows:*

*Title: SAP Business Objects  Administrator*
Location: Plano, TX
Rate: $DOE/hr
Duration: 6 + Months

Managing deliverables from onsite for the entire upgrade proposal.
Server Upgrade
Applying server patches, if required.
Work with SAP for any specific technical issue fixing.
Review the plan with Technical Lead and facilitate the integration with the
overall plan
Coordinate and plan calls with sector for each system upgrade
Helps technical consultant to deliver the TCO plan in advance to sectors
and get their concurrence
Helping/guiding the offshore team by performing BOBJ upgrade so that we can
have continuous monitoring of server for 8*3 hours in a day.
Coordinate with client for completing the dependent activities with other
Vendors for the Pre requisites for Upgrade

-- 

---
Thanks and Regards,
Yuvi,
Accounts Manager,
HCL Global Systems,
Ph: 248-473-0720*165

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

-- 
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/CAEOzk3ybE6-VBxa-C%2B3aS4XsGm3ym-sERE0_1j%2B6CPNe11Q-yw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Immediate hire for SAP ABAP HR for contract @ OR

2017-08-30 Thread Yuvi D
Dear Folks,

Good Morning!!!

Please share resumes to *a...@hclglobal.com ;
as...@hclglobal.com *


*JD as follows:*

*Title: Sr SAP ABAP HR Consultant *
Location: Portland , OR
Duration: 6 Months +
Rate: $DOE/hr

*Roles and Responsibilities:*

A minimum of 7 years of experience in SAP Development with SAP HR
Must have SAP ABAP WebDynpro, FPM and Adobe Form experience
Must have SAP HR Development experience
Good to have Support Packs Implementation or Upgrade experience
Should be an expert with developing reports using OOPS, ALV.
Expert with detail designing and documentation.
Five years of experience with development patterns such as ABAP OOP, SAP
script, Smartforms, IDOCS, ALV reporting, Data dictionary objects
Experienced with SAP finance, human resources, or work management functions.
Three years minimum experience in planning and negotiating delivery dates
of assignments with the relevant SAP functional team leads.
Two years minimum experience in coaching and mentoring less experienced SAP
developers in the design and implementation of solutions.
Should have good communication and interpersonal skills for consulting with
users to understand needs, define requirements, and provide effective
solutions.
Should be able to handle multiple objects at the same time and able to
decide the priority and estimate effort accurately.
Must be able to work independently to deliver end-to-end ABAP developments

-- 

---
Thanks and Regards,
Yuvi,
Accounts Manager,
HCL Global Systems,
Ph: 248-473-0720*165

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

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


[android-developers] Hot List _ Vigiboss

2017-08-30 Thread Vinaay D
Hi To All Recruiters,

Good Morning.

Hope you are doing well...

This is  David Williams from Vigiboss Inc., looking for the requirements on
QA for the consultant who is 10+yrs of exp all over USA. So, could you
please share me the suitable requirements to my mail id -
*dwilli...@vigiboss.com
 *





In case of emergency, please contact my manager Lal K Vamsi – 774-277-3305/*
kva...@vigiboss.com *



*David Williams*

*Tech. Recruiter, Vigiboss Inc.*

Email: dwilli...@vigiboss.com

Phone   : 774-277-3300

http://vigiboss.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/CAO4K5vSFJJcf4sVWnShv%2B1tefW%2BVA%2BrWuUniSK9HOg%3D4tqoWrg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Re: Dynamically loading a .jar file at Runtime

2017-09-05 Thread Larry D
Always the idiot who will not usefully reply to the question but instead 
offer unsolicited and related bull under false pretenses. Where are the 
moderators to block those imbeciles instead of moralizing and bullying the 
good people providing adequate support?

On Thursday, March 19, 2009 at 4:03:09 AM UTC+1, Dianne Hackborn wrote:
>
> Also keep in mind that doing this kind of thing is completely insecure.  
> Any app can go and modify your files on the sd card to insert their own 
> code into your app and run under your identity.  Then any malicious things 
> they do with your app's permissions are the fault of your app.
>
> On Wed, Mar 18, 2009 at 4:39 PM, fadden > 
> wrote:
>
>>
>> On Mar 18, 7:29 am, Asif k  wrote:
>> >   I am storing the required test.jar file in the /sdcard. I want to
>> > load it dynamically at runtime and want to execute a function xyz()
>> > resides in that. For this purpose
>> >
>> >   I had written following code ,
>>
>> This doesn't work -- in 1.0 you can't load jar/apk files that aren't
>> part of your application.  The problem is that it wants to pull
>> classes.dex out of the jar/apk and put it in /data/dalvik-cache, but
>> it doesn't have permission to do so.
>>
>> The "cupcake" release is expected to include the DexClassLoader class,
>> which allows you to specify a location other than /data/dalvik-cache
>> for your output files.
>>
>>
>> > But got ClassCastException : dalvik.system.PathClassLoader
>>
>> URLClassLoader systemLoader = (URLClassLoader) ClassLoader
>>.getSystemClassLoader();
>>
>> Assuming that the system class loader is a URLClassLoader is unwise
>> and unnecessary.  Just use ClassLoader.
>>
>>
>>
>
>
> -- 
> Dianne Hackborn
> Android framework engineer
> hac...@android.com 
>
> Note: please don't send private questions to me, as I don't have time to 
> provide private support.  All such questions should be posted on public 
> forums, where I and others can see and answer them.
>
>

-- 
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/ed0961a7-5cb2-42db-9a65-1cb59374ee0c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Immediate hire for SAP CRM Technical consultant @ MA for contract

2017-09-07 Thread Yuvi D
Dear Folks,

Good Morning!!!

Please share resumes to *a...@hclglobal.com ;
as...@hclglobal.com ; *

Please find the JD below:

*Title: SAP CRM Technical consultant*
Duration: 6 months
Location: Boston, MA
Rate: $DOE/hr

*Roles and Responsibilities:*

CRM Web UI (BSP Application Development, GENIL/BOL Programing, Object
Oriented ABAP)
CRM Middleware (Adaptor Objects, Request Load/Initial Load/Delta Load)
CRM Pricing (IPC, Pricing Procedures)
CRM Web Services (Integration with SFDC/CC, Endpoints)
BRF Developments (Actions, Expressions, Events)
Action Profile Config/Development
CRM Event Handling
IDOC/BDOC Integration
SAP CRM Business Roles/Navigation Bar Links
BADIs/FMs (SAVE, PARTNER, METHODCALL, ORDERADM_H, ORDERADM_I, METHODCALL,
CONFIG…etc.)
CRM Trace


-- 

---
Thanks and Regards,
Asker,
HCL Global Systems,
Ph: 248-473-0720*165
Email: as...@hclglobal.com 

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

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


[android-developers] Immediate hire for SAP BO Consultant @ IL for contract

2017-09-13 Thread Yuvi D
Dear Folks,

Please share resumes to *a...@hclglobal.com ;
as...@hclglobal.com *

JD as follows:

Title: Sr SAP BO Consultant
Location: Schaumburg, Chicago.
Duration: 6 months
Rate: $DOE/hr( MAX)

Working on incident related to SAP BO 4.1/4.2 (WebI, UDT, IDT, Crystal
reports)
Take the ownership of SAP BO delivery.
Take care of ad hoc request that are come to support mail box.
Co-ordinate with offshore team and get the incidents resolved.
Working on SAP BO month end activity and report delivery.
Work on enhancement requests and change requests.

Regards
Asker
248-473-0720*165
as...@hclglobal.com

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

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


[android-developers] Immediate hire for SAP BOBJ consultant @ CA for contract

2017-09-15 Thread Yuvi D
Dear Folks,

Good Afternoon!!!

Please share resumes to as...@hclglobal.com; a...@hclglobal.com



*JD as follows:*Title:  Sr SAP BOBJ  Consultant
Duration: 6 months
Rate: $DOE/hr
Location: SFO, CA

Senior BOBJ consultant with 8 plus hands-on design & development of webi
and universe querying multiple source systems - BW, Oracle and HANA
1 plus years of WEBI and universe design and development experience in
Business Objects 4.x version is a MUST
At least 1 plus years as a BO Lead and extensive client facing exposure is
a MUST
Hands on experience in trouble shooting  performance tuning and fixing the
issues found - querying
HANA views/tables using Universe
Should have good knowledge on ETL, Data warehouses and OLAP.
Some BO admin experience is desirable
Must be exposed to Onsite-Offshore delivery model and client facing.
Deep knowledge on SAP BW and HANA views would be a plus.
Good communication skills and a flexibility to work onsite PST & offshore
IST hours

-- 

---
Thanks and Regards,
Yuvi,
Accounts Manager,
HCL Global Systems,
Ph: 248-473-0720*165

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

-- 
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/CAEOzk3zNc%2B6NLdJBUwnBXQWBtu1ufiZkKo%2B%3DmYpH-uWXx%3Dg1Hw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Immediate hire for SAP BODS Program manager for contract

2017-09-20 Thread Yuvi D
Dear Folks,

Greetings of the day!!!

Please share profiles to as...@hclglobal.com; a...@hclglobal.com

JD as follows:

*Title: SAP BODS Program Manager *
Location: Old Tappan, NJ
Duration: 6+ Months
Rate: $DOE/hr

*Roles and Responsibilities:*

EXCELLENT communications skills, including native quality English verbal
and written abilities
SAP  BODS specific knowledge/experience required for all functional areas
and technical environment
Strong project leadership/management skills, including ability to oversee
translation of functional requirements into technical specs, unit testing,
coordination of SIT/UAT with business, and deployment/cutover planning and
execution
Stakeholder management skills, including experience working with VP level
and large consulting firms
Experience in large corporate environment and on phased system conversions
highly desired
Oracle EBS/ERP knowledge/experience highly desired

-- 

---
Thanks and Regards,
Atif,
Accounts Manager,
HCL Global Systems,
Ph: 248-473-0720*205
Email: a...@hclglobal.com 

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

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


[android-developers] Immediate hire for SAP SCM Functional consultant @ IL for contract

2017-09-22 Thread Yuvi D
Dear,

Greetings of the day!!!

Please share profiles to *as...@hclglobal.com *

*JD as follows:*

Title: SAP SCM Functional Consultant
Location: Bolingbrook, IL
Rate: $DOE/hr
Duration: 6+months

The Analyst of SCM systems will support integration of SAP with various
applications like Manhattan WMOS, ATG, WCS, Ariba  and SAP BW/HANA.  This
resource needs to have in depth functional knowledge for this system
integration work. The Analyst will be working closely with the business and
other IT teams on project functions.   They will work closely with cross
functional areas to formulate scope and requirements to meet the business
need.  They will be part of high performing team in the supply chain area.
5-7 years hands on experience with SAP MM, IM, SD and LE modules
configuration as functional and/or support analyst.
Integration knowledge of SAP with external systems including WMS using
Idocs.
Proven track record in implementing Warehouse Management Solution.
SAP Integration experience using ETL tools like SAP PI/BODS.
Proven track record in providing superior production support.
Ability to create and maintain documentation such as functional
specifications, process flows, batch job scheduling and system architecture
diagrams etc.
Strong communication and collaboration skills, both written and verbal and
active listening traits.
Strong analytical and problem solving skills.
Flexibility of providing support during odd hours and peak seasons

-- 

---
Thanks and Regards,
Asker,
HCL Global Systems,
Ph: 248-473-0720*165

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

-- 
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/CAEOzk3zVYyTVzkw-qU_8jmDWyBzbj6qq7hZ%2B33hNw%2B%3Dy%2Bgf7gA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Immediate hire for SAP BOBJ consultant w/ Lumira exp @ PA for a long term contract

2018-01-16 Thread Yuvi D
Dear Folks,

Good Morning!!!

Please share profiles to *a...@hclglobal.com ;
as...@hclglobal.com ;*



*JD as follows:Title: Sr SAP BOBJ Lumira consultant*
Location: KOP,PA
Duration: 6 months
Rate $DOE/hr
Start date: 29th Jan 2019

*Note: Please share profiles who are willing to join with 1 week notice
only*

Hands-on experience developing Design Studio dashboards in SAP Lumira 2.0
connecting to CDS (S4 HANA) views and BEx queries as data source.
Good understanding in UI and Dashboard specific SDLCs
Knowledge BEx queries and CDS View - How well it interacts with SAP Lumira
2.0 (Design Studio Dashboards)

SAP HANA SQL Script experience is must (Should have experience writing
complex script based calculation views, store procedures & table functions)

---
Thanks and Regards,
Atif,
HCL Global Systems,
Ph: 248-473-0720*205
Email: a...@hclglobal.com 

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

<https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail>
Virus-free.
www.avast.com
<https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail>
<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

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


[android-developers] Direct client requirement: SAP ABAP consultant with Portal Development Exp @ BayArea, CA

2018-01-16 Thread Yuvi D
Dear Friends,

Good Morning!!!

please share profiles to *as...@hclglobal.com ;
a...@hclglobal.com *



*JD as follows:Title: SAP ABAP consultant with Portal Development exp*
Experience: 5 -7  Years
Location :  Branchburg, NJ
Start Date :  ASAP
Rate: $DOE/hr
Duration: 12  months.

Proficiency in ABAP/4 Workbench, Data Dictionary, Function Library,
Classical and Interactive.
Design and develop complex objects using ABAP/Object oriented ABAP
programming language.
Must lead and develop technical and business systems related activities of
major significance to the client.
Should have strong RICEFW development experience and should be able to work
closely with Business Process teams, Domain Experts and Development teams
to support and develop ABAP based technical solutions (RICEFW - Report,
Interface, Conversion, Enhancement, Form & Workflow).
Should have strong experience on SAP Enterprise Portal, Abstract Portal
components, UWL configuration, NWDI, NWDS, NWBC, web application
developments in Java.
Should have exposure on KM and collaboration.
Should have exposure on ESS, MSS business package implementation.
Work with functional consultants/Business teams and understand the
functional aspect of the requirement.
Expertise in LSMW, BDC, ITS Mobile, Module pool, RF programming, SAP
Script, Smart Forms, Adobe Forms, Complex reports, ALVs and Workflows.
Expertise in Web-service, RFCs, ALE/IDOCs, BTE, Substitution, Validation,
User Exits, BADIs, BAPIs, PI sheet, EHS labels & Enhancement Framework.
Proficiency in SAP Enterprise Portal and Netweaver Developer Infrastructure
(NWDI).
Strong experience in Webdynpro for Java and Webdynpro for ABAP.
•Expertise in Portal Content Administration and User Administration
•Experience in SAP NetWeaver Developer Studio, Eclipse, Visual
Composer, Composite Application Framework (CAF), Universal Worklist (UWL),
Knowledge Management and Collaboration (KMC).

--
Thanks and Regards,
Asker,
HCL Global Systems,
Ph: 248-473-0720*205/165
Email: as...@hclglobal.com 

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

<https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail>
Virus-free.
www.avast.com
<https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail>
<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

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


[android-developers] Immediate hire for SAP PLM ABAP consultant @ WI for a long term contract

2018-01-22 Thread Yuvi D
Dear Folks,

Greetings of the day!!!

Please share profiles to *a...@hclglobal.com ;
as...@hclglobal.com ;*

*Please find the JD below:*

Title: SAP PLM ABAP Consultant
Location: Neenah, WI
Duration: 6 months
Rate: $DOE/hr

Take responsibility for tactical quality assurance
Analyze the functional requirement, create and maintain the test cases.
Perform the following types of tests manually: technical and Regression.
Participate in technical and functional specifications reviews
Maintain the test logs.
Report the of test results to development staff for resolution
Publish the test reports to the development/test lead.



*ABAP, Web Dynpro for ABAP,FPMBRF+*



---
Thanks and Regards,
Atif,
HCL Global Systems,
Ph: 248-473-0720*205
Email: a...@hclglobal.com

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

-- 
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/CAEOzk3yQMZ1OCWX_M_Ce%2Bu%3Dz5vxfb-jL%3DnU91X6MFf-XGhLNKQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Immediate hire for Retail POS Testing @ OR for contract

2018-01-24 Thread Yuvi D
Dear Folks,

Please share profiles to *a...@hclglobal.com ;
as...@hclglobal.com ;*

*JD as follows:*

*Title: Retail POS testing *
Location: Portland, OR
Client: Columbia United Providers
Rate: $DOE/hr
Start date: 1st week of Feb 2018

Retail POS functional testing.
Non POS applications and device testing.
Excellent client facing and communication skills.
Good knowledge on Store application integration with other legacy
aplications.
Good Knowledge of Mobile devices.
Excellent knowledge on the SDLC (Waterfall, Agile, etc.)
Excellent knowledge in Standard Quality  & test management processes.
Ability to identify functional and integrated test cases & Scenarios,
Identification of Test data.
Ability to identify risks and escalate to the Program management team.
Understanding of Automation and Non Functional testing - Ability to
identify functional flows for automation

---
Thanks and Regards,
Atif,
HCL Global Systems,
Ph: 248-473-0720*205
Email: a...@hclglobal.com 

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

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


[android-developers] Immediate hire for SAP ABAP HR consultant @ MO for a long term contract

2018-01-25 Thread Yuvi D
Dear Folks,

Good Morning!!!

Please share profiles to *a...@hclglobal.com *

SAP ABAP HR consultant
Location: St. Louise, MO
Duration: 6 - 12 Months
Rate: $DOE/hr on C2C all Inc

Must have 8+ Years of SAP ABAP Experience
Must have worked on atleast two projects on HR modules

--

Regards,
Atif,
a...@hclglobal.com
248-473-0720*205
Email: a...@hclglobal.com 

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

-- 
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/CAEOzk3xaf5ybPmU4z84tD-4V%3DowHoACU_0Fbk%3D2W0K2FNkZNqg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Immediate hire for SAP BI/BO Lead @ OH for contract

2018-02-23 Thread Yuvi D
Dear Friends,

Please share profiles to *as...@hclglobal.com *

JD as follows:

*Title: SAP BI/BO  LEAD *
Location: Findlay, OH
Duration: 6 month
Rate: $DOE/Hr

Environment:
Business Objects – BOBJ 4.2 SP3 P3 H1, 614 BOBJ reports, 32 Universes
Tableau – Tableau 10.5.0
BW – BW 7.4 on HANA 1.0 Rev 122, 12 daily and 16 monthly data load jobs for
Global Procurement, Accounting/Finance, and Plant Maintenance

Job Functions:
1)Provide level 2 support for Business Objects and Tableau environment
and toolset, including security administration, server administration,
software installation, design and creation of universes, and migration of
reports across environments.
2)Provide consulting, training, best practices, and design reviews for
Tableau Reports and Business Objects reports and universes for level 1
teams.
3)Coordinate with level 3 support teams such as Basis/Infrastructure on
any needed level 3 support needs, upgrades, and performance troubleshooting
and optimization.
4)  Develop specifications and reporting solutions as needed for
clients and ensure reporting solutions adhere to the Enterprise Reporting
Strategy and governance guidelines.

5)  Assist and coordinate testing during system upgrades to ensure
solution sustainability.

6)  Effectively respond to service requests received from end users in
a comprehensive and timely manner.
7)  Participate in after-hours implementations, upgrades,
troubleshooting, and/or on-call availability as needed

Job Qualifications:
Bachelor’s degree required.  Prefer major in Computer Science or other IT
related major.  At least 5 years of experience with SAP Business Objects
and 3 or more years’ experience with Tableau.

Skill Sets and Experience:

Ability to work in a team environment

Strong written and verbal communication skills

Strong critical thinking skills
Experience in full lifecycle implementations including requirements
gathering, understanding business requirements, and developing
specifications.
Strong problem solving/troubleshooting skills
Experience with BI Governance
Experience with design and development of BEX queries, and reports related
to SAP FICO, Procurement (SRM), and Materials Management, and Warehouse
Management functional areas.
Experience with Business Objects 4.2 and Universe design using Information
Design Tool (IDT).
Expertise and experience with Business Objects front end tools including
Web Intelligence, SAP Business Objects Explorer, Analysis for Office / AOLAP
Ability to access and analyze data using Oracle, SQL Server, SAP BW and
other data sources
Demonstrated understanding of data relationships, report structure, and
data source concepts
Ability to create meaningful reporting for varied audiences
Ability to create self-service platforms for dashboard and detailed reports
leveraging Business Objects or Tableau platforms
Demonstrated familiarity with database structures, data retrieval methods,
and performance concerns

-- 

---
Thanks and Regards,
Asker,
Ph: 248-473-0720*165
Email: as...@hclglobal.com 

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

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


[android-developers] Android admob test ad unit returns no fill error

2018-02-26 Thread Vincent D
Hello,

Rewarded video test unit (ca-app-pub-3940256099942544/5224354917) always 
returns noFill for package com.edupad.messenger

Step to reproduce: 
 1. Download example project 
https://github.com/googleads/googleads-mobile-android-examples/releases/download/5.1/Java_RewardedVideoExample_AdMob.zip
 2. Rename package to com.edupad.messenger
 3. Build and start the app

If I rename the package to com.edupad.messenger.beta it work properly. 

Regards,
Vincent

-- 
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/eec01cc4-e91b-49e9-81cf-377064f39f8b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Immediate hire for SAP BODS w/ SQL Queries @ IL for contract

2018-03-05 Thread Yuvi D
Dear Folks,

Good Morning!!!

Please share resumes to *as...@hclglobal.com ;
a...@hclglobal.com *

*JD as follows:*

Title: SAP BODS Technical consultant with SQL Queries
Location: Bolingbrook, IL
Duration: 6+ Months
Rate: $DOE/hr

BODS Technical consultant- Onsite with atleast 6-8 years of technical
experience.
Directly working with IT and Business stakeholders
Preparing technical & mapping documents
Designing & development of objects in BODS.
Write SQL query from data base.
Integrating with SAP and IBM-Sterling with BODS is required.

---
Thanks and Regards,
Asker,
Ph: 248-473-0720*165
Email: as...@hclglobal.com 

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

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


[android-developers] Immediate hire for Azure Developer @ MD for contract

2018-03-12 Thread Yuvi D
Dear Folks,

Good Morning!!!

Please share resumes to *as...@hclglobal.com ;
a...@hclglobal.com *

*JD as follows:*


*Title: Jr. Azure Developer*

*Location: Columbia, MD*

*Rate: $50/hr on C2C all Inc (Max)*

*Duration: 6 - 12 Months*
*No. of positions: 3*



*Roles and responsibilities: *

Strong experience in .Net Core.

Experience with Azure Functions using .Net Framework.

Experience writing libraries / Nuget Packages with .Net Standard

Experience of Unit Testing with NUnit

Exposure to CI/CD pipelines composed of PowerShell scripts

Understanding of the ARM template (Azure Resource Manager) to set properties

WebAPI development, Controller/Model Versioning

Event-Driven Development with service bus

VSTS Version Control Repository /Git

Azure Services (coding and setup):

-  Functions

-  Event Hub

-  Service Bus

-  CosmosDB - DocumentDB



-- 

---
Thanks and Regards,
Asker,
HCL Global Systems,
Ph: 248-473-0720*165
Email: as...@hclglobal.com 

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

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


[android-developers] Immediate hire for Mainframe Tester @ TX for contract

2018-03-14 Thread Yuvi D
Folks,

Please share profiles to *as...@hclglobal.com ;
a...@hclglobal.com *

JD as follows:

*Title: QA tester with AS400/Mainframe exp*
Location: Richardson, TX
*Rate: $35/hr*

Min 5 years of experience in Functional Testing.
Min 3 year experience in Health Care domain.
AS 400/RxClaim experience (Mainframe experience is also fine).
Excellent communication skills.
Able to handle/lead multiple parallel projects.
Ready to learn new concepts.
Must be ready to work in onshore - offshore model and ready to handle
offshore calls.

-- 

---
Thanks and Regards,
Atif,
Ph: 248-473-0720*205
Email: y...@hclglobal.com

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

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


[android-developers] Immediate hire for SAP BW ABAP BPC @ NJ for contract

2018-03-20 Thread Yuvi D
Dear Folks,

Good Afternoon!!!

please share resumes to *as...@hclglobal.com ;
a...@hclglobal.com *




*JD as follows: Role: SAP BW /ABAP/BPC Consultanat Location: Madison, NJ
Duration: 6 months Rate $DOE/hr   ● 7+ years SAP BW And ABAP experience
● Knowledge of OOPS, classes ● Experience in BW /BPC reports
creation ● BW architecture knowledge ● Good communication skills
● Develop reports in SAP BPC – Netweaver using OOPS and classes *


---
Thanks and Regards,
Asker,
HCL Global Systems,
Ph: 248-473-0720*165
Email: as...@hclglobal.com 

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

<https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail>
Virus-free.
www.avast.com
<https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail>
<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

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


[android-developers] Immediate hire for SOA Engineer @ CA for a long term contract

2018-03-23 Thread Yuvi D
Dear Friends,

Good Afternoon!!!

Please share profiles to *s...@hclglobal.com ;
as...@hclglobal.com *

JD as follows:

*JD as follows:*



*Title: SOA Engineer*

Location: Sunnyvale, CA
*Duration: 6 – 12 Months*

Number of positions – 3

Rate : $DOE/hr (Max)



*Skill:*



·  *SOA Engineer/SDET style tester*.

·  Experienced in *SOA architecture, develop & test*.

·  *NO Selenium, NO functional Automation.*

·  Strong in *Java development with experience in SOA
architecture, Rest Services*.

·  Do not share profiles who have just the SOAP UI in their
profile.

·  Strong, smart associates – please do a thorough pre-eval
before sharing profiles as you know how complex it is with Walmart
interviews.



Looking forward to work with you.


-- 

---
Thanks and Regards,
Asker,
HCL Global Systems,
Ph: 248-473-0720*165
Email: as...@hclglobal.com 

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

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


[android-developers] Immediate hire for SAP FICO consultant @ CA

2018-03-27 Thread Yuvi D
Dear Friends,

Good Afternoon!!!

Please share profiles to *as...@hclglobal.com * at
earliest.


*JD as follows:*
Job TitleSAP FICO
LocationSFO, CA
*Rate:   $55/hr* (Max)
Duration6-12 Months
Start dateASAP

*Listed below are the primary responsibilities of a consultant:*
Experience in SAP FI and CO modules - General Ledger (GL), Accounts Payable
(AP), Accounts Receivable (AR), Cost and Profit Center Accounting (CPA) and
Internal Orders
Configuration of SAP FI, CO modules in IMG based on business requirements
Looking for improvement opportunities in business systems
Assisting in testing process in order to discover errors and issues in
business processes, documentation or user's lack of experience
Application support and training of end users
Cooperating with consultants from other modules such as MM, PM, PP and PS

*Understand all of below FICO end-user usage  in SAP system ..*
Preparation of financial statements
Profit and loss (P&L) analysis
Balance sheet accounts reviews and reconciliations
General Ledger (GL) and Cost Center (CC) master data management
Purchase price valuation (PPV) analysis
Supply Chain Management (SCM) reporting
Month-end closing processes
Quarterly reporting
Audits
Support of Liaison
Participation in annual budget preparation

Looking forward for your support.

---
Thanks and Regards,
Asker
HCL Global Systems,
Ph: 248-473-0720*165
Email: as...@hclglobal.com 

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

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


[android-developers] Immediate hire for SAP ABAP-Vistex @ MN for contract

2018-04-04 Thread Yuvi D
Dear Friends,

Good Morning!!!

Please share profiles to* as...@hclglobal.com ;*



*JD as follows:*Title: SAP Vistex ABAP- Technical Consultant
Location: Stpaul,MN
Duration: 6 months
Rate: $DOE/hr



*5-6 years in ABAP3-4 years in Vistex*

SAP Vistex Abap - Technical Consultant: Design, Implement, test and
supports SAP Vistex functionality(Bill backs, Customer Rebates and Sales
Incentives)
Supports the design with strong working knowledge of SD OTC Pricing
Analysis, EDI Order processing, Delivery processing and FI Integration

Knowledge/experience in SAP Vistex , SD pricing, OTC and Finance areas are
a plus
Ability to learn new software quickly
Ability to work in a fast paced environment and within tight deadlines
Independent thinking with keen problem solving skills
Excellent communication and client handling skills
Vistex experience is a must
Bachelors Degree or equivalent

-- 

---
Thanks and Regards,
Asker,
HCL Global Systems,
Ph: 248-473-0720*165
Email: as...@hclglobal.com 

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

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


[android-developers] Immediate hire for SAP ABAP for contract @ TX

2018-04-04 Thread Yuvi D
Dear Friends,

Please share profiles to *as...@hclglobal.com ;
a...@hclglobal.com ;*



*JD as follows:*Title: Sr SAP ABAP Consultant
Location: Dallas, TX
Duration:3 - 9 months
Rate: $DOE/hr

Note: Please send Local profiles and who are willing join with short notice

8-10 years of SAP ABAP development experience and will be responsible for
analyzing existing ABAP
Analyze Customers' SAP Workflow integrations
Provide detailed, accurately and clearly written technical/functional
documentation for all integrations
SAP RFCs, BAPIs, IDOCs, User Exists, BaDI’s WebDynpro
XML
Web Services
Author Specifications


---
Thanks and Regards,
Asker
HCL Global Systems,
Ph: 248-473-0720*165
Email: as...@hclglobal.com 

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

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


[android-developers] Immediate hire for SAP Basis consultant @ VA for contract

2018-04-04 Thread Yuvi D
Dear Friends,

Please share profiles to *a...@hclglobal.com ;
as...@hclglobal.com *


*JD as follows:*
*Title: SAP Basis Administrator With DC Migration EXP*
Location: Richmond, VA
Rate: $DOE/hr
Duration: 6months
*Start date: 4/9( Please submit profile who are  willing to join on 4/9)*

Responsibilities include but not limited to SAP Basis Administrator,
working with customer in project releases on technical & functional SAP
upgrades, SAP Basis and HANA Production support, SAML, SSO, Certificates,
SolMan Agents etc. Follow diligently compliance processes of customer and
Cognizant, good communication is must.
2+ years of experience in Data Center Migration


---
Thanks and Regards,
Atif,
HCL Global Systems,
Ph: 248-473-0720*205
Email: a...@hclglobal.com 

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

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


[android-developers] Immediate hire for SAP HCI Consultant @ CA for a long term contract

2018-04-05 Thread Yuvi D
Dear Friend,

Good Afternoon!!!

Please share profiles to *as...@hclglobal.com ;*



*JD as follows:*Title: SAP HCI Consultant
Duration: 6+ months
Rate: $DOE/hr
Location: Carlsbad, CA

Deep technical expertise in SAP Cloud Platform Integration (HCI) and SAP
Process Orchestration skills
Experience in Adapter Development Kit using Apache Camel
framework/components and HCI Integration tools and Adapters.
Excellent programming skills in Java, Understanding of JAVA J2EE, Rest and
SOAP based services.
Experience with HCI (SAP Cloud Platform Integration) and SAP Hybris Cloud
for Customer (Field Service Management)
Clarity of security concepts SSL and PGP encryptions, SAP Cloud Connector
etc.
Excellent analytical & problem solving skills
Experience in Open API's and SAP Cloud Platform.
Setup and test the technical connection between cloud integration system
and remote systems
Operate a cloud integration cluster and monitor messages and integration
artifacts at runtime
Should be well versed with SAP Cloud Platform Cockpit with end to end CP
Integration projects
Knowledge on Tenant administrator tasks
Should know to perform integration scenario's smoke test
2 to 3 Years of experience in Managing the integration content with SAP CPI
/ HCI Web Application and Eclipse Integration Designer
Familiar with Integration tools on Eclipse platform to model, configure
integration flows and deploy them to the runtime
Hands on in configuring channels Mail, REST, IDoc SOAP, SOAP, AS2, SFTP,
HTTPS, OData, Ariba, SF, RFC and more advanced adapters
Understanding of integration flows with Headers and Exchange properties
with dynamic properties
Well versed with OData service as well as Integration projects
Should be good at API Management such as building OData system query
options to support cloud integration
Knowledge on integration content advisor for SAP CPI / HCI

Looking forward for your support.

---
Thanks and Regards,
Atif,
HCL Global Systems,
Ph: 248-473-0720*165
Email: as...@hclglobal.com 

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

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


[android-developers] Immediate hire for SAP SD GTS consultant @ NY

2018-04-06 Thread Yuvi D
Dear Friends,

Good Afternoon!!!

Please share profiles at earliest to *as...@hclglobal.com
; a...@hclglobal.com *



*JD as follows:*Title: Sr SAP SD GTS Consultant
Location: NYC,NY
Duration: 6 months
Rate: $DOE/hr
10+ years of Strong SAP SD experience.
Extensive experience with configuration of SAP ECC 6.0 SD modules in
several or all of the following areas:
Pricing
Order Management
Logistics and Execution
GATP
Strong LE/GTS
GTS- 3-4 years
EDI
Experience leading change by implementing enterprise-wide business planning
and processing applications
Knowledge of key integration points with SAP application areas such as
FI/CO, MM.
Identify, propose, and influence technology solutions to build and maintain
the optimal data and infrastructure architecture to support the reporting
requirements
Consults with multiple business process owners to identify define and
document business needs and objective, current operational procedures,
problems, input and output requirements and levels of system access.
Knowledge of shared service type/centers of excellence operations preferred
Business Process Analysis, Design & Improvement
Must have excellent communication skills and outstanding end-user
interaction.
Proven team player with Team leadership skills and results-oriented approach
Ability to generate sound solutions to meet customer’s requirements
Strong analytical, problem solving and communication skills are essential

-- 

---
Thanks and Regards,
Asker,
Accounts Manager,
HCL Global Systems,
Ph: 248-473-0720*165

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

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


[android-developers] Immediate hire for Retail Project Manager @ CA for contract

2018-04-11 Thread Yuvi D
Dear Friends,

Good Morning!!!

Please share resumes to *as...@hclglobal.com ;
a...@hclglobal.com ;*

*JD as follows:*

Title: Retail Project Manager with POS knowledge
Location: SFO, CA
Duration: 6 - 12 Months
Rate: $DOE/hr on C2C all Inc

*Basic Qualifications: *

Minimum 7+ years of enterprise IT project management experience
Experience with *Ecommerce, Omni-channel and Retail solutions*
Experience leading global delivery teams is strongly preferred
PMP or other related certifications strongly preferred
Experience with Agile methodologies

*Knowledge, Skills, & Abilities:  *
Strong written / verbal communication and presentation skills
Excellent relationship and team building skills
The ability to work with all levels of staff & leadership
Demonstrated skills in collaborating, persuading, influencing and
negotiating
Ability to self-motivate, adapt, and multi-task in a fast-paced environment
Strong organizational skills with an attention to detail and quality
Excellent relationship and team building skills
Ability to deal effectively with challenging situations
Ability to think critically and apply appropriate judgment and creativity
to a wide variety of  information technology issues
Customer service oriented
Ability to meet the requirement of up to 10% domestic and international
travel

---
Thanks and Regards,
Asker,
HCL Global Systems,
Ph: 248-473-0720*165
Email: as...@hclglobal.com 

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

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


[android-developers] Immediate hire for SAP BO Developer @ AZ for contract

2018-04-11 Thread Yuvi D
Dear Friends,

Good Morning!!!

Please share resumes to *as...@hclglobal.com ;*



*JD as follows:*Title: Sr SAP BO developer
Location: Scottsdale/AZ
Duration: 6 months
Rate: $DOE/hr

Developer with BO Reports Development responsibility working in an Agile
Team
Develop complex reports with context variables, multi-tab reports with
merge queries, charts/visualizations etc
Develop semantic layer using UDT, IDT designer tools that can be consumed
by business for self-serve reporting. Conditional objects, Prompts etc
Report scheduling/bursting of reports to end-users
Translate business requirements to optimal technical solutions
Good communication skills


---
Thanks and Regards,
Asker,
HCL Global Systems,
Ph: 248-473-0720*165
Email: as...@hclglobal.com 

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

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


[android-developers] Immediate hire for SAP MM/ Ariba consultant @ WI for contract

2018-04-11 Thread Yuvi D
Dear Friends,

Good Morning!!!

Please share profiles at earliest to as...@hclglobal.com

*JD as follows:*

Title: SAP MM/Ariba Consultant
Location: Neenah, WI
Duration: 6 months

Expertise in MM  process areas with hands on Configuration experience and
exposure to SAP ARIBA and SAP technical areas
At least 2 End to End implementation experience and also Production support
projects.
Articulates tradeoffs, alternatives and potential solutions for business
problems
Facilitate solution workshops to gain alignment among business and IT
stakeholders
Support client  on packaged application solution implementation.
Understands how a particular feature in a functional area is implemented in
the package and advises client on a best possible solution
Brings industry and cross client  best practices while devising the solution

Looking forward for your support.

---
Thanks and Regards,
Asker,
HCL Global Systems,
Ph: 248-473-0720*165
Email: as...@hclglobal.com 

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

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


[android-developers] Immediate hire for Python Developer with AWS @ OR for contract

2018-04-12 Thread Yuvi D
Dear Folks,

Please share profiles to *as...@hclglobal.com *



*JD as follows:Python with AWS experience*
Location: Beaverton, OR
Rate: $DOE/hr
Duration: 6 Months
Start date:ASAP

*JD as follows:*

Candidate should possess application development experience in AWS
Ability to design, develop, configure, and implement complex solutions and
code in Web technologies like Java/NodeJS/ReactJS or similar
Ability to design, develop, configure, test, and implement complex
solutions and code in an AWS environment uses API’s, Lambda, Docker, and
similar technologies
Diverse experience in deployments/developments in the public cloud
infrastructure (AWS preferred: EC2, RDS, DynamoDB, S3, SQS, SNS)
Experience working with CI/CD tools and automating full stack builds and
deployments. (Jenkins, Travis, CircleCI)
Ability to conduct performance monitoring, tuning, and analyze performance
against benchmarks
Exceptional multi-tasking, collaboration, listening, written and verbal
communication skills.

Looking forward for your reply.

---
Thanks and Regards,
Asker
HCL Global Systems,
Ph: 248-473-0720*165
Email: as...@hclglobal.com 

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

-- 
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/CAEOzk3w-1MH6Gfa%2B2LdeAwY21r1ufq8%2BUh4JHxZDW48baPkWew%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Immediate hire for SAP BO Developer with Tableau @ TX for contract

2018-04-13 Thread Yuvi D
Dear Friends,

Good Afternoon!!!

Please share profiles to *as...@hclglobal.com ;*

JD as follows:

*SAP BO with Tableau*
Location: Plano TX
Duration: 6 - 12 Months
Rate: $DOE/hr on C2C all inc

Must have 5 - 7 years of experience with SAP BO
Must have 1 - 2 years of experience with Tableau
Must have good communication skills.

-- 

---
Thanks and Regards,
Asker,
HCL Global Systems,
Ph: 248-473-0720*165
Email: as...@hclglobal.com 

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

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


[android-developers] Immediate hire for SAP SD OTC Consultant @ MO for contract

2018-04-16 Thread Yuvi D
Dear Friends,

Good Afternoon!!

Please share resumes at earliest to as...@hclglobal.com;

*Title: SAP SD OTC Consultant *
Location: St louis,MO
Duration: 6 months
Rate: $DOE/hr

8-10 Years of SAP O2C with EDI Skills.
Work with process leads to understand pain points and provide improvement /
efficiency opportunities throughout the SD functions.
Extensive knowledge & Experience with SAP S4 and integration with MDG, GTS
and EWM
Experience in the pharmaceutical or medical device industry is preferred
Project management and presentation skills, superior analytical,
evaluative, and problem-solving abilities as well as exceptional customer
service orientation.
Experience with systems design and configuration from starting from
business requirements analysis through implementation and on-going support

-- 

---
Thanks and Regards,
Asker,
HCL Global Systems,
Ph: 248-473-0720*165
Email: as...@hclglobal.com 

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

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


[android-developers] Immediate hire for SAP BO Consultant @ TX for a long term contract

2018-04-17 Thread Yuvi D
Dear Friends,

Good Morning!!!

Please share resumes to *as...@hclglobal.com ;*



*JD as follows:*Title:  SAP BO Consultant with tableau Exp
Location: Plano, TX
Duration: 6 months
Rate: $DOE/hr on C2C all Inc

Design and build reporting solutions using SAP Business Objects, Tableau,
Power BI & other reporting tools
Develop reports using Tableau Desktop, Web Intelligence, Dashboards,
Analysis for Office
Experience managing & driving projects in onsite/offshore model
Assist the customers with defining, designing, configuring and documenting
the reporting solutions.
Troubleshoot ongoing reporting issues as part of upgrades
Ability to own and work all issues through resolution.
Assist in the facilitation of end user testing and providing customer
support during post-production phase.
Leverage industry best practices and methods.

Looking forward for your support.

---
Thanks and Regards,
Asker,
HCL Global Systems,
Ph: 248-473-0720*165
Email: as...@hclglobal.com 

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

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


[android-developers] Immediate hire for SAP BW/BO consultant @ MO for contract

2018-04-20 Thread Yuvi D
Dear Friends,

Please share profiles to *as...@hclglobal.com ; *



*JD as follows:*Role: SAP BW /BO Consultant
Location: St Louis, MO
Duration: 6 months
Rate $DOE/hr

*At least 6 years of SAP BW experience*
Must have ABAP knowledge
Should has a strong knowledge in the BW data modelling, extraction and
transformation.
*At least 2 years of SAP BO knowledge*

Looking forward for your reply.
-- 

---
Thanks and Regards,
Asker,
HCL Global Systems,
Ph: 248-473-0720*165
Email: as...@hclglobal.com 

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

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


[android-developers] Immediate hire for Database Tester w/ ETL Exp @ IL for contract

2018-05-10 Thread Yuvi D
Dear Frieds,

Please share profiles to* as...@hclglobal.com *

*JD as follows:*

Title: Database tester with ETL exp
Location: Deerfield, IL
Rate: $DOE/hr
Duration: 6 - 12 Months

Comprehensive knowledge of database management systems, SQL Queries, and
UNIX
In-depth knowledge of data analysis, database design, Oracle SQL, and SQL
testing
Extensive knowledge of software design life cycle and database testing
procedures
Expertise with ETL testing skills

---

Regards,
Asker
as...@hclglobal.com
248-473-0720*165

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

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


[android-developers] Immediate hire for SAP BODS Consultant @ NY for contract

2018-05-14 Thread Yuvi D
Friends,

Please share profiles to* as...@hclglobal.com ;* at
earliest.

Title: SAP BODS  Consultant
Location: New York City, NY
Rate: DOE/hr
Duration: 6 months

5+ years of  BODS development experience
Strong understanding of business & technical requirements
Build and unit test BODS jobs
Migration of BODS jobs
Defect analysis and fix of existing BODS jobs
Support during functional and QA testing
Hyper care and support
Excellent communication skills
Strong experience in SQL Database


---
Thanks and Regards,
Asker,
HCL Global Systems,
Ph: 248-473-0720*165

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

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


[android-developers] openings for US IT Recruiters -- Sr Nagar, Hyderabad

2018-05-15 Thread Yuvi D
Friends,

Please let me know, if anyone is interested:

*No remote option available*

*Requirement 1:*

*Job: H1B transfers handling experience*
Location: Sr Nagar, Hyderabad
Experience: 2 to 4 years

Must have complete knowledge and experience in handling H1B transfers
Must have 2 to 4 years of experience.
Must have good communication skills

*Requirement 2:*

*Title: US IT Recruiters*
location: Sr. Nagar, Hyderabad
Experience: 2 to 4 years

Must have complete knowledge on C2C / W2 / 1099 tax terms
must have 2 to 4 years of experince in complete US IT recruiting process
Must have good communication skills

*Please share profiles to y...@hclglobal.com *


-- 

---
Thanks and Regards,
Yuvi,
HCL Global Systems,
Email: y...@hclglobal.com

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

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


[android-developers] Immediate hire for SAP HCM Consultant @ MO

2016-10-27 Thread Yuvi D
Hello,

Please share resumes to *r...@hclglobal.com *

Please find the job description below

Title: SAP HCM Consultant
Location: St Louis, MO
Rate: $DOE/hr
Duration:3 - 6 Months

Well versed in all SAP HR Processes. *Having worked extensively in SAP-HR
(ESS/MSS/PY/TM/PM).* Worked in HR/FI integration.
Ability to work with the business team and understand the requirements and
translate them to Functional specification. Able to do carry out
integration testing and also able to impart training to the different
business teams on the new process implemented

-- 

---
Thanks and Regards,
Kalyan
HCL Global Systems,
Ph: 248-473-0720*167
Email: r...@hclglobal.com 

*YIM: yuvi.recruiter*
*Gtalk: dyugandhar.60*

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


  1   2   3   4   5   >