[android-developers] how to properly handle recycling of views in grid view

2016-08-01 Thread Pradeep Kumar Reddy

I'm trying to create a custom gallery using grid view.

gridView recycling of views is creating problem. if i select an image and 
scroll down, some other images are selected.  how to solve this problem. 
how to properly handle recycling of views and restore the state of existing 
views when the gridView is recycling views.

-- 
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/240712c0-50b5-43ff-91bf-036949625de3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Why the min sdk version be 19 in Cardboard VR development?

2016-08-01 Thread 李宗熹
Hi

I notice that the min sdk version is 16 in treasure hunt demo app before.
Why the min sdk version be 19 now?

Thanks.

-- 
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/72b1667f-a589-42d9-9c5d-4f40a11e1414%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Android Studio: ERROR: '__NDK_FPABI__' does not name a type

2016-08-01 Thread Marcos Bontempo
Hello,

I'm with the same error as these links to build the OpenCV Face Detection 
example for Android:

http://stackoverflow.com/questions/22106857/error-ndk-fpabi-does-not-name-a-type

http://stackoverflow.com/questions/23339489/error-ndk-fpabi-does-not-name-a-type-version-2

I'm sorry for asking the same question, but the answers wasn't clear to me. 
I understood that the error occurs because Android Studio is using the 
libraries from /usr/include instead of the libraries from the NDK. However, 
I don't how to correct. 

Here are my files:

*Android.mk*

LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)

include /home/marcos/Downloads/Eclipse_Android_OpenCV/OpenCV-android-sdk
/sdk/native/jni/OpenCV.mk

#OPENCV_CAMERA_MODULES:=off
OPENCV_INSTALL_MODULES:=on
#OPENCV_LIB_TYPE:=SHARED

LOCAL_SRC_FILES  := DetectionBasedTracker_jni.cpp
LOCAL_C_INCLUDES += $(LOCAL_PATH) 
LOCAL_LDLIBS += -llog -ldl
LOCAL_SDK_VERSION := 23
LOCAL_NDK_STL_VARIANT := gnustl_static

LOCAL_MODULE := detection_based_tracker

include $(BUILD_SHARED_LIBRARY)



*Application.mk*

APP_STL := gnustl_static
APP_CPPFLAGS := -frtti -fexceptions
APP_ABI := armeabi-v7a
APP_PLATFORM := android-8



*build.graddle*

apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.2"

sourceSets.main {
jniLibs.srcDir 'src/main/libs'
jni.srcDirs = [] //disable automatic ndk-build call
}

defaultConfig {
applicationId "org.opencv.samples.facedetect"
minSdkVersion 8
targetSdkVersion 23

ndk {
moduleName "detection_based_tracker"
}
}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'
), 'proguard-rules.txt'
}
}

tasks.withType(JavaCompile) {
compileTask -> compileTask.dependsOn ndkLibsToJar
}

task ndkLibsToJar(type: Zip, dependsOn: 'ndkBuild', description: 
'Create 
a JAR of the native libs') {
destinationDir new File(buildDir, 'libs')
baseName 'ndk-libs'
extension 'jar'
from(new File(buildDir, 'libs')) { include '**/*.so' }
into 'lib/'
}

task ndkBuild(type: Exec, description: 'Compile JNI source via NDK') 
{
println('executing ndkBuild')
commandLine 
"/home/marcos/Downloads/Eclipse_Android_OpenCV/android-ndk-r12b/ndk-build",
'NDK_PROJECT_PATH=build',
'APP_BUILD_SCRIPT=src/main/jni/Android.mk',
'NDK_APPLICATION_MK=src/main/jni/Application.mk'
}
}

dependencies {
compile project(':openCVLibrary2411')
}



And here are the errors:

Error:(856, 5) error: '__NDK_FPABI__' does not name a type
Error:(36, 2) error: #error Bionic header ctype.h does not define 
either _U nor _CTYPE_U
Error:(62, 35) error: '_CTYPE_U' was not declared in this scope
Error:(63, 32) error: '_CTYPE_L' was not declared in this scope
Error:(64, 32) error: '_CTYPE_U' was not declared in this scope
Error:(64, 37) error: '_CTYPE_L' was not declared in this scope
Error:(65, 32) error: '_CTYPE_N' was not declared in this scope
Error:(66, 33) error: '_CTYPE_X' was not declared in this scope
Error:(66, 38) error: '_CTYPE_N' was not declared in this scope
Error:(67, 32) error: '_CTYPE_S' was not declared in this scope
Error:(68, 32) error: '_CTYPE_P' was not declared in this scope
Error:(68, 37) error: '_CTYPE_U' was not declared in this scope
Error:(68, 42) error: '_CTYPE_L' was not declared in this scope
Error:(68, 47) error: '_CTYPE_N' was not declared in this scope



Does anybody know how to correct it? 

Any tip will be very helpful,

Thanks.

-- 
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/74e66071-72a7-498b-bfd5-c986bf3b3242%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] one milion user at LEAST

2016-08-01 Thread Daiva Prema Ministries
hi ,

I am interested in this development. please add me on skype elvy2005 for
further discussions.

On Sun, Jul 31, 2016 at 12:05 AM,  wrote:

> i searching for someone can work in image processing , face mask android
> app ,to work with me in my new app in also app developer but i want
> developer or two who have enough experience to develop my new app my first
> app have more than (100-500k) and i have my advertising budget and plan
> like first one and who work with me will have fixed earning from our app
> and wont be the last one thanks good luck
>
> --
> 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/b159661f-5239-4c98-a53f-c8b990504ad0%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/CANkydDjX8zODLd-46ViOu8oa5P6FR95ypgCXrgHu%3DVCYAF9CUw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] android payment

2016-08-01 Thread Daiva Prema Ministries
please use my skype elvy2005 so that i can help you step by step to connect
and execute it

On Mon, Aug 1, 2016 at 1:30 PM, Nelson Matui  wrote:

> actually i have the api but i dont know how to do it
>
> thanks
>
>
> *NELSON MATUI KISEVE *
>
> *DEDAN KIMATHI UNIVERSITY OF TECHNOLOGY*
>
>
>
>
> *B.SC.IT  (ongoing)*
>
> On Sat, Jul 30, 2016 at 9:00 AM, Daiva Prema Ministries <
> daivapr...@gmail.com> wrote:
>
>> ok show the steps which you done i will try to rectify where you are
>> missing
>>
>> On Fri, Jul 29, 2016 at 7:54 PM, Nelson Matui  wrote:
>>
>>> yea i have it but i dont know how to integrate
>>>
>>>
>>> *NELSON MATUI KISEVE *
>>>
>>> *DEDAN KIMATHI UNIVERSITY OF TECHNOLOGY*
>>>
>>>
>>>
>>>
>>> *B.SC.IT  (ongoing)*
>>>
>>> On Fri, Jul 29, 2016 at 12:49 PM, Daiva Prema Ministries <
>>> daivapr...@gmail.com> wrote:
>>>
 do you have the mpesa API ? then it is easy.

 On Fri, Jul 29, 2016 at 3:06 PM, Nelson Matui 
 wrote:

> hi there
>
> am stuck how can i intergrate mpesa to android app
>
>
> thanks
>
> --
> 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/2d09fdaa-46ed-4c46-be81-80d32135bb8c%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

 --
 You received this message because you are subscribed to a topic in the
 Google Groups "Android Developers" group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/android-developers/U943syRAz2Y/unsubscribe
 .
 To unsubscribe from this group and all its topics, send an email to
 android-developers+unsubscr...@googlegroups.com.
 To post to this group, send email to
 android-developers@googlegroups.com.
 Visit this group at https://groups.google.com/group/android-developers.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/android-developers/CANkydDhhOy5VwLx-8b5D2iutJR9cA%3DnO6MHgtNXgXv3q%3Dy4m_A%40mail.gmail.com
 
 .

 For more options, visit https://groups.google.com/d/optout.

>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Android Developers" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to android-developers+unsubscr...@googlegroups.com.
>>> To post to this group, send email to android-developers@googlegroups.com
>>> .
>>> Visit this group at https://groups.google.com/group/android-developers.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/android-developers/CACJ%2BkkuRtwiO5yNHA3-8_sijU3OshXB7bKH2UrP%2BM-s-ySE3sg%40mail.gmail.com
>>> 
>>> .
>>>
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>> --
>> You received this message because you are subscribed to a topic in the
>> Google Groups "Android Developers" group.
>> To unsubscribe from this topic, visit
>> https://groups.google.com/d/topic/android-developers/U943syRAz2Y/unsubscribe
>> .
>> To unsubscribe from this group and all its topics, send an email to
>> android-developers+unsubscr...@googlegroups.com.
>> To post to this group, send email to android-developers@googlegroups.com.
>> Visit this group at https://groups.google.com/group/android-developers.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/android-developers/CANkydDhiKX08HP3DzpA81aXpotEwSGQ1PMmqwopNU8mE6dOAxw%40mail.gmail.com
>> 
>> .
>>
>> For more options, visit https://groups.google.com/d/optout.
>>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To post to 

[android-developers] Phone than F2F Interview:.Net developer|Florham park, NJ

2016-08-01 Thread Neha Kumari
*Hello,*

*GREETINGS !!*

*This is Neha from Apetan consulting,*

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



*POSITION: .Net developer WITH Selenium Webdriver*

* INTERVIEW: Phone than F2F Interview*

*LOCATION: Florham park, NJ*

*DURATION:6 MONTHS*

*START :ASAP*





*Job Overview:*

Any strong .NET Developers with Selenium Webdriver experience testing code?


-- 



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

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

Reipen Avenue # 255 Jersey City, NJ 07306 |

n...@apetan.com | www.apetan.com  |

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


[android-developers] C++ or Java : To develop an app to check bad sectors on Disk

2016-08-01 Thread Mohit Varma
Hello, I want to develop an App which checks for errors/ bad sectors in 
storage space and marks them unavailable for use.Besides that checks file 
system for errors too.

So will I be better off developing such an app in Java (Will Android APIs 
support such objectives that i wish to attain) 

Or I need to use C++ and its supporting libraries to accomplish my task.

Please suggest.

Thanks,

Mohit

-- 
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/b68d8f78-7e5e-4760-bee8-46b6ca5d12f5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Mobile Tester in Minneapolis ,MN with infosys

2016-08-01 Thread SALMA BHAT
Hi Partners ,

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


*Position: Mobile Tester*

*Location: Minneapolis ,MN*

*Duration: Long term*


*Strong Automation *

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


[android-developers] Java Developer with Front end || Columbia, MD || Need GC and US Citizen Only

2016-08-01 Thread rahul goswami
Hi,

*Need GC and US Citizen Only*

Please share a profile at rahulg...@onsinteractive.com

*Title: Java Developr*

*Locations: **Columbia, MD*

*Position Type: Contract*


*Job Duties & Responsibilities:*
· Performs product design and development tasks of high-complexity
high-volume Web functionality which will require research and analysis and
in-depth back-end programming knowledge.
· Participates in client interactions, possibly with more senior team
members. Analyze business requirements and develop various business
delegate to integrate with Middleware services using SOAP and REST.
· Support development and integration of HTML pages by front-end developer.
· Design and develop program logic and flow-charting, testing, debugging
with detailed documentation.
· Works independently and with supervisory review on moderate to highly
complex programming tasks.
· Works within established procedures and framework to develop, test,
implement, and maintain application software.
· Conduct design-review and code-reviews with peers.
· Perform production incident triage.

*Required Skills:*
· Strong Core/JEE programming experience in Object Oriented development,
implementation and maintenance of high-volume Web application.
· Working knowledge of Server and Client templates.
· Design and develop Java Web Application of high quality following good
software development practices.
· Logical thinker and quick learner with strong problem solving and
analytical ability.
· Strong communication skills and professional work habits
· Collaborative personality – able to effectively work with others to
achieve a common goal
· Experience using JEE containers such as WebSphere and TomCat
· Experience with Unit Testing Tool like JUnit
· Experience using software Version Control tools such as ClearCase and
Subversion
· Experience developing and maintaining real time, high volume, client
facing Web application
· Experience using Eclipse/RAD



*Best Regards,*

*Rahul*

*Sr. Technical Recruiter*

*Ons Interactive solutions*

*Accelerating Customer Growth…*

*Global Locations: US-Canada-India*

*US T: 201-383-2812*

*F: 203-779-1102*

*Email: rahulg...@onsinteractive.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/CAA0vNTEeH3FAVwS-jiBOa68Y%3DC6HzqNNYMBhbzuODoSrMTm%2Bcw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] urgent need a MDM Developer || Atlanta, GA || Phone Hire || no H1B ||

2016-08-01 Thread Mohammad Wasim
Hi ,

Please let me know if you are interested for this role.

If interested then please send update resume along with below information.

Full Name:

Email:

Phone:

Location:

Visa:

Rate:

Start: .



*Informatica/MDM Developer*

*Atlanta, GA*

*6+ Months*

*Client : Verizon*

*Phone Hire*



*Any Visa is OK (But NO H1’s) !!*




*Requirements : *
• 4+ years of developing *MDM solutions* (Informatica MDM 9.x Highly
Preferred, *Informatica PowerCenter* 9.x Highly Preferred)
• 4+ years of analyzing data models and *developing ETL mappings*
(Informatica PowerCenter 9.x Highly Preferred)
• Experienced in Informatica Data Director development (Highly Preferred.
• Experienced in data profiling *(Informatica IDQ* highly preferred)
• Proven experience in integrating data in Master Data Management and ETL
environments (Informatica MDM 9.x Highly Preferred)
• Experience performance tuning ETL mappings and high volume databases
• Experienced in *Change Data Capture (CDC)*
Competencies:
• Deep understanding converting designs into integration MDM solutions
• Deep understanding and experience working in MDM tools (Informatica MDM,
IDQ, IDD, PowerCenter 9.x highly preferred)
• Strong SQL, PL/SQL skills
• Knowledge of 10g, 11g, 12c database



**

*Thanks,*

*Mohammad Wasim*

*Source InfoTech Inc.*

W: *6099450420*| F: 732-909-2282| Email: *wa...@sourceinfotech.com*
 | Website: *www.sourceinfotech.com*
 |

*Disclaimer:*  If you are not interested in receiving our e-mails then
please reply with a "REMOVE" in the subject line at
rem...@sourceinfotech.com for automatic removal. And mention all the e-mail
addresses to be removed with any e-mail addresses, which might be diverting
the e-mails to you. We are sorry for the inconvenience.

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


[android-developers] looking for Epic Interface Developer || Minneapolis, MN || Phone Hire || Any Visa is OK !!

2016-08-01 Thread Mohammad Wasim
Hi ,

Please let me know if you are interested for this role.

If interested then please send update resume along with below information.

Full Name:

Email:

Phone:

Location:

Visa:

Rate:

Start:

*Epic Interface Developer*

*Minneapolis, MN*

*12+ Months*

*Client : Fairview Health Services*

*Phone Hire*



*Any Visa is OK !!*



*Requirements :*



· Epic Bridges

· Rhapsody

· Java Script expertise is required



**

*Thanks,*

*Mohammad Wasim*

*Source InfoTech Inc.*

W: *6099450420*| F: 732-909-2282| Email: *wa...@sourceinfotech.com*
 | Website: *www.sourceinfotech.com*
 |

*Disclaimer:*  If you are not interested in receiving our e-mails then
please reply with a "REMOVE" in the subject line at
rem...@sourceinfotech.com for automatic removal. And mention all the e-mail
addresses to be removed with any e-mail addresses, which might be diverting
the e-mails to you. We are sorry for the inconvenience.

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


[android-developers] Lead Data Analyst with Banking Domain

2016-08-01 Thread Manisha Nityo
Hi ,

Hope you doing Well !!!

Here is our *Implementing partner Requirement*, Please go through the below
requirement and let me know your interest.



*Role:** Lead Data Analyst with Banking Domain*

*Location: Atlanta,GA*

*Duration: 6+ Months (Extension Possible)*

*Interview: Phone/ Skype*

*Domain:- Banking*



*Required Experience and Technical Skills*:-

Job Description - Sr. Technology Lead OR TARCH- Data Analyst, Governance -
US

JOB Description:
· Utilize SQL and native RDBMS, Access to pull, organize and prepare
analytics data, reports and statistical models.
· Understand data models and data structures for data management and data
automation.
· Interact with team members to understand business processes and technical
processes. Gather, formulate and analyze data to assist with planning and
decision making.
· Works with main clients and business leaders to identify analytical
requirements.
· Package analytical results into presentations and effectively communicate
findings to a non-technical audience.
· Verify accuracy and look for discrepancies in system data.

Qualifications:-
· Prior experience in Banking and familiarity with banking terminologies
· Strong knowledge in SQL IS A MUST WITH PROVEN EXPERIENCE in using large
databases.
· Strong organization skills with attention to detail is a must.
· Experience in data management, data governance, profiling, data quality,
data automation and development of information standards.
· Excellent client-facing communication and presentation skills.
· Able to work on multiple projects simultaneously with ability to
effectively prioritize and execute tasks in a high pressure environment.



*Thanks & Regards,
  *

*Manisha Budhwar *

Recruiter

Nityo InfoTech .

Desk No-609-853-0818 Ext-2160 <609-853-0818%20Ext-2160>

Gtalk ID:- manishanityo16

E Mail:- *​*manish...@nityo.com

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


[android-developers] US Citizens are available for new role Lead QA HFM Hyperion MYSQL Eassbase ETL Architect

2016-08-01 Thread Ali Baig
 Hi Folks,

We have Excellent Candidate available to join project immediate.

Please add me and share us hot Requirement.

Sr.no Name  Current Location Relocation Skills  Status Visa
1 Best Austin, TX Open MySQL / Oracle DBA Immediate Citizen
2 Gary NYC, NY NY,NJ,PA,CT Lead QA / Manual / Performance Immediate Citizen
3 Will San Diego, CA San Diego, CA ETL Architect/Developer Immediate Citizen
4 Abbas NYC, NY East Coast Hyperion/Essbase/Planning  Immediate Citizen
5 Chris W Stamford, CT Open Hyperion HFM/Essbase/Planning  Immediate Citizen
6 Hanoosh Jackson, MI Open Business Analyst Immediate H1B
7 Bharti Waukesha, WI WI Manual/Automation QA Immediate GC EAD
8 Uma Cary, NC East Coast ETL/ Informatica Immediate GC EAD
9 Haritha Atlanta, GA East Coast ETL/ Informatica Immediate GC EAD
10 Greg Lake Mary, FL FL MS SQL Server Dev/Analyst/ MS Dynamics CRM/
SharePoint Immediate Citizen

With Warm Regards,

ALi Afsar

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

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

Phone: 786-629-6893 | 321-363-8233 | e Mail: a...@bispsolutions.com |

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

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

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


[android-developers] Hadoop developer@Phoenix (AZ)

2016-08-01 Thread Santosh kumar Nityo
Hi,

Hope you doing Well !!!

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



*Role:** Hadoop** developer*

*Location: **Phoenix (AZ)*

*Work Duration:** 6+ Month*

*Years of Experience: 8+*

Note: We need Photo id and visa copy (H1B)
* Job Description:*

· Strong in Java
· Strong analytical and algorithm skills
· Some exposure to Big data ecosystem (map R, Hive, HBase)





[image: cid:image001.jpg@01D0BE16.B9DD7240]



Nityo Infotech Corp.
666 Plainsboro Road,

Suite 1285

Plainsboro, NJ 08536

*Santosh Kumar *

*Technical Recruiter*

Desk No-609-853-0818 Ext-2170
Fax :   609 799 5746

kuntal.sant...@nityo.com
www.nityo.com

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


[android-developers] Java developer@Phoenix (AZ)

2016-08-01 Thread Santosh kumar Nityo
Hi,

Hope you doing Well !!!

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



*Role:* *Java developer*

*Location: **Phoenix (AZ)*

*Work Duration:** 6+ Month*

*Years of Experience: 8+*

*Note: We need Photo id and GC/ EAD copy *


* Job Description:*

· Strong in Java
· Strong analytical and algorithm skills
· Some exposure to Big data ecosystem (map R, Hive, HBase)





[image: cid:image001.jpg@01D0BE16.B9DD7240]



Nityo Infotech Corp.
666 Plainsboro Road,

Suite 1285

Plainsboro, NJ 08536

*Santosh Kumar *

*Technical Recruiter*

Desk No-609-853-0818 Ext-2170
Fax :   609 799 5746

kuntal.sant...@nityo.com
www.nityo.com

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


[android-developers] Software Developer with window SDK and XAML Exp.

2016-08-01 Thread Manisha Nityo
Hi ,

Hope you doing Well !!!

Here is our *Implementing partner Requirement*, Please go through the below
requirement and let me know your interest.



*Role: **Software Developer with window SDK and XAML Exp.*

*Location: Shelton, CT*

*Duration: 6+ Months (Extension Possible)*

*Interview: Phone/ Skype*



*Required Experience and Technical Skills*:-

Person should have working knowledge of C sharp, .net, XAML · Person should
have done Windows 8/8.1/10 mobile apps earlier using windows SDK · Person
should have experience with the visual studio SDK (Windows Universal Apps
SDK) is a must



*Thanks & Regards,   *

*Manisha Budhwar *

Recruiter

Nityo InfoTech .

Desk No-609-853-0818 Ext-2160 <609-853-0818%20Ext-2160>

Gtalk ID:- manishanityo16

E Mail:- *​*manish...@nityo.com

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


[android-developers] frequency sound

2016-08-01 Thread Pratik karmankar
Hello everyone.
I want produce sound from my android mobile by passing some voice frequency 
to android app.
so i need help in doing so..
any help would be appreciated.
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/1b5e805f-43ba-40a4-a8e7-0dd2160df9d0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Senior Applications Database Developer || New York City, New York

2016-08-01 Thread rahul goswami
Hi

Pleaase share me update resume vi...@infinitysts.com

*Job Title: Senior Applications Database Developer*

*Location: New York City, New York*

*Duration: 6 Months Plus*


*GENERAL RESPONSIBILITIES:*

*The Senior Applications Database Developer/Admin responsibilities include:*


   - Responsible for the database creation, tuning, modeling and coding.
   - Responsible for supporting various database environments like
   development, QA,Stage, Perf and Production with promoting, data, objects,
   scripts.
   - Should be able to write different scripts to install, deploy databases
   and database functions that are needed for the eCommerce, web applications
   both in Amazon Cloud and non-cloud environments.
   - Should be able to migrate databases from one to other as appropriate
   as well as from local to Cloud.
   - Able to promote development changes all the lower environments to
   production as needed.
   - Should be able to import, export data from the various sources to the
   databases.
   - The resource is generally responsible for implementing and employing
   the engineering best practices for implementation of business requests and
   custom developments.
   - Responsible for database design, data modeling and scripting, system
   documentation, monitoring, tuning, resolutions.
   - Work as technical leads and architects and write and implement
   technical specifications related to the company’s web initiative data and
   database needs.
   - Work with other members of the Applications Development team to
   implement technical specifications.

· Be well-versed in the technologies chosen for developing
Scholastic’s web application solutions (e.g., , Erwin,DB2, MySQL, Toad,
Mongo DB, Visio, Dynamo DB, RedShift, Git/Bitbucket, SVN, CVS, Python,
Pentaho, Ignite, Sumologic, Chef, UNIX/LinuX/Windows, SQL ).


   - Manage various aspects of database access, security and backup
   - Automate multi-database script deployment and create SQL scripts
   - Expert knowledge of Store procedures, functions, sequences and triggers
   - Ability to create Normalized/de-normalized database schemas utilizing
   data modeling discipline
   - Continue to develop technical skills and learn new technologies as
   needed.
   -

 *We would need following information,*

1. Full Name (Legal):

2. Availability Date:

3. Work Authorization Status:

4. Compensation Expectation:

5. Current Location:

6. Contact Number:

7. Willing to relocate to client location:

8. Best time to call:

9. Skype ID:



*Best Regards,*

*Vinay*

*Sr.Technical Recruiter*

*Infinity, a Stamford Technology Company*

*Accelerating Customer Growth…*

*Global Locations: USA-Canada-India*

*US T: 949-415-7068*

*F: 203-779-1102*

*Email: **vi...@infinitysts.com* 

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


[android-developers] Looking for SQL Developer Architect with 10-12+ Years Candidate Will Work || Bethesda, MD || 3+ Months || Any Visa is OK !!

2016-08-01 Thread Mohammad Wasim
Hi ,

Please let me know if you are interested for this role.

If interested then please send update resume along with below information.

Full Name:

Email:

Phone:

Location:

Visa:

Rate:

Start:

*SQL Developer/Architect*

*Bethesda, MD*

*3+ Months*



*Any Visa is OK !!*



*10-12+ Years Candidate Will Work !!*



*Requirements :*



· *SQL Development Expert*

· *Need to do Datawarehousing from scratch*

· *Healthcare experience*



**

*Thanks,*

*Mohammad Wasim*

*Source InfoTech Inc.*

W: *6099450420*| F: 732-909-2282| Email: *wa...@sourceinfotech.com*
 | Website: *www.sourceinfotech.com*
 |

*Disclaimer:*  If you are not interested in receiving our e-mails then
please reply with a "REMOVE" in the subject line at
rem...@sourceinfotech.com for automatic removal. And mention all the e-mail
addresses to be removed with any e-mail addresses, which might be diverting
the e-mails to you. We are sorry for the inconvenience.

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


[android-developers] Urgent Need :: ETL Solution Architect with IDQ @Hoboken, NJ

2016-08-01 Thread satish kumar
Hello,



Hope you are doing great!!!

Please share resume for below position.



*TITLE:ETL Solution Architect with IDQ*

*LOCATION:  Hoboken, NJ, United States*

*Duration: Long Term*



Requisition Details:

*Job Description:*

• Must have over 10 year of proven experience in Architecting ETL solutions
and in depth experience in Data Integration Projects.

• Must have minimum 7 years of strong experience in Informatica ETL
development

• 6+ years of experience in IDQ

• Hands on Experience on Data Quality Workbench, Knowledge of ‘Data Quality
Transformations’, ‘Exception Management’

• Knowledge of Data Profiling guidelines and best practices on Process
Sequence, Dictionaries, Data Quality Lifecycles, Naming Convention, Version
Control.

• Perform source data profiling and analysis against established Data
Quality (DQ) controls and compliance standards defined by key stakeholders.

• Experienced in data cleansing, enterprise data architecting, data quality
and data governance Informatica server architecture, data governance
experience a must

• Must be able to work independently on the assignment including
estimation, architecture, design, estimation, development and manage
timelines

• Must be able to direct technical tasks of development team

• Should be able to translate nonfunctional and functional requirements
into design within enterprise context

• Have experience working with and developing design and architecture
documents such as entity relation diagrams, Use cases, swim lanes etc.

• Must have good experience in performance tuning and best practices for
ETL & Database Design

• Informatica power center and Data quality development, with at least 1
full life cycle implementations is a must

• Should have the knowledge on data warehousing concepts and EDW ODS etc.

• Informatica Server and client tools installation experience good to have

• Experience in metadata strategy, ETL, reporting, Analytical solutions
Design ETL processes for distributed data processing and loading to data
warehouse

• Have understanding and experience with Design pattern, test driven
development and Isolation framework Must be familiar with various
requirements gathering techniques

• Should demonstrate knowledge of industry trends and standards Ability to
prioritize work requirements Strong stakeholder management skills and
ability to participate in Project Lead Team Passionate about building
high-quality systems

• Strong verbal and written communication skills Strong analytical skills
able to identify alternatives, presenting options, and making
recommendations to meet the projects goals

• Good to have exposure and understanding of cloud technology Must have
ability to create technical design artifacts to demonstrate technical
flows, specification and interfaces of the system and must have a mastery
of application design skills, methods and tools.

• Good to have Insurance/Reinsurance Domain Knowledge





*Satish Kumar* | SYSMIND, LLC
*Technical Recruiter*

[image:
https://newoldstamp.com/editor/profilePictures/profile-b15c8fc3ea4630e2ca604f11e3e951c7-41898.png]

Phone: 609-897-9670 x 2152

Email: sati...@sysmind.com

Gmail: satishsysmi...@gmail.com

Website: sysmind.com

Address: 38 Washington Road, Princeton Junction, NJ 08550

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


[android-developers] Looking for BUSINESS INTELLIGENCE lead ( Tableau, SAP Business Object) in Middletown, New Jersey

2016-08-01 Thread SALMA BHAT
Hi Partners,
Please share profile at naseer.ah...@nityo.com


*Skill Set*

Technology Lead

*Work Location*

Middletown, New Jersey

*Special Instructions*

NA



*Job Description*

*Job Title Technology Lead*
Skills required We are currently looking for a *Senior Technology Lead,* ·
Requirements Gathering: Gather, understand and define business requirements
based on the client needs · Should possess good working knowledge in
handling different *BI products* - Tableau, *SAP Business Objects* · Strong
understanding of *RDBMS concepts.* · DBMS skills in SQL Server or Oracle.
Hands on Experience in Coding, Review and Performance Tuning. Knowledge *of
SSIS and SSRS* will be added advantage. · Ability to understand .*Net code *for
quick fixes, deployment and maintenance will be an added advantage · Should
be able to create high & low level design. Strong problem solving and
troubleshooting skills · Good Analytical ability and Estimation Skills ·
Excellent communication skills, both verbal and written · Experience of
leading a *Team and Stakeholder management* skills · Follow best practices
(test-driven development, continuous integration, SCRUM, code standards,
understanding of code versioning tools)
Location Middletown, New Jersey

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


[android-developers] Looking for Technology Lead(BI products - Tableau, SAP Business Objects) in Middletown, New Jersey

2016-08-01 Thread SALMA BHAT
 Hi Partners,

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

*Skill Set*

Technology Lead

*Work Location*

Middletown, New Jersey

*Special Instructions*

NA



*Job Description*

*Job Title Technology Lead*
Skills required We are currently looking for a *Senior Technology Lead,* ·
Requirements Gathering: Gather, understand and define business requirements
based on the client needs · Should possess good working knowledge in
handling different *BI products* - Tableau, SAP Business Objects · Strong
understanding of *RDBMS concepts.* · DBMS skills in SQL Server or Oracle.
Hands on Experience in Coding, Review and Performance Tuning. Knowledge *of
SSIS and SSRS* will be added advantage. · Ability to understand .*Net code *for
quick fixes, deployment and maintenance will be an added advantage · Should
be able to create high & low level design. Strong problem solving and
troubleshooting skills · Good Analytical ability and Estimation Skills ·
Excellent communication skills, both verbal and written · Experience of
leading a *Team and Stakeholder management* skills · Follow best practices
(test-driven development, continuous integration, SCRUM, code standards,
understanding of code versioning tools)
Location Middletown, New Jersey

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


[android-developers] urgent looking for DevOps Engineer (C#) .....-Seattle, WA .....no H1B ||

2016-08-01 Thread Mohammad Wasim
*Hi ,*

*Please let me know if you are interested for this role.*

*If interested then please send update resume along with below information.*

*Full Name: *

*Email:  *

*Phone:*

*Location:*

*Visa:*

*Rate:*

*Start: *



*Role*-DevOps Engineer (C#).

*Duration*- 7+ Months. Contract.

*Location*-Seattle, WA.

*Interview*-Phone/Skype

*NO h1b*



*Description-*

DevOps with C# Environment Background

*SKILLS - CORE:*

Cloud Computing -- DevOps

*SKILLS - MAJORITY REQUIRED:*

C#

Continuous Integration

Code Deployment

Microsoft Solutions -- DevOps Support Roles





**

*Thanks,*

*Mohammad Wasim*

*Source InfoTech Inc.*

W: *6099450420*| F: 732-909-2282| Email: *wa...@sourceinfotech.com*
 | Website: *www.sourceinfotech.com*
 |

*Disclaimer:*  If you are not interested in receiving our e-mails then
please reply with a "REMOVE" in the subject line at
rem...@sourceinfotech.com for automatic removal. And mention all the e-mail
addresses to be removed with any e-mail addresses, which might be diverting
the e-mails to you. We are sorry for the inconvenience.

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


[android-developers] IMME NEED -- Database Developer -- Irving. TX

2016-08-01 Thread Ayaan Ali
Dear Consultant,
Hope the day is treating you well!

Please see the requirement below and let me know if you are interested in
moving forward. If yes, kindly send us your updated resume along

with contact information. If you are not looking for new projects, please
feel free to pass on this email to your friends or relatives who might be

interested.

Position:  Database Developer
Location:  Irving. TX
Duration: 6 Months
Phone, & F2F

IMME NEED --  Database Developer  -- Irving. TX

Qualifications
RDMS and data warehouse design and implementation experience
Must be able to create, maintain, and optimize database objects
At least 3 years of database development experience
Strong interest in the Real Estate / Mortgage Industry
Object Oriented design and implementation experience
Core Java experience
ETL experience
Sybase(IQ and ASE), SQL Server, Oracle
Ability to work across diverse technologies including Sybase(IQ and ASE),
SQL Server, Oracle

Responsibilities:
Collaborate with customers and developers to identify, analyze, and define
complex business
requirements.
Manage project releases through deployment, reporting on team milestones
and deliverables.
Create technical and user documentation, training end users
Work both individually and also with regional teams to optimize systems and
resources.
Provide business guidance on systems-related issues, facilitate
communications with impacted
parties.
Ability to participate and/or lead design and code reviews.
Ability to follow existing standards and architecture guidelines.
Excellent interpersonal, client relationship and communication (written and
verbal) skills,
including being comfortable dealing with people at a senior level
Ability to cope with multiple demands on time and prioritize accordingly
and communicate
impact


""
 Warm Regards,
Ayaan Ali | IT Recruiter
Panzer Solutions LLC | 50 Washington Street, 9th Floor,  SONO Corporate
Center Norwalk CT 06854
Fax: 203-286-1457 l  Email: *ayaan@panzersolutions.com
* | Testimonials:
http://www.panzersolutions.com/reviews

Notice of Confidentiality:
The information contained herein is intended only for the confidential use
of the recipient. If the reader of this message is neither the intended

recipient, nor the person responsible for delivering it to the intended
recipient, you are hereby notified that you have received this

communication in error, and that any review, dissemination, distribution,
or copying of this communication is strictly prohibited. If you receive

this in error, please notify the sender immediately by telephone, and
destroy this e-mail message OR reply with the subject “REMOVE” such

that your email would be taken out of our distribution.

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


[android-developers] Policy related email from google - designed for families

2016-08-01 Thread lselwd
Policy related email from google - designed for families


If not designed for families needed action take with my Apps?

-- 
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/8054a181-9ce4-41dd-8af3-921d620fae9d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Java Developer

2016-08-01 Thread Manisha Nityo
Hi ,

Hope you doing Well !!!

Here is our *Implementing partner Requirement*, Please go through the below
requirement and let me know your interest.



*Role:** Java Developer*

*Location: Phoenix, AZ*

*Duration: 6+ Months (Extension Possible)*

*Interview: Phone/ Skype*



*Required Experience and Technical Skills*:-

Skill set:
· Strong in Java
· Strong analytical and algorithm skills
· Some exposure to Big data ecosystem (map R, Hive, HBase)



*Thanks & Regards,
  *

*Manisha Budhwar *

Recruiter

Nityo InfoTech .

Desk No-609-853-0818 Ext-2160 <609-853-0818%20Ext-2160>

Gtalk ID:- manishanityo16

E Mail:- *​*manish...@nityo.com

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


[android-developers] TechFetch Jobs - Android Apps on Google Play

2016-08-01 Thread c2c jobs


Get your dream IT jobs in USA. Download our New TechFetch App that designed 
for your hand-held devices, Click here to install: http://bit.ly/1KcqWFk 
#android #apps




-- 
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/15a97289-b02b-4723-9aa1-78891e49e352%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] FULL TIME position:Sr. Product Assurance Engineer

2016-08-01 Thread Sudhakar Reddy
Hi ,

Hope you are doing great,

My Self,  *Sudhakar* from *HCL Global Systems Inc*. We have a requirement
for *Sr. Product Assurance Engineer for *Southfield, MI

Please review the Job description below and if you’d like to pursue this,
please include a word copy of your latest resume along with a daytime phone
number and rate in your response. You can also reach me at
248-473-0720*191,Drop the suitable profiles on *r...@hclglobal.com*




Title - *Sr. Product Assurance Engineer*

Location: Southfield, MI

Rate:- OPEN

Salary- Open



· *Three plus years of related job experience desired, automotive
safety and restraint systems experience preferred.*

· Knowledge of electronic design and assembly, test systems, test
methodologies, and use of test equipment in the automotive industry desired.

· Skilled in computer office applications such as Excel, Word,
PowerPoint, Project,and Visio.

· Strong interpersonal skills to work in a team environment.

· Strong verbal and written communication skills.

· Strong problem solving skills to aid in analysis and physical
troubleshooting of electronic products.



*Job Description*

· Plan and conduct design assessments, inspections, and reviews of
assigned products and requirements.

· Develop Design Validation Tests (DVT) and Design and/or Process
Validation Plans (DVP, PVP). Negotiate start and completion dates, schedule
testing, and seek customer approval for plans and timing.

· Define test equipment; quote various test equipment vendors,
select appropriate vendors, and coordinate the procurement of Design
Verification test equipment.

· Ensure capability and performance of all test equipment and
facilities.

· Execute developmental, Design and/or Process Validation,
Key-Life, design characterization and limit/margin testing with project
team(s) and testing labs (internal & external), as necessary.

· Generate developmental, Design and/or Process Validation reports
(DVP, PVP) and distribute, as required. Initiate and support any test
issue 8D’s and work with project teams through issue resolution.

· Generate, release and update Engineering Specifications. Support
Manufacturing In-Process (IP) Test development, application and
optimization.

· Support Manufacturing Engineers on assigned project team(s).
Develop and maintain product critical and significant characteristic lists.

· Develop EMC testing plans and seek necessary customer approvals.
Coordinate and support EMC testing for Developmental, DV and PV testing
with appropriate testing facilities. Document & archive as required.

· Work with Product Design teams to develop appropriate test
coverage mapped to customer and internal requirements. Collect and organize
the test data for all levels of testing, as required.

· Support the design teams with FMEA and requirements traceability
development. Support product technical design reviews.

· Assure customer confidentiality in all communications and actions.

· Troubleshoot concerns with test equipment and coordinate the
efforts to repair or update the equipment when necessary.

· Work independently, and in conjunction with the project team, as
required.

 *Thanks and Regards . . . . *

 *Sudhakar*,

Technical Recruiter,
HCL Global Systems, Inc
24543 Indoplex Circle,
Suite 220, Farminton. MI 48335

Direct:248-473-0720*191

Email Id: r...@hclglobal.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/CAGxT0BT10RiDYcVnD2VtCHKKAvpvVnnukdK1%3Dkiogk%3D%3Dgz9vFg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] BootUp Complete

2016-08-01 Thread Daniel Sobottka
Hi all,

I have a question about the BootUp Complete Command for autostart.
Does Anyone know the reasons why this command does not always come?


-- 
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/4a24f6f5-279a-4c33-8165-0513a9cb0f94%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] TOP rated GC and H1B consultants

2016-08-01 Thread krishnainspireits92


Hi,

 

Hope you are doing great,

 

Please find the below hotlist and kindly revert back to me.

 

Name

Technology

Current Location

Prefered Location

Total Experience

Visa Status

Latha

SAP BOBJ

GA

Nationwide

13 Yrs

H1B

Sandip 

SAP SD

CA

CA,Nationwide

11 Yrs

H1B

Vasudeva 

Oracle Applications Techno Functional Consultant

PA

Nationwide

8 Yrs

H1B

Smriti

Java Developer

MA

Nationwide

8 Yrs

H1B

HimaBindu

Hyperion Developer

Dublin OH,

Nationwide

8yrs

H1B

Vani

Salesforce

FL

Nationwide

7 Yrs

H4-EAD

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Nalini

QA

TX

Texas

5yrs

GC

Prashant

SQL Server DBA

Fairfax, VA

Northern Virginia

16 Yrs

GC

Rajesh

Microsoft Dynamics Developer

FL

Nationwide

8 Yrs

H1B

Hima Bindu

Sr.QA Engineer

NY

Nationwide

8 Yrs

H1B

Aishwarya

Business Analyst

Lexington, KY

NationWide

5yrs

H1B

Sreedhar

Data warehouse project manager

Ellicott City, Maryland

Md,Dc,VA,DE,DC

16-17yrs

H1B

 

 

 

 

 

-- 
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/d38e3708-62cc-4816-8165-cfdee829f378%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Cannot create project under API Access

2016-08-01 Thread John Cogan
Hi

I wanted to set up a project under API Access for my Android App but am 
getting an error "An unexpected error occurred. Please try again later. 
(480)"
Some people say wait 24 hours but this is a client project and needs to go 
into Alpha for them to test fairly soon.

Any pointers as to what causes this issue (An a fix if possible) would be 
appreciated.

Regards and thanks
John

-- 
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/9c6a9665-8d1e-498e-996f-f95e6656b7a2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] immediate looking for C++ developer .....Alpharetta, GA.......no H1b|| phone hire ||

2016-08-01 Thread Mohammad Wasim
*Hi ,*

*Please let me know if you are interested for this role.*

*If interested then please send update resume along with below information.*

*Full Name: *

*Email:  *

*Phone:*

*Location:*

*Visa:*

*Rate:*



*C++ Developer*

*Alpharetta, GA*

*12+ Month s*

*Client : NCR*

*Phone Hire*



*Any Visa is OK (But NO H1’s) !*



*Requirements :*



· C / C++

· COM/COM+

· SOAP

· Windows development experience

· Structure Query Language (SQL)

· Object Oriented programming techniques.





**

*Thanks,*

*Mohammad Wasim*

*Source InfoTech Inc.*

W: *6099450420*| F: 732-909-2282| Email: *wa...@sourceinfotech.com*
 | Website: *www.sourceinfotech.com*
 |

*Disclaimer:*  If you are not interested in receiving our e-mails then
please reply with a "REMOVE" in the subject line at
rem...@sourceinfotech.com for automatic removal. And mention all the e-mail
addresses to be removed with any e-mail addresses, which might be diverting
the e-mails to you. We are sorry for the inconvenience.

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


[android-developers] ***** HOTLIST *****

2016-08-01 Thread rr aa
Greetings!!!



I’m *Raj* from *Thought Byte, Inc*. Please let me know if you have any Corp
to Corp opportunities for listed consultants. Reach me at *r...@thoughtbyte.com
* or *973-512-7444*.



1.Qlikview Developer

2.QA Consultant

3.Ruby on Rails Consultant

4.ServiceNow Consultant

5.Salesforce Developer

6.UI Developer

7.ODI Developer

8. Splunk Developer



 Appreciate if you could have me in your mailing list *r...@thoughtbyte.com*
 for further opportunities.



*Thought Byte Inc | An E-Verified Firm*

973-512-7444 | r...@thoughtbyte.com

1135 Clifton Ave, Suite # 207 | Clifton, NJ 07013

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


[android-developers] Tile overlays to show weather conditions

2016-08-01 Thread Sandip Jadhav
Hello All,

Please check link below

http://stackoverflow.com/questions/36748804/how-to-add-tiles-to-google-map-and-animating-them-i-e-replacing-them-wiith-new-t

Any help, guidance will be appreciated


Thank You
Sandip Jadhav  

-- 
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/8167ea2d-ae32-4859-ac9e-e7311cb70117%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Android Chrome Intent callback

2016-08-01 Thread Azad Daza
Hi everyone,

I am currently working on a task related to Intents with Chrome 
 in which I have 
to launch and send data to my app when clicking the intent-based URI. This 
part is successfully done. Next, after completing some operations, I need 
to return back (with data) to the previous Chrome tab without refreshing/ 
changing the page state/session. I used INTENT.ACTION_VIEW with 
BROWSER.EXTRA_APPLICATION_ID to return to the previous tab and carry the 
data by appending the URL parameter (Eg : www.abc.com?data1=abc=123 
). The result I got was it did 
return back to the previous tab but the page was refreshed as well. Is 
there a way or method to return back to the previous tab with data without 
refreshing the page? Or maybe I need to use Javascript to handle this?

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


[android-developers] Re: Sending GPS coordinates to a server

2016-08-01 Thread Neeraj Upadhyay


On Thursday, March 22, 2012 at 11:34:14 AM UTC+5:30, bhuvan wrote:
>
> Hi Iam doing a project on vehicle tracking , For which i have chosen 
> the cheapest method of tracking, that is by using an android mobile 
> with an application which could send the coordinates of the locations 
> to a server, from there i could access the coordinates and overlay 
> them on a map . So what i need is how to build an application which 
> could use the gps receiver in the mobile for the coordinates and send 
> it directly through GPRS to a server which can be accessed from 
> anywhere through internet. Iam very much new to android developing, so 
> i was hoping whether anyone could help me in this regard 
>

-- 
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/de1ad258-0691-4055-9081-009c68a034ef%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Instant Apps - Deployment Alternative

2016-08-01 Thread David Abes
Good day,

After much searching, I cannot find conclusive info regarding Android 
Instant App's
dependency on play services and the play store.

Judging by the FAQ: 
https://developer.android.com/topic/instant-apps/faqs.html
to make use of an instant app, we must publish the app through google 
developer console.

Does this mean we cannot "roll our own" Instant App's and have the APK's 
hosted on a resource we own 
but providing a similar feature? 

Kind of how we can create and publish our own APK's on a site we run, as 
opposed to publishing them through the play store.

Kindly thanks,
Dave

-- 
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/648e7822-6394-470d-883d-60942720b911%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: How to allow click item during notifyDataSetChanged() in adapter

2016-08-01 Thread Cagdas Caglak
Maybe there is a problem with your design logic. Because, you can not block 
UI, what ever you do. Can you share code snippet for more clear?

31 Temmuz 2016 Pazar 21:24:28 UTC+3 tarihinde Yaroslav Pronin yazdı:
>
> I use adapter in RecyclerView. Each item contains a ProgressBar. Since 
> progress speed is sometimes very high, a fragment permanently call 
> notifyDataSetChanged(), which initiates update adapter. But there is one 
> unpleasant feature: at this time ViewHolder doesn't respond to a click and 
> user can't open the item, while progress speed will not decrease. Is it 
> possible to solve this problem?
>

-- 
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/2a98430a-84e7-42be-84d6-31859b964e3e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Regarding APIs

2016-08-01 Thread Seshail Kamanna
Hi,

I am planning development of a mobile application using API. I wanted to 
know the following

1. What are the set up and the other charges which company would charge
2. What are the different user indicators that I can expect
3. Please help me with current market share of with respect to other 
players.

Thanks

-- 
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/7cbdb09d-db65-4192-b183-d0496d7aaf32%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Game Service error (4800000)

2016-08-01 Thread TakeNewGames
I am having the same error

пятница, 20 мая 2016 г., 2:12:15 UTC+3 пользователь MEGA Development 
написал:
>
>
> whenever I try to create a new service and arrive at the " SET THE GOOGLE 
> PLAY SERVICES TO PLAY AN APP " appears the error (480) 
>
> someone 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/fc772cb6-0efa-42ea-b157-e60cbbff30e7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] google play search clarification

2016-08-01 Thread lorenzo sfarra
Hi,

first this is the problem:
 - 1.0) I look for my app name in the google play search bar (desktop, 
mobile...doesn't matter)
 - 1.1) I have two results: my app, and the app of a competitor
 - 2.0) I look for the competitor's app name in the google play search bar 
(desktop, mobile...doesn't matter)
 - 2.1) My app does NOT appear in the results

They don't have my app name in title, short or long description.
It could be the case that in a different language description they have 
PART of the name (for example, our app name can be applebananakiwi and they 
can have "apple" in the description).
They have more downloads than us, but the rating is lower.

If I click their app, I can see our app as the first result of "Similar", 
and the opposite happens, too.

For what I know, the  in the Manifest is only for internal usage 
and does not count in these kind of researches.

Can you please help me to clarify the situation?

Thanks in advance,
  Lorenzo

-- 
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/36b5529f-a518-41f7-a832-9dcf9a1f5f67%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] legal or illegal ? gapps

2016-08-01 Thread Truc Machin
Hello, to make it short, Xiaomi sell phones with Gapps in some countries 
such as india etc, but BASIC FEATURES of android such as SMARTLOCK are not 
working on miui because it's a fork coded with the feets.

it's legal ? they don't have to respect a contract with google when they 
sell phones with gapps ?!

thanks

-- 
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/640330fb-6068-44f6-ba89-c8d20a2bd047%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: root video players audio from one android phone to another

2016-08-01 Thread Emamuddin Shah
Please help with any app to root audio using bluetooth/wifi

On Monday, August 1, 2016 at 12:41:30 PM UTC+5:30, Emamuddin Shah wrote:
>
> Hello Guys,
>
> in my android but while watching movies it is uncomfortable to use wired 
> headphones for long.
> i want to root one android phones audio to another so that one phone i can 
> use as reciever and connect headphone to it.
>
> thanks.
>
>

-- 
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/221ef402-34bd-4903-bee2-bb30b21dc0ea%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] What is the size limit for the SharedPreferences in Android ?

2016-08-01 Thread praveen singh
Please let me know what is the size limit for the SHaredPreferences in 
android?

-- 
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/75792618-0d4d-4de1-b222-2e283921c90a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Android 4.4+ PrintServices

2016-08-01 Thread Unknown Unknown
How to get list of available printers using Android 4.4+ printing API? If I 
should use PrinterDiscoverySession class, how to get the session objects 
for all installed PrintServices?
Also How I can print to a specific printer without showing up the print 
dialog?

-- 
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/41aca23f-05bf-450d-83f3-6d783692e077%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] EXCELLENT HOT LIST: || JAVA || SERVICE NOW || ORACLE CC || QLIKVIEW || ORACLE PL/SQL || JAVA J2EE/UI || DevOps || .NET || SALESFORCE || QA/SELENIUM|

2016-08-01 Thread madasu . stafforange


 

 


 

Hi Partner!!!

 

I am *Madasu* from* Riyantech Software Solutions Inc *, Hope you are doing 
great today...

 

Please find the updated *HOT LIST *of my consultants.

Below is the list of Available Candidates for your requirements. Let me 
know if you have any requirements that match my list of available 
candidates and their criteria given below.

You can Contact me: *302-650-1666 or **mad...@riyantech.com* 


 

 

*Candidate*

*Skills*

*Visa*

*Location*

*Relocation*

*Ramulu*

Java

H1-B

NJ

Open

*Singam*

Service Now

H1-B

TX

Open

*Harish*

Java

H1-B

FL

Open

*Pravalik*

OraclePLSQL

H1-B

CA

Open

*Piyush*

Java/J2ee/UI

H1-B

NY

Open

*Jeswanth*

Oracle CC

H1-B

OR

Open

*Raviteja*

Java/J2ee-UI

H1-B

NJ

Open

*Chaitanya*

.Net

H1-B

OH

Open

*Reddy*

DevOps

H1-B

OR

Open

*Pailla*

Qlikview

H1-B

OR

Open

*Harish*

QA/Selenium

H1-B

MA

Open

*Hema*

Salesforce

H1-B

TX

Open

*Mahender*

Java/J2ee-UI

H1-B

CA

Open

 

 

I would highly appreciate if you can add me (*mad...@riyantech.com*) in 
your daily requirement mailing list and keep me posted with your daily 
requirements. 
  

*Thanks & Regards,*

 

*Madasu* | 

*Riyantech Software Solutions Inc**.*

Board:  (302)-650-1666 | Mobile: (302)-357-9938 | Fax: 972-521-8020 *|* 
*mad...@riyantech.com* 

*Corporate Office: 38731 Fremont Blvd Fremont, CA -94536*

Information Technology, Engineering Services, Outsourcing and Innovation| 
www.riyantech.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/ddc25b70-3ad4-4747-b3e7-f9e80f6ad65d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] root video players audio from one android phone to another

2016-08-01 Thread Emamuddin Shah
Hello Guys,

in my android but while watching movies it is uncomfortable to use wired 
headphones for long.
i want to root one android phones audio to another so that one phone i can 
use as reciever and connect headphone to it.

thanks.

-- 
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/88c716f6-fe84-4708-92f0-3ff87d377723%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Game Service error (4800000)

2016-08-01 Thread Mrinmoy Bhadra
 I am having the same error... Pls Help

On Friday, May 20, 2016 at 4:42:15 AM UTC+5:30, MEGA Development wrote:
>
>
> whenever I try to create a new service and arrive at the " SET THE GOOGLE 
> PLAY SERVICES TO PLAY AN APP " appears the error (480) 
>
> someone 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/79bdcc31-3887-4124-9f20-6cd1689db585%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.