[android-developers] Urgent req for Oracle SOA @ Boca Raton, FL

2016-04-22 Thread Shaik Sadiq
Hi,



Hope you are doing well !!!



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



*Job Title: Oracle SOA*

*Location: Boca Raton, FL*

*Duration: 12+ Month*

*Total Experience: 7+ Years*



*JD*

1. Knowledgeable in Oracle middleware products - SOA, OSB and BAM

2. Knowledgeable in Accenture proprietary frameworks – AFPO and ADM

3. Reviews and provides inputs to Architecture

4. Shares best practices from Accenture

5. Creates Technical Design

6. Creates Functional and Technical Documentation

7. Responsible for Delivery Management

8. Manages Scope

9. Provides estimates; Creates and maintains Project Plans

10. Manages the offshore team to deliver projects within schedule and
budget

11. Responsible for ensuring quality deliverables to the clients

12. Conducts Root Cause Analysis; analyzes trends in metrics and drives
improvements. 13. Provides SIT and UAT support

14. Responsible for communication management

15. Responsible for accurately reporting status and progress

16. Manages and Mitigates risks





*Sadiq Shaik*

ASAP Solutions Group LLC,

678-221-4992 (ext) 217

ssh...@myasap.com 

www.myasap.com

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


[android-developers] I am Creating A simple Fish Moving Game but there is a problem i cant found

2016-04-22 Thread Justin Bieber
Hay all i want to fix a problem that is my background is not moving i dont 
know what is problem can some one found or tell me how to fix it
here i am going to give all code of three class that i code which are main 
class for moving background using SurfaceHolder, Thread and bitmapFactory

here is the code for GamePanal class:

public class GamePanal1 extends SurfaceView implements SurfaceHolder.Callback{

public MThread mainThread;
public boolean Pause_Game;
private BackGroud backGroud;
public float fishSpeed;

public GamePanal1(Context context, Game game, int screenwidth) {
super(context);
getHolder().addCallback(this);
mainThread = new MThread(getHolder(), this);

backGroud = new BackGroud(BitmapFactory.decodeResource(getResources(), 
R.drawable.bc), screenwidth, this);
setFocusable(true);
fishSpeed = screenwidth/2.f;

}


@Override
public boolean onTouchEvent(MotionEvent event){

return super.onTouchEvent(event);
}

void Draw(Canvas canvas){
if(!Pause_Game){
if(canvas!=null){
backGroud.draw(canvas);
}
}



}

void Update(float dt){
backGroud.update(dt);

}


@Override
public void surfaceCreated(SurfaceHolder holder) {

// here i am confuse will look in future if any problem occurs
mainThread.runningMethod(true);
mainThread.start();


}

@Override
public void surfaceChanged(SurfaceHolder holder, int format, int width, int 
height) {

}

@Override
public void surfaceDestroyed(SurfaceHolder holder) {
boolean retry = true;
while (retry){
try {
mainThread.join();
retry= false;
}catch (InterruptedException ex){

}

}

}
}




Code for background class:

public class BackGroud {

Bitmap BackbitMap;
int x,y;
int ScreenWth;
int Count_backgroud;
GamePanal1 rootGamePanal1;


public BackGroud(Bitmap bitmap, int screen_w, GamePanal1 gamePanal1){
this.BackbitMap = bitmap;
this.x = 0;
this.y = 0;
this.ScreenWth = screen_w;
Count_backgroud = ScreenWth/BackbitMap.getWidth()+1;
this.rootGamePanal1 = gamePanal1;


}

public void draw(Canvas canvas){
for(int i = 0; iBackbitMap.getWidth()){
x = x + BackbitMap.getWidth();

}
}
}

public void update(float dt){
x = (int)(x - rootGamePanal1.fishSpeed*dt);

}
}


And code of Thread Class:

public class MThread extends Thread {

private SurfaceHolder surfaceHolder;
private GamePanal1 gamePanal1;
private boolean runningVar;
float dt;

public MThread(SurfaceHolder holder, GamePanal1 gamePanal1){
this.surfaceHolder = holder;
this.gamePanal1 = gamePanal1;
dt = 0;

}

void runningMethod(boolean runining){

this.runningVar = runining;
}

@Override
public void run(){
Canvas canvas;
while (runningVar){
if(!gamePanal1.Pause_Game){
long startDraw = System.currentTimeMillis();
canvas = null;
try{
canvas = this.surfaceHolder.lockCanvas();
synchronized (surfaceHolder){
gamePanal1.Update(dt);
gamePanal1.Draw(canvas);
}

}
finally {

if (canvas!=null){
surfaceHolder.unlockCanvasAndPost(canvas);
}


}

long endDraw = System.currentTimeMillis();
dt = (endDraw-startDraw)/1.f;
}


}
//super.run();

}

}


Can some one tell me what is problem in it

why my back ground is not moving left from right

-- 
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/d86526a1-0f96-4207-bd3e-a1ee5536c22e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] size of google play gallery

2016-04-22 Thread Marina Cuello
The info is in in the same screen on the Console where you upload the
images:

JPEG or 24-bit PNG (no alpha). Min length for any side: 320px. Max length
for any side: 3840px.

At least *2 screenshots are required* overall. *Max 8 screenshots per type*.
Drag to reorder or to move between types.


Marina


On Fri, Apr 22, 2016 at 11:43 AM, Segev Cohen 
wrote:

> hi all
> i want to upload a new app to google play, what is the size of the
> screenshots in the gallery?
>
> thank you!
>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to android-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/android-developers.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/626f1ab1-8256-4573-8234-9b4d94a9259c%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

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


[android-developers] Windows Administrator - Vulnerability Management ,Cumberland, RI/Scottsdale,,6-12+ Months

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

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

*Job Title: Windows Administrator - Vulnerability Management *

*Location: Cumberland, RI/Scottsdale, AZ *

*Contract: 6-12+ Months*



*Requirement:*

•  The Windows administrator should have experience in working with
Different versions Of Windows Server operating systems.

•  The Windows administrator needs to be a work independently with
various application teams with build activities.

•  Effective communication with the IS Application teams is critical to
achieving success with this position.

· The Windows administrator’s responsibilities will include
configuration, maintenance, support, troubleshooting, issue remediation,
system upgrades and Vulnerability management - of all production and test
Windows servers.

· Maintaining the highest availability of all systems is of utmost
priority. Period / scheduled after hours support of these systems is
required.

· A strong competency of IIS, FTP, SFTP, and WSFTP Pro is required.

· Should have enough knowledge to initiate WebEx session and can
handle multiple sessions at the same time to provide support to Application
teams assisting them in their application installation .

•  Strong knowledge of Windows operating system (Windows 2000, Windows
2003, Windows 2008, and Windows 2012).

•  Knowledge of patching tools – Blade-logic, WSUS, Windows Update
services

•  In-depth knowledge of Vulnerability Management on Windows servers.

•  Knowledge of security patch maintenance on Windows servers.

•  Knowledge of Microsoft and non-Microsoft patches/products updgarde
knowledge which is installed on Windows servers

•  Good Knowledge of third party vendor applications such as Web and
JAVA applications.

•  Strong Knowledge of IIS, FTP, SFTP, WSFTP and web based application
publishing and handling.

•  Knowledge of Security patch installation process on server
environment.

•  Good communication and interpersonal skills.



*Thanks & Regards,*
--



Nityo Infotech Corp.
666 Plainsboro Road,

Suite 1285

Plainsboro, NJ 08536



*Sudhanshu Pandey Sr. Technical Recruiter*

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

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

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


[android-developers] Sure Closer:::::::::::::Storage Engineer / Architect

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

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

*Job Title: Storage Engineer *

*Location: Cumberland, RI/Scottsdale, AZ *

*Contract: 6-12+ Months*



*Requirement:*

*POSITION SUMMARY:*

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

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

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

*Target Technologies:*

The skill set needs to be EMC centric and include:

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

*PRIOR WORK EXPERIENCE:*

· 5+ years of experience with Enterprise Storage Engineering
technologies

*Required Skills:*

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

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

· Understanding of storage replication and virtualization
technologies

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

· Ability to do both capacity planning and performance analysis

*Desired Abilities:*

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

*Time allocation*

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

· Assist with escalated storage issue resolution - 5%

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





*Thanks & Regards,*
--



Nityo Infotech Corp.
666 Plainsboro Road,

Suite 1285

Plainsboro, NJ 08536



*Sudhanshu Pandey Sr. Technical Recruiter*

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

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

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


[android-developers] Very Urgent Need: TRIAD Business Analyst @ Wilmington, DE

2016-04-22 Thread Ateeq Rehman
Hi Folk,

This is Ateeq, from Diverse Lynx LLC.



Please share *TRIAD Business Analyst  at **ateeq.reh...@diverselynx.com
*





*Job Description:*



*Role: TRIAD Business Analyst*

*Location: Wilmington, DE*

*Experience: 7+ years*



*Detailed JD:*



*** Experience in PCTMS.
*** Customer/Account Management, SPIDs.
*** Experience in *TRIAD* Strategy management - Keys, Random Digit Groups,
Champion/Challenger Strategies etc.
*** Understanding of *TRIAD* Decision Areas - Scoring, Credit Facilities,
Collections, Authorizations etc.
*** Experience Payment Systems, Credit Risk management.
*** Good communication/documentation skills.



*Thanks & Regards*

*Ateeq Rehman*

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

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

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

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


[android-developers] Re: Creating Multiple APKs for Different API Levels

2016-04-22 Thread Nam Nguyen Hoai
Help me :)

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


[android-developers] Creating Multiple APKs for Different API Levels

2016-04-22 Thread Nam Nguyen Hoai
I want create a application support different API levels. Ex: API < 4.0 has 
a design A and API >= 4.0 has a design B. How to make it? Version for API < 
4.0 and version for API >= 4.0 are 2 different APKs.

-- 
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/86c7627d-b5e0-4e01-ab00-fcfad7ed0048%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Activity TextView displayed incorrect value received from Service Thread.

2016-04-22 Thread Deepak Kumar
Hi All,
I have created a service that starts a thread to increment COUNTER value.
The COUNTER value is passed to an activity from service using either of
Handler or aidl. COUNTER value has been received in Activity and it is
updated continuously within Activity TextView field.
In Activity TextView value incremented like 1->2->3->4->5->6->7 ... so on
upto infinite.

Issue is :
While updating TextView field value(received from service ). It is
sometimes decrement value and displayed in TextView field and then resume
back from updated COUNTER value.
Such as: 1->2->*3->4->3*->6->7  ... so on upto infinite.

Note here, after 4 , 5 has to come. But, it has displayed 3. And then
resumed back from incremented value 6. I have printed logs before and after
fetching of updated COUNTER value from service.

Refer below Code snippet:
System.out.println("Counter="+COUNTER);  // prints 4
COUNTER=service.getCounterValue();
System.out.println("Counter="+COUNTER);  // prints 5
textView.setText("Counter="+COUNTER);// *prints 3*
and then prints 6->7 ...so on.

As per logs, it has fetched correct value but displayed incorrect value in
TextView.

So, please let me know how to solve this problem.

Thanks & regards,
Deepak 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/CALR0e8W2Z7Uj6MEAwB%3D7r8XbjgmhdpYysmM39A7gAyW40NW2UA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Fwd: Ungent Need:Data Analytics @Minnetonka MN

2016-04-22 Thread Dev
Please share profile at de...@tresourceinc.com

*Role: Data Analytics*

*Location: Minnetonka MN*

*Duration:6 months*



*Job description:*

   - Work hands-on in SAS (SAS Enterprise Guide) and add new functionality
   to the tool to meet the needs
   - Leverage the proven UHC SAS Fin360 framework and build fully
   functional innovative solutions while integrating robust reconciliation and
   control processes
   - Drive broader adoption of the SAS end-user Business Intelligence
   Platform including the SAS HPA (High Performance Analytics) capabilities to
   enable self-service reporting for and-uses
   - Collaborate with cross-functional teams to assess the impact on
   managed processes in-light of changes migrations in the upstream systems -
   take remedial actions as necessary



SAS EG, development skills in SAS and SQL are required.

What skills/attributes are nice to have?

Healthcare experience and experience with large datasets over 100MM records.





*Warm Regards,*



*Dev*

*Technical Recruiter*

*Technology Resource Group*

*1700 Park St, Unit 212, and Naperville IL, 60563*

*Staffing|Consulting|Outsourcing*

*Phone: **+1 408-709-1760 x 9869*

*E-mail:* *de...@tresourceinc.com* * |WEB:*
*www.tresourceinc.com* 

*Hangout:*  *devstaffin...@gmail.com* 

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

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


[android-developers] Storage Engineer ,Cumberland, RI/Scottsdale,,6-12+ Months

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

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

*Job Title: Storage Engineer *

*Location: Cumberland, RI/Scottsdale, AZ *

*Contract: 6-12+ Months*



*Requirement:*

*POSITION SUMMARY:*

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

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

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

*Target Technologies:*

The skill set needs to be EMC centric and include:

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

*PRIOR WORK EXPERIENCE:*

· 5+ years of experience with Enterprise Storage Engineering
technologies

*Required Skills:*

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

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

· Understanding of storage replication and virtualization
technologies

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

· Ability to do both capacity planning and performance analysis

*Desired Abilities:*

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

*Time allocation*

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

· Assist with escalated storage issue resolution - 5%

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





*Thanks & Regards,*
--



Nityo Infotech Corp.
666 Plainsboro Road,

Suite 1285

Plainsboro, NJ 08536



*Sudhanshu Pandey Sr. Technical Recruiter*

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

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

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


[android-developers] Hotlist of Technocraft Solutions

2016-04-22 Thread Tapan Kushwaha
Hello,

Greetings!



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


*S.NO* 

*Name*

*Technology*

*Location*

*Experience*

*Relocation*

*1*

*Shradha*

*Sr. ETL Developer*

*Dallas, TX*

*11+*

*Only Dallas*

*2*

*Mayu*

*ETL Informatica*

*Plattsburgh, NY*

*7.5*

*Yes*

*3*

*Saurin*

*ETL Informatica*

*Birmingham, IL*

*8+*

*Yes*

*4*

*Arjun*

*ETL Informatica*

*Auburn Hills, MI*

*8+*

*Yes*

*5*

*Nikitha*

*Informatica*

*Dallas, TX*

*7+*

*Yes*

*6*

*Krunal*

*ETL Informatica*

*Cary, NC*

*7+*

*Yes*

*7*

*Mrunali*

*Informatica*

*Irvine, CA*

*7+*

*CA, TX, FL, NC, AZ*

*8*

*Arti*

*QA Automation*

*CA*

*7+*

*Open*

*9*

*Sanjay*

*QA Lead*

*Providence, RI*

*9+*

*Open*

*10*

*Sowmya*

*PL/SQL*

*Dallas, TX*

*8+*

*Yes*

*11*

*Rama*

*PL/SQL*

*Tamha, FL*

*7+*

*Yes*

*12*

*Ami*

*SQL/BI Developer*

*Piscataway, NJ*

*7+*

* Open*

*13*

*Gunnemouni*

*MS SQL Server SSIS/SSRS*

*Dallas, TX*

*7+*

*Yes*

*14*

*Sree Shravya*

*SQL SERVER / MSBI*

*Houston, TX*

*8+*

*Yes*

*15*

*Merilena*

*Service NOW*

*Dallas, TX*

*7+*

*Yes*

*16*

*Raja*

*Lead Developer*

*Omaha, NE*

*11+*

*Open*

*17*

*Nil*

*Oracle DBA*

*MD*

*7+*

*Yes*



Looking forward to do Business with you.



Thanks,



*TAPAN*

*Business Development Manager*

*Technocraft Solutions LLC*

7000 parkwood Blvd, Ste#200G

Frisco,TX,75034

Email: ta...@technocraftsol.com

www.technocraftsol.com

www.xdimensiontech.com

Partner with XDimension Technology

Yahoo Id:Tapan_technocraft

Gmail Id: Tapan.technocraft

Contact: 614-664-7644

Fax: 866-360-3962

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


[android-developers] HOT-LIST

2016-04-22 Thread sai praveen G
Hi

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

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



*S.No*

*Name*

*Skill / Job Title*

*Experience*

*Location*

*Relocation*

*1*

Anusha

Data Modelling

8+ Years

CT

Open

*2*

Satishbhai

Java

7+ Years

Colorado Springs, CO

Open

*3*

Jinju

.Net

6+ Years

NJ

NJ,NY

*4*

Rachit Patel

Selenium Tester

7+ Years

DC

Open

*5*

Sailaja

QA

7+ Years

Charlotte, NC

Charlotte, NC

*6*

Rajan

QA

7+ Years

Dallas, TX

Dallas, TX

*7*

Kaushal

QA

8+ Years

NJ

Open

*8*

Simi

Java Developer

7+ years

CA

Bay area

*9*

Nabeel

.Net Developer

6+ years

Sacramento, CA

Open

*10*

Sheeba

MSBI Developer

7+ Years

TX

TX,GA,IL,FL

*11*

Gokul

UI Developer

7+ Years

San Jose, CA

Bay Area

*12*

Sai

UI Developer

8+ Years

TX

Open

*13*

Anusha

QA

7+ years

NY

NY, NJ

*14*

Sainath

UI Developer

7+ Years

San Jose, CA

Open

*15*

Harish

Oracle DBA

7+ Years

Amarillo, TX

Open

*16*

Mrudula

Share point

7+ Years

San Jose, CA

Bay area

*17*

Mittul

QA

7+ Years

Detroit, MI

Open

*18*

Haritha

Java/UI

8+ Years

Chicago, IL

Open











[image: Planet-P Logo.png]

*Sai Praveen*

*Sr.IT Recruiter*

*Planet-P, Inc.,*

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

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

Web:   www.theplanetp.com eMail: s...@theplanetp.com

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


[android-developers] Urgent req for Sr. Drupal Developer @ Washington, DC

2016-04-22 Thread Shaik Sadiq
Hi,



Hope you are doing well !!!



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



*Job Title: Sr. Drupal Developer *

*Location: Washington, DC*

*Duration: 6+ Month*

*Total **Experience: 9+ Years*



*JD:*

Experience in leading and Architecting Drupal applications

-   Assign tasks to offshore team members

-   Experience in Agile and waterfall methodologies

-   Experience developing, modifying, and debugging custom Drupal modules.

-   Strong proficiency in PHP, HTML, CSS, and JavaScript

-   Proficient in Drupal including custom module development, key
contributed modules and core API

-   Experience building responsive websites using Drupal CMS, HTML/HTML5,
CSS/CSS3, and JavaScript/jQuery

-   Experience with Acquia hosting environment

-   Knowledge of Solr

-   Comfortable with Linux, Git and Drush





*Sadiq Shaik*

ASAP Solutions Group LLC,

678-221-4992 (ext) 217

ssh...@myasap.com 

www.myasap.com

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


[android-developers] EBS test lead , Minneapolis, MN , 8+ Months

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

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

*Job Title: EBS test lead *

*Location: Minneapolis, MN *

*Contract: 8+ Months *



*Requirement:*

*Role name *



· Tower Lead



*Role Description *



· EBS test lead



*Competencies *



· Assurance : Test Management



*Thanks & Regards,*
--



Nityo Infotech Corp.
666 Plainsboro Road,

Suite 1285

Plainsboro, NJ 08536



*Sudhanshu Pandey Sr. Technical Recruiter*

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

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

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


[android-developers] IBM FileNet Developer, Chicago, IL , 11+ Months

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

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

*Job Title: IBM FileNet Developer*

*Location: Chicago, IL*

*Contract: 11+ Months   *



*Requirement:*

· IBM Case Foundation, ICN and BPF (Nice to have)



*Competencies   *

· IBM FileNet



*Experience (Years)  *

· 8-10



*Essential Skills*



· IBM Case Foundation, ICN



*Desirable Skills *



· BPF (nice to have)



*Thanks & Regards,*
--



Nityo Infotech Corp.
666 Plainsboro Road,

Suite 1285

Plainsboro, NJ 08536



*Sudhanshu Pandey Sr. Technical Recruiter*

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

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

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


[android-developers] Urgent req for Business Process Consultant @ Chicago, IL

2016-04-22 Thread Shaik Sadiq
Hi,



Hope you are doing well !!!



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



*Job Title: Business Process Consultant*

*Location: Chicago, IL*

*Duration: 3+ Month*

*Total **Experience: 10 Years*



*JD:*

· Support to-be business process documentation, along with the Sr.
Retail Workstream Lead, of the Level 2-3 overall end to end business
processes including the Legacy processes pre and post Oracle Retail
Merchandising implementation.

· Oracle RMS capabilities include (but are not limited to)
Foundation Data, Imports, Purchasing, Inventory Management, Pricing, Stock
Ledger, General Accounting. Own and facilitate the business process design
discussions and requirements gathering/documentation.

· This role is expected to collaborate effectively with client
business, legacy IT and legacy BA counterparts, Oracle SMEs, and all other
workstreams (e.g. Application, BI/Reporting, etc.) A driver will excel in
this type of role.



*Sadiq Shaik*

ASAP Solutions Group LLC,

678-221-4992 (ext) 217

ssh...@myasap.com 

www.myasap.com

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


[android-developers] Join Distribution Group

2016-04-22 Thread Ankush Chaudhary
C2C Vendors - Sales - Join - https://lnkd.in/bNZvRfp

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


[android-developers] How to write to OTG USB device without latency

2016-04-22 Thread roberto garavaglia
Hi guys,

I noticed that writing to a file on a USB OTG device, the data is written 
with a delay of about one second. 
This is probably due to caching of java virtual machine or Dalvik virtual 
machine?. Can I write without delay directly?
I tried with NDK and a piece of code in C:

jstring Java_it_prb_hcstarterkit_MainActivity_stringFromJNI(JNIEnv* env, 
jobject obj, jbyteArray array) {
 jbyte* bufferPtr = (*env)->GetByteArrayElements(env, array, NULL);
 jsize lengthOfArray = (*env)->GetArrayLength(env, array);
 jstring retString;

 FILE* file = fopen("/storage/usbdisk/binaryData.bin", "rw");
 if(file == NULL) {
 (*env)->ReleaseByteArrayElements(env, array, bufferPtr, 0);
 return (*env)->NewStringUTF(env, "FILE NOT VALID");
 }
 else {
 fseek(file, 0, SEEK_SET);
 fwrite(bufferPtr, 1, 512, file);

 fflush(file);
 fclose(file);
 }
 (*env)->ReleaseByteArrayElements(env, array, bufferPtr, 0);
 return (*env)->NewStringUTF(env, "JNI Written");
}


But the file pointer il always NULL
The file must be accessed in random mode.

What is wrong? Is the method correct? There are alternatives?
Thank you!

Roberto

-- 
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/c1c2eaf5-b9ab-4221-816a-34eb6e5a1a72%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: trying to run Android Studio in Ubuntu 14.04 can't read documentation, or create virtual device

2016-04-22 Thread Igor Lowe





Il giorno venerdì 22 aprile 2016 10:06:25 UTC+2, Igor Lowe ha scritto:
>
> Hello Bob,
>
> I have the same issue on Xubuntu 14.04. In my case  I resolve in this way
>
> You can try your app in 2 ways, USB devices or running emulators:
>
>  -> On LINUX (UBUNTU,XUBUNTU,...) 
>
>  - USB devices : this possibility is non availaible on LINUX because 
> they are Android USB driver only for WINDOWS OS
>
>  - running emulators: 
>
>* -- Step 1:* You have to verify if you processor supporting VT-x 
> by tapping this code in the terminale
>
>  $ egrep -c '(svm|vmx)' /proc/cpuinfo
>
> If the result in the terminal is "O" else you have to pass at 
> the second step
>  
>
>  *  -- Step 2:* You have to enable  virtualisation  in the BIOS 
> (if not already done!!)
>
> * --Step 3:* As you are running LINUX SYSTEM you need to have 
> KVM installed (HAXM is only needed on Windows and OS X.).
>
> Hope this will help you :)
>
>
>
> Il giorno venerdì 22 aprile 2016 04:36:31 UTC+2, Bob Mounger ha scritto:
>>
>> I want to port 
>>
>> http://generalfuzz.net/acrn/
>>
>> to android to help my (and other peoples) tinnitus. I tried AppInventor 
>> but it could not make the frequency slider. & then PhoneGap which only 
>> produced a part of the app.
>>
>> So I thought I have to start from scratch.
>> I am running Ubuntu 14.04 32 bit on machine with 310 GB.  My reading of 
>> the requirements was that this is sufficient.
>> I installed Oracle Java 8, &  Android Studio & tried to create MyFirstApp.
>> It does not find my samsung phone in developer mode, tells me that my 
>> laptop lacks an intel processor & is therefore  inadequate to create a 
>> virtual device & refuses to run online documentation. There was an adb 
>> error at the bottom of the screen which I tried to fix by rolling back 
>> platform-tools & now it simply refuses to react to the request for online 
>> documentation.
>>
>> Q1 Is this laptop able to develop in android studio?
>> Q2 How can I debug the online documentation failure?
>>
>>
>>

-- 
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/1e36a072-414a-4b6f-822f-7d9590828ac5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: trying to run Android Studio in Ubuntu 14.04 can't read documentation, or create virtual device

2016-04-22 Thread Igor Lowe
Hello Bob,

I have the same issue on Xubuntu 14.04. In my case  I resolve in this way

You can try your app in 2 ways, USB devices or running emulators:

 -> On LINUX (UBUNTU,XUBUNTU,...) 

 - USB devices : this possibility is non availaible on LINUX because 
they are Android USB driver only for WINDOWS OS

 - running emulators: 

   * -- Step 1:* You have to verify if you processor supporting VT-x by 
tapping this code in the terminale

 $ egrep -c '(svm|vmx)' /proc/cpuinfo

If the result in the terminal is "O" else you have to pass at 
the second step
 

 *  -- Step 2:* You have to enable  virtualisation  in the BIOS (if 
not already done!!)

* --Step 3:* As you are running LINUX SYSTEM you need to have 
KVM installed (HAXM is only needed on Windows and OS X.).

Hope this will help you :)



Il giorno venerdì 22 aprile 2016 04:36:31 UTC+2, Bob Mounger ha scritto:
>
> I want to port 
>
> http://generalfuzz.net/acrn/
>
> to android to help my (and other peoples) tinnitus. I tried AppInventor 
> but it could not make the frequency slider. & then PhoneGap which only 
> produced a part of the app.
>
> So I thought I have to start from scratch.
> I am running Ubuntu 14.04 32 bit on machine with 310 GB.  My reading of 
> the requirements was that this is sufficient.
> I installed Oracle Java 8, &  Android Studio & tried to create MyFirstApp.
> It does not find my samsung phone in developer mode, tells me that my 
> laptop lacks an intel processor & is therefore  inadequate to create a 
> virtual device & refuses to run online documentation. There was an adb 
> error at the bottom of the screen which I tried to fix by rolling back 
> platform-tools & now it simply refuses to react to the request for online 
> documentation.
>
> Q1 Is this laptop able to develop in android studio?
> Q2 How can I debug the online documentation failure?
>
>
>

-- 
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/45d90319-fa41-4e0c-9245-a66ca590179e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Error while run a simple code in android studio

2016-04-22 Thread Arya Piroozfar



does anyone know why I face this error while I try to run Android Studio ?





-- 
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/9bdbe5ad-df7b-4610-9335-b9cd8b6c61a5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Android App crash in Marshmallow

2016-04-22 Thread sardar khan
kindly paste the logcat details here so we can check what the problem is

On Fri, Apr 22, 2016 at 12:21 PM, Mayuri Bhamare  wrote:

> My android app works in KitKat, Lollipop, but as soon as you try to
> install it on Marshmallow, It gives error
>
>
> Unfortunately App is stopped.
>
>
> Unable to understand the problem
>
>
> App is compiled in Eclipse
>
>
> --
> 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/a962011c-b4df-496a-a667-56c986617311%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

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


[android-developers] Android App crash in Marshmallow

2016-04-22 Thread Mayuri Bhamare


My android app works in KitKat, Lollipop, but as soon as you try to install 
it on Marshmallow, It gives error


Unfortunately App is stopped.


Unable to understand the problem


App is compiled in Eclipse


-- 
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/a962011c-b4df-496a-a667-56c986617311%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Deep linking is not working on google chrome

2016-04-22 Thread Anjaneya V
I want to integrate deep linking in one of my application.I have followed 
the google documentation.I have defined the my host name & scheme in 
manifest.The functionality is working fine,when i type the url in firefox 
browser i.e it opens the app but not in case of Google chrome & native 
browser.Please help

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