[android-developers] Re: Windows driver for HTC G1 phone

2008-11-05 Thread B

I was confused because at first Windows saw the device, then today it
didn't, but then I realized I changed some things in my phone.
Go to Settings
Then Select SD card
Then select Use for USB storage

Once I did that, the computer immediately saw my phone.
I didn't have to download anything.

On Nov 4, 2:05 pm, Carpe Noctem <[EMAIL PROTECTED]> wrote:
> The above thread worked and solutions found therein worked great for
> me! Thanks for the resolution!!
>
> On Oct 31, 3:17 pm, strazzere <[EMAIL PROTECTED]> wrote:
>
> > The SDCard should work without any drivers (though mine does not work
> > on windowsxp)
>
> > Debugging *should* work with the driver provided higher up in this
> > post.
>
> > I seem to be able to work perfect both sdcard mass storage and
> > debugging from my linux box.
>
> > On Oct 31, 4:45 am, ReyStevE167 <[EMAIL PROTECTED]> wrote:
>
> > > mines only say thats i need a disc
>
> > > im not really into all those complicated situations where
>
> > > u have to put in codes and such i jus want my G1 phone to be installed
> > > on my laptop
>
> > > anybody helpp plzz anybody know of a CD !?
>
> > > On Oct 30, 3:03 pm, strazzere <[EMAIL PROTECTED]> wrote:
>
> > > > I get the same issue...
>
> > > > Following instructions here;
>
> > > >http://code.google.com/android/intro/develop-and-debug.html#developin...
>
> > > > But the device stays as a "Unrecognized usb device", anyone figure
> > > > this one out?
>
> > > > On Oct 23, 7:46 pm, Jonathan Herriott <[EMAIL PROTECTED]> wrote:
>
> > > > > Hi,
>
> > > > > The "Found New Hardware Wizard" is unable to detect the drivers after
> > > > > I already specified exactly which directory to look.  Has anyone else
> > > > > run into these issues?
>
> > > > > Thanks
>
> > > > > On Oct 22, 1:32 am, Beau Gunderson <[EMAIL PROTECTED]> wrote:
>
> > > > > > Here's the link from the other thread on this topic:
>
> > > > > >http://dl.google.com/android/android_usb_windows.zip
>
> > > > > > Beau
>
> > > > > > On Oct 17, 11:13 am, RonS <[EMAIL PROTECTED]> wrote:
>
> > > > > > > Any idea where can I get the USB driver so that adb will see the 
> > > > > > > G1?
>
> > > > > > > RonS- Hide quoted text -
>
> > - Show quoted text -

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



[android-developers] Retrieving the saved state of the Custom View in the constructor.

2009-10-12 Thread B++

The "View" instance currently provides a way to retrieve the saved
state using the methods below, but there doesn't seem a way to
retrieve the view's saved state in the constructor, or
onFinishInflate. The custom view is constructed via XML, so I cannot
pass the saved bundle from the Activity to the View's constructor.

Relevant methods:
- protected Parcelable onSaveInstanceState()  and
- protected void onRestoreInstanceState(Parcelable state)

I need this because I make an asynchronous network request in a custom
view constructor, and if there is a configuration (orientation)
change, the custom view is getting reconstructed, and the request is
getting performed again. I want to intercept the second request in the
constructor. I can do this in the onRestoreInstanceState, but I need
to handle this in the constructor.

It would be nice if there was a method such as getSavedState so that
the decision can be made in a constructor or onFinishInflate instead
of waiting for the onRestoreInstanceState trigger.

Any idea?

Thanks

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



[android-developers] Re: Retrieving the saved state of the Custom View in the constructor.

2009-10-12 Thread B++

I understand that making a network request inside the view is not
recommended, but I need to treat the Custom View as a widget which
hides the implementation details. I want to handle everything (even
the configuration changes) in the view itself.

Thanks

B.

On Oct 12, 4:08 pm, Mark Murphy  wrote:
> B++ wrote:
> > The "View" instance currently provides a way to retrieve the saved
> > state using the methods below, but there doesn't seem a way to
> > retrieve the view's saved state in the constructor, or
> > onFinishInflate. The custom view is constructed via XML, so I cannot
> > pass the saved bundle from the Activity to the View's constructor.
>
> > Relevant methods:
> > - protected Parcelable onSaveInstanceState()  and
> > - protected void onRestoreInstanceState(Parcelable state)
>
> > I need this because I make an asynchronous network request in a custom
> > view constructor
>
> Ick.
>
> > and if there is a configuration (orientation)
> > change, the custom view is getting reconstructed, and the request is
> > getting performed again. I want to intercept the second request in the
> > constructor. I can do this in the onRestoreInstanceState, but I need
> > to handle this in the constructor.
>
> > It would be nice if there was a method such as getSavedState so that
> > the decision can be made in a constructor or onFinishInflate instead
> > of waiting for the onRestoreInstanceState trigger.
>
> > Any idea?
>
> Don't do an asynchronous network request from a View. I realize that
> Android isn't necessarily the ideal MVC platform, but I really recommend
> you separate your concerns more than that.
>
> --
> Mark Murphy (a Commons 
> Guy)http://commonsware.com|http://twitter.com/commonsguy
>
> _Android Programming Tutorials_ Version 1.0 Available!
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Stopping Content Provider

2009-10-21 Thread B++

The Content Provider starts when the first applicable URI is resolved.
This will make the ContentProvider run forever and there doesn't seem
to be a way to stop it (such as due to inactivity etc).  It would be
nice if Content Provider would stop after some time so that  the
memory usage is reduced (An enclosing process, doesn't need to be
alive if the Content Provider is not needed anymore).

Any idea?


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



[android-developers] Re: Stopping Content Provider

2009-10-27 Thread B++

That's all I need to know - that the stopping of the Content Provider
cannot be controlled by the user.

Thanks Dianne.

On Oct 22, 11:02 am, Dianne Hackborn  wrote:
> The content provider needs to be running the entire time its hosting process
> is running.  There is no way around this.  Otherwise, there are all kinds of
> deadlocks that can happen due to the fact that interaction with a content
> provider is synchronous.
> I don't really understand the second part of your question.  Processes are
> killed when they are not needed and their memory is needed elsewhere.  If
> process has a content provider running in it, but no other processes are
> using that provider, then the process is not needed and will not be kept
> around.
>
> On Wed, Oct 21, 2009 at 5:26 PM, B++  wrote:
>
> > The Content Provider starts when the first applicable URI is resolved.
> > This will make the ContentProvider run forever and there doesn't seem
> > to be a way to stop it (such as due to inactivity etc).  It would be
> > nice if Content Provider would stop after some time so that  the
> > memory usage is reduced (An enclosing process, doesn't need to be
> > alive if the Content Provider is not needed anymore).
>
> > Any idea?
>
> --
> Dianne Hackborn
> Android framework engineer
> hack...@android.com
>
> Note: please don't send private questions to me, as I don't have time to
> provide private support, and so won't reply to such e-mails.  All such
> questions should be posted on public forums, where I and others can see and
> answer them.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] ClassLoader leaking memory?

2009-12-17 Thread B++
I have a ClassLoader in Activity's onCreate which loads a specific
class from a library, and is working fine, except that when activity
is destroyed, the memory resources about the loaded class are not
released.

If the same activity gets created multiple times very quickly (by
launching it, and destroying it by pressing the Back button), and the
process doesn't happen to be killed by Android yet, the memory usage
of the corresponding process grows continuously until the app crashes,
and process dies.

The problem is that this happens even if no objects are instantiated
using the loaded class. There seems a problem with garbage collector,
which doesn't seem to release resources about the loaded class on
Destroy even if there are no references to it.

If android would have killed the process right away when the last
activity of the process gets finished, there wouldn't be a problem,
but this is managed by Android system, and it doesn't always kill the
process right away. A workaround may be to kill the process explicitly
on destroy, but this is not encouraged way to do, as Android is
supposed to manage the process.

An alternative is to have a functionality that allows a class to be
unloaded onDestroy, but this doesn't exist. By design, the garbage
collector is supposed to take care of this.

Is there a solution regarding this?

Thanks,

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


[android-developers] Re: ClassLoader leaking memory?

2009-12-17 Thread B++
Thanks for the response.

I have already run it using hprof and mat, and located the issue, and
the problem lies in here:
onCreate(..) {
...
PathClassLoader classLoader =  new PathClassLoader("/path/to/apk.apk",
getClassLoader());
classLoader.loadClass("path.to.class");
classLoader = null;
}


Only these three lines will cause a "leak" if you keep on creating
this activity and destroying it with the back button.
The class is getting loaded successfully, but the resources are never
released. As you can see, I set the reference of the classLoader to
null, and I never instantiate any object using the loaded class, but
the problem still persists.

I have isolated the code as above, and you can clearly see that the
memory is growing.

Can the getClassLoader() reference create a problem here?

Thanks

B.


On Dec 17, 2:57 pm, fadden  wrote:
> On Dec 17, 7:45 am, "B++"  wrote:
>
> > The problem is that this happens even if no objects are instantiated
> > using the loaded class. There seems a problem with garbage collector,
> > which doesn't seem to release resources about the loaded class on
> > Destroy even if there are no references to it.
>
> It usually turns out that something is holding a reference to whatever
> it is that isn't getting thrown away.  The best way to figure this out
> is to get the HPROF output and run it through jhat or MAT.
>
> See also:
>  http://android-developers.blogspot.com/2009/01/avoiding-memory-leaks
>  http://android.git.kernel.org/?p=platform/dalvik.git;a=blob_plain;f=d...
>  http://kohlerm.blogspot.com/

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


[android-developers] Re: ClassLoader leaking memory?

2009-12-17 Thread B++
After some further analysis, it seems that the problem lies on the
DexFile. The PathClassLoader internally invokes the DexFile which
apparently unzips the package to retrieve the class. However, these
resources don't seem to be released.

B.

On Dec 17, 3:45 pm, "B++"  wrote:
> Thanks for the response.
>
> I have already run it using hprof and mat, and located the issue, and
> the problem lies in here:
> onCreate(..) {
> ...
> PathClassLoader classLoader =  new PathClassLoader("/path/to/apk.apk",
> getClassLoader());
> classLoader.loadClass("path.to.class");
> classLoader = null;
>
> }
>
> Only these three lines will cause a "leak" if you keep on creating
> this activity and destroying it with the back button.
> The class is getting loaded successfully, but the resources are never
> released. As you can see, I set the reference of the classLoader to
> null, and I never instantiate any object using the loaded class, but
> the problem still persists.
>
> I have isolated the code as above, and you can clearly see that the
> memory is growing.
>
> Can the getClassLoader() reference create a problem here?
>
> Thanks
>
> B.
>
> On Dec 17, 2:57 pm, fadden  wrote:
>
> > On Dec 17, 7:45 am, "B++"  wrote:
>
> > > The problem is that this happens even if no objects are instantiated
> > > using the loaded class. There seems a problem with garbage collector,
> > > which doesn't seem to release resources about the loaded class on
> > > Destroy even if there are no references to it.
>
> > It usually turns out that something is holding a reference to whatever
> > it is that isn't getting thrown away.  The best way to figure this out
> > is to get the HPROF output and run it through jhat or MAT.
>
> > See also:
> >  http://android-developers.blogspot.com/2009/01/avoiding-memory-leaks
> >  http://android.git.kernel.org/?p=platform/dalvik.git;a=blob_plain;f=d...
> >  http://kohlerm.blogspot.com/

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


[android-developers] Re: ClassLoader leaking memory?

2009-12-18 Thread B++
After some further analysis, I noticed that memory resources are
released if the loaded class belongs to the same apk as the app. The
problem seems to be apparent if a loaded class belongs to a different
apk. It looks like the resources about the class extraction are not
getting released properly.

fadden, I create a new class loader onCreate(), so that I will always
ensure that a new apk is loaded everytime the app is launched.
Ideally, I would like to clean these resources onDestroy, but
supposedly, this should be handled by gc.

By the way, the loaded apk represents a plugin (A simple class, and
some plugin specific resources), and onCreate, I need to check if
plugin has changed, but this is not possible without loading the class
from the apk first :)











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


[android-developers] POS App in Android

2011-03-30 Thread B
I was curious to know how this POS App Pocket Verifier by Merchant
Anywhere works in Android. If I want to develop an app that does
scanning a bar code, swiping a credit/debit card, printing the
receipt, is there a supporting hardware with API for Android app
development like iAPS for iPhone/iPad. I know Android devices come in
different sizes and Bluetooth/WiFi is the option like Merchant
Anywhere has. Any help is appreciated. Thanks in advance.

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


[android-developers] ADEPT HOTLIST

2017-01-16 Thread pramod b


Dear Recruiter,
Hope you are doing good...!


We have some good consultants on our payrolls. I appreciate if you can let 
me know any *Contract opportunities (C2C).*

I would provide you the best ideal match for your requirements. Please add 
me in your mailing list for your future requirements at 
*pra...@adeptconsultants.com 
** // **pramodsales...@gmail.com 
 *


Contact no:- *214.446.5855 x 117**.*





-- 
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/f64f68d8-8a0d-4d14-9bbd-38cb5f6f0a33%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Available Consultants List

2017-01-18 Thread kishore b
Dear Associates,



I am Kishore from Ezenius, I have consultant with good skills and knowledge
on my bench.



 Please Let me know if you have any sort of suitable requirements to my
consultants.



Feel free to contact me for any open position to my consultants.



Contact: 410-774-4111 Mail: kba...@ezenius.com



*Sno*

*Consultant*

*Name*



*Technology*

*Experience*

*Location*

*Relocation*

*1*

Hyder



MS Dynamics

10+yrs

MD

Open

*2*

John



Hadoop Developer

6+yrs

MD

Open

*3*

Ram



Business Analyst

7+yrs

MD

Open

*4*

Vishwas



UI Developer

5+yrs

MD

Open



Looking forward to hear from you and work with you soon !

Thank you

Thanks & Regards



*Kishore* *|* EZENIUS, INC

Sales Recruiter

Contact:  *703-463-9491*

*Fax: *888-902-772

*Email :*kba...@ezenius.com

*GTalk:* kbandirecruiter

*Skype:* kbandirecruiter

www.ezenius.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/CAJhOCx-z4GnHdu5C1Xfypvacu_MzvL99HhLi4%3D1bsv646fybEQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Stolen/Replicated application was associated to my account

2017-01-30 Thread Alin B.
Hi everyone,

My story begins(at least from what I know) in November 2016 when I first 
saw a strange thing in my Google Analytics dashboards. The strange thing 
was that I was having sessions and users from an application version which 
I have never published on Google Play. After a few investigation I found 
the cool dimension called "Engagement->App ID" in Google Analytics which 
allowed me to look at the data from the App ID perspective. 

To my surprise I noticed that there were 2 App ID's which were not familiar 
to me. My next step was to take this id's and search for them on Google 
Play. With not much effort I found the applications and realized that these 
2 developers have copied/stole and replicated my application on their 
account (one of them didn't even took the effort to make new screenshots 
and description for the application).

At that point I have submitted a removal request for both copies and 
concluded that they copied the application and somehow forgot to replace 
the Google Analytics code( that was my luck :) ). With the support from 
Google a few days later both applications were removed from the 
store(accounts for both developers remained active).

Although my problem was solved I remained concerned that my Google Play or 
Google Admob account might get associated/linked with the accounts of these 
developers or other developers that will continue to try to steal and 
replicate my applications. 
Unfortunately this morning my concerns became quite real when I got an 
email from Admob stating that ad serving was disabled for my application. 
When I got to read the email in detail I quickly noticed that the app id 
for which the ads were disabled is not mine, but instead the app id of 
another developer that stole and replicated my application. The conclusion 
was that this developer not only forgot to change the Google Analytics code 
but actually forgot to also change the Admob app id. The ad serving for 
that application was disabled because of his Google Play account 
termination due to some policy violations.

My fear now is that also my Google Play account might get associated with 
this kind of developers considering that the accounts of the first 2 
developers that I have mentioned are still active and they still publish 
applications that are stolen from other developers.

My actions so far: Wrote emails to both Admob and Google Play. At this 
point I am waiting for their response.

With that being said, I was wondering if anyone else was in a situation 
similar to this, or if anyone has any suggestion on what I should do next. 
Any ideas are well appreciated.

Sorry for the long post but I considered that some other developers might 
learn something from my experience, even how to use Google Analytics for 
theft prevention(unfortunately, the ones that are stealing the work of 
others will also see this post) :).

Best regards,
Alin

-- 
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/597bfb97-1b92-4227-bce6-9d98d44ba011%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Detect if bluetooth device has been powered off

2017-02-06 Thread Markus B.
Hi all,

I have to connect my app to a mobile zebra printer. Print via bluetooth 
works fine.
The bt-connection will be established directly with the mac address of the 
bluetooth printer:



minSdkVersion 16
targetSdkVersion 24

public class BluetoothConnection{

private BluetoothAdapter btAdapter = null;
private BluetoothSocket btSocket = null;
private OutputStream outStream = null;
private Context context = null;

// SPP UUID service
private static final UUID MY_UUID = UUID.fromString(
"1101--1000-8000-00805F9B34FB");


public BluetoothConnection(String pAddress, Context pContext){
this.address= pAddress;
btAdapter = BluetoothAdapter.getDefaultAdapter();
this.context = pContext;
checkBTState();
}


private BluetoothSocket createBluetoothSocket(BluetoothDevice device) 
throws IOException {
if(Build.VERSION.SDK_INT >= 10){
try {
final Method  m = device.getClass().getMethod(
"createInsecureRfcommSocketToServiceRecord", new Class[] { UUID.class });
return (BluetoothSocket) m.invoke(device, MY_UUID);
} catch (Exception e) {
}
}
return  device.createRfcommSocketToServiceRecord(MY_UUID);
}

public boolean connect() {

boolean retVal = true;
if (btAdapter == null){
return false;
}

// Set up a pointer to the remote node using it's address.
BluetoothDevice device = btAdapter.getRemoteDevice(address);

try {
btSocket = createBluetoothSocket(device);
retVal = true;
} catch (IOException e1) {
   retVal = false;
}

// Discovery is resource intensive.  Make sure it isn't going on
// when you attempt to connect and pass your message.
btAdapter.cancelDiscovery();

// Establish the connection.  This will block until it connects.
try {
btSocket.connect();
} catch (IOException e) {
try {
btSocket.close();
retVal = true;
} catch (IOException e2) {
retVal = false;
}
}


try {
outStream = btSocket.getOutputStream();
retVal = true;
} catch (IOException e) {
retVal = false;
}

return true;
}


 .




The printing works fine now. I keep the bluetooth connection alive when the 
app runs, because establishing the connection costs 4 - 6 seconds. This 
works fine.
My problem is, I cannot detect if the printer is powered off.

I want to check before each print job if the bluetooth connection to the 
printer still exists & works. btSocket.isConnected() always returns true 
(even if the printer is powered off). I can send data to the outstream with 
write() without getting an IOException.

I tried to use a BroadcastReceiver too. Unfortunatly 
ACTION_ACL_DISCONNECTED is raised when the printer is powered on, not when 
it is powered off. ACTION_ACL_DISCONNECT_REQUESTED is never raised.

registerReceiver(mReceiver, new IntentFilter(BluetoothDevice.
ACTION_ACL_DISCONNECTED));
registerReceiver(mReceiver, new IntentFilter(BluetoothDevice.
ACTION_ACL_DISCONNECT_REQUESTED));

private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
BluetoothDevice device = intent.getParcelableExtra(
BluetoothDevice.EXTRA_DEVICE);

if (BluetoothDevice.ACTION_FOUND.equals(action)) {
Logger.d("Device found");
}
else if (BluetoothDevice.ACTION_ACL_CONNECTED.equals(action)) {
Logger.d("Device is now connected");
}
else if (BluetoothAdapter.ACTION_DISCOVERY_FINISHED.equals(
action)) {
Logger.d("Done searching");
}
else if (BluetoothDevice.ACTION_ACL_DISCONNECT_REQUESTED.equals(
action)) {
Logger.d("Device is about to disconnect");
}
else if (BluetoothDevice.ACTION_ACL_DISCONNECTED.equals(action)) 
{
Logger.d("Device has disconnected");
}
}
};





What can I do to detect if the bluetooth connection exists and works?


-- 
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/7000b843-2574-4cbf-ae74-2bf9aa15796e%40googlegroups.com.
For more options, vis

[android-developers] Re: Required: Workday Integration/Security Analyst at Tempe, AZ (Local And Face to Face).

2017-02-07 Thread B SH
Hi,

Is this position still open.

Harish 
ArKrit llc
510.766.9075
har...@arkrit.com

On Tuesday, January 31, 2017 at 7:23:07 AM UTC-8, Praveen Tiwari wrote:
>
> Hi,
>
> I have an urgent requirement mentioned below. If you find yourself 
> comfortable with the requirement please reply back with your updated resume 
> and I will get back to you or I would really appreciate if you can give me 
> a call back at my contact number.
>
>  
>
> *Position: **Workday Integration/Security Analyst*
>
>  *Location: **Tempe, AZ (Local And Face to Face)*
>
>  *Duration: Long Term Contract*
>
>  
>
>  
>
>  
>
> *Required Skills:*
>
> .NET,AID
>
>  
>
> *Job Description: *
>
>  
>
> Needs to know how to integrate WorkDay and PeopleSoft. Needs to know 
> PeopleSoft / Oracle tables and be strong in SQL. Needs to know where the 
> data interaction is between PeopleSoft and Workday. Must know how to work 
> with tables to do this . Must know querying and be strong in SQL. Must know 
> either workday or PeopleSoft. We would rather know the workday side because 
> we have less of that in house. Will create queries and job packages - 
> identity management - salesforce exports. really good database experience 
> will be needed to interact on the DB side. Experience with Oracle People 
> Tools would be nice and working with application engines.
>
>  
>
> *Minimum Qualifications*
>
>  
>
> Bachelor's degree in Information Technology or related field AND four (4) 
> years experience providing information technology services; OR, Eight (8) 
> years experience providing related information technology services.
>
>  
>
> Desired Qualifications*
>
>  
>
>- Experience in Workday Security 
>- Experience in Workday integrations 
>- Experience in Workday Workflow processes: 
>- Experience in identity management 
>- Experience implementing identity management security solutions 
>- Experience in analyzing different solutions and recommending a 
>course of action 
>- Experience in gathering, documenting and implementing requirements 
>of a business process with technology 
>
>  
>
>  
>
>  
>
>  
>
> *Regards,*
>
>  
>
> *Praveen Tiwari*
>
> Senior Technical Recruiter
>
> *Sage Group*
>
> *W:*+ 732-767-0010 x  113 |Direct: 732-851-1637 | *F:* 732-749-8969 | *Email: 
>  
> *ptiw...@sagetl.com  
>
> *Gtalk/yahoo/Skype: praveentj101*
>
> [image: SageLogoC] [image: 
> cid:image004.jpg@01D26D7E.63B9BEF0]
>
> This message contains information that may be privileged or confidential 
> and is the property of Sage Group. It is intended only for the person to 
> whom it is addressed. If you are not the intended recipient, you are not 
> authorized to read, print, retain copy, disseminate, distribute, or use 
> this message or any part thereof. If you receive this message in error, 
> please notify the sender immediately and delete all copies of this message. 
> Sage Group does not accept any liability for virus infected mails.
>
>
>
>

-- 
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/060bbaa7-a1a8-4af4-b206-fc31e2c1721f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Urgent Need: Workday Functional Consultant @ Pleasanton, CA | Contract Position

2017-02-07 Thread B SH
Hello *Ateeq,*


*Is this position is still open. We do have consultant with similar 
expereince.*Best Regards,
Harish Bevara
Director, Client Engagement
*ArKrit LLC* 
1671 Dell Ave, Campbell, CA - 95008| M: +1 (510)766 - 9075 
<(510)%20766-9075> | har...@arkrit.com | www.arkrit.com | skype: 
pryncbevara | LinkedIn 

On Monday, December 5, 2016 at 12:29:10 PM UTC-8, Ateeq Rehman wrote:
>
> *Hi Associate,*
>
> Greetings of the day !
>
> This is Ateeq, from Diverse Lynx.
>
>  
>
> *Please share resume for Workday Functional Consultant at 
> **ateeq@diverselynx.com 
> *
>
>
> *Job Description*
>
>  
>
> *Role: Workday Functional Consultant*
>
> *Location: Pleasanton, CA*
>
> *Hiring: Contract*
>
>
> *Job Details:*
>
>  
>
> · *5+ Years’ experience as Workday Functional consultant*
>
> · Suggest and design product configuration approaches.
>
> · Convert data from source systems into Workday.
>
> · Configure product to meet business requirements and design 
> specifications.
>
> · Test, deliver and support configured product.
>
> · Facilitate knowledge transfer and educate clients on operating 
> a SaaS solution.
>
> · Document requirements, business processes, application 
> configurations, testing plans and other artifacts to ensure shared 
> understanding and facilitate knowledge transfer.
>
> · Track issues and risks, communicate status and escalate 
> concerns to project management.
>
> · Help shape Aggressor’s future by getting involved in 
> recruiting, team building, methodology improvement, and developing internal 
> tools.
>
>  
>
>  
>
> *Qualifications:*
>
>  
>
> · Workday Core Configuration experienced
>
> · Workday Comp Configuration experienced
>
> · Workday Security experienced
>
> · Workday Reporting experienced
>
> · Workday – SaaS release management & Testing experienced
>
>  
>
>  
>
>  
>
> *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/dbf97f75-805c-46cd-b3d0-ac959882b409%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Urgent Three Positions::: Pega LSA Consultant::::Java developer with DevOps:::Workday HRMS with Infosys

2017-02-07 Thread B SH
*Hello Naseer,*

*For Workday position - *

*Is this position is still open. We do have consultant with similar 
experience.*Best Regards,
Harish Bevara
Director, Client Engagement
*ArKrit LLC* 
1671 Dell Ave, Campbell, CA - 95008| M: +1 (510)766 - 9075 
<(510)%20766-9075> | har...@arkrit.com | www.arkrit.com | skype: 
pryncbevara | LinkedIn 

On Tuesday, December 13, 2016 at 12:06:59 PM UTC-8, SALMA BHAT wrote:
>
> Hi Partners,
>
> Please connect with me if you have 90% matching  at 
>
> *Naseer Bhat*
>
> Desk : 609-853-0818 Ext: 2184
>
> naseer...@nityo.com 
>
>
>
>
> Position: Workday HCM
>
> Work Location & Address* 12301 Research Blvd, Austin, TX 78759, USA
>
> Contract duration (in months)* 6 months (To start with. Will be extended 
> further)
>
> Target Start Date* 19 Dec 2016
>
>  
>
>  
>
> Job Details:
>
>  
>
> Must Have Skills (Top 3 technical skills only)*
>
> 1. Workday
>
> 2. HRMS
>
> 3. Testing
>
>  
>
> Nice to have skills (Top 2 only)
>
> 1. Automation
>
> 2.Other ERP tools
>
>  
>
> Desired years of experience* : 5+
>
>  
>
> Education/ Certifications (Required) : BE
>
>  
>
> Top 3 responsibilities you would expect the subcon to shoulder and 
> execute*:
>
> 1. Functional Requirement Analysis
>
> 2. Testing and Defect Management
>
> 3. Co-ordination with stakeholders
>
> _
>
>  
>
> Role: Pega LSA Consultant
>
> Location: Phoenix, AZ
>
> Duration: Long Term
>
> Interview: Phone/Skype
>
>  
>
> Job Description:
>
> Must Have Skills (Top 2 technical skills only)
> 1.PEGA 7 CSSA
> 2.Pega Scrum methodology
>
> Nice to have skills (Top 2 only)
> 1.
> Pega DCO
>
> Desired years of experience : > 5 years
>
>
> Top 3 responsibilities you would expect the subcon to shoulder and execute:
> 1.Lead the Development team during Inception, Elaboration, development 
> phases for Design, Development, and Technical support.
> 2.Code review of both agile teams
> 3.Guidance to the team on any technical issues
> 4.Support deployments during FPR
> 5.Support Pega Architect in defining Technical Architecture
> 6.Support during Go Live and deployment activities
>
>  
>
> Position: Java developer
>
> Location :  Minneapolis ,MN
>
> Duration: Log term
>
>  
>
> Must have : Java 8, Spring, Rabbit MQ, MongoDB, Elastic
>
>  
>
> Good to have : Kafka, Restful API and SQL
>
>  
>
>  
>
>
>

-- 
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/f8b32fbd-ffad-488a-97eb-53e9cc3fef81%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Adept hotlist

2017-02-14 Thread pramod b
*Dear All,* 
*Greetings from ADEPT CONSULTANTS ! ! *

Please find the list of available consultants for your direct client 
requirements for Corp to Corp-(C2C).  Add my mail id : 
*pra...@adeptconsultants.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/a2253b8e-6dbd-4097-81ae-d1ab26753463%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Looking for java Developer at Dallas, TX

2019-07-20 Thread Prathap B
Please find the attached resume.

On Sat 20 Jul, 2019, 2:27 AM Sudhakar Reddy, <
sudhakarreddy.recrui...@gmail.com> wrote:

> Hi,
>
> Hope you are doing great,
> Myself,* Sudhakar* from R2 Technologies, We have a requirement for *java
> Developer *at *Dallas, TX*. 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 *470-242-7345 Ex-304*, Drop the suitable profiles on
> *sudha...@r2techcorp.com* .
>
>
>
>
>
> *Position: java Developer *
>
> *Location: Dallas, TX*
>
> *Duration: Long-term*
>
>
>
> *Job Description*
>
>- Experience in design/development of web application using
>Java/Spring/Hibernate
>- Experience on REST Web-Services with REST specification
>- Working knowledge on  JavaScript, JSON, HTML5, HTTP, SSH, Junit
>- Strong analytical and problem solving skills
>- Familiarity with Agile methodologies.
>- Excellent written and verbal communication skills
>- Ability to work in a team oriented environment
>
> *Thanks and Regards . . . .* ?
>
> *Sudhakar.Muchumari*
>
> *R2 Technologies*
>
> 6515, Shiloh Rd Unit 110,
>
> Alpharetta, GA - 30005
>
> Direct: 470-242-7404
>
> Desk: 470-242-7345*304
>
> Email: sudha...@r2techcorp.com
>
> Visit Us:*www.r2techcorp.com *
>
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/CAGxT0BRNWQGRH1xw9oRNrrrAs0J4ZO40LAv0Hjp7uErpQEB8jQ%40mail.gmail.com
> 
> .
>

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


Prathap_Badavath_Resume(1).pdf
Description: Adobe PDF document


[android-developers] Re: Sr. SAP MM Functional Analyst ||Des Moines, IA

2019-07-23 Thread dayakar B


SAP SD ONLINE TRAINING

*KITS Online Training Institute* provides best SAP SD Online Training by 
our highly professional certified trainers. SAP Sales and Distribution (SD) 
is one of the most popular primary ERP module. It Deals in better 
management of sales and customer distribution data and processes in 
organizations. It works closely with other SAP modules towards effective 
process work. We are delighted to be one of the best leading IT online 
training with best experienced IT professionals and skilled resources. We 
have been offering courses to consultants, companies so that they can meet 
all the challenges in their respective technologies and also we are 
offering other courses like SAP MM Online Training. 


 

*Please open below link for complete course content*:

 
http://www.kitsonlinetrainings.com/sap-sd-online-training.html 

·   
*Highlights of SAP SD Online training:-* 

*  Very in depth course material with *Real Time Scenarios* for each topic 
with its Solutions for SAP SD Online Trainings.

*  We Also provide* Case studies*  for SAP SD Online Training.

*  We do *Schedule* the sessions based upon your comfort by our *Highly 
Qualified Trainers *and *Real time Experts.*

*  We provide you with your recorded session for further *Reference*.

* We also provide *Normal* Track, *Fast* Track and *Weekend* Batches also 
for SAP SD Online Training.

* We also provide *Cost Effective* and* Flexible Payment Schemes**.*
 
On Friday, October 21, 2016 at 7:54:40 PM UTC+5:30, Vishal Ji Awasthi wrote:
>
> Sr. SAP Functional Analyst
>
> Location: Des Moines, IA
>
> Duration: 12 Months
>
> Interview Method: F2F Highly Preferred (checking to see if Skype works)
>
> Skill Set: Mid or Sr. SAP Functional Analyst (MM & PP)
>
>  
>
>  
>
> Requisition Number 2016-129
>
> Desired Role & Level: Mid or Sr. SAP Functional Analyst
>
>  
>
> Project Scope: Integrated Operations – Production:
>
> This area supports IT functions utilized inside the plant to condition, 
> treat, package and store seed.  This area is heavily integrated within 
> DuPont Pioneer’s SAP instance. 
>
> Project and Responsibilities: Support our Integrated Operations business 
> partners with ongoing support and maintenance of custom Production 
> transactions and processes within SAP, as well as ongoing enhancements 
> required from business process changes. In addition, we are looking for 
> this individual to aid in some Project Management activities to help keep 
> our ongoing project and support work organized in the Production space.
>
>  
>
> Skills / Experience:   
>
> • Experience in SAP MMPP and PPPI modules 
>
> • Ability to facilitate business requirements gathering from business 
> users and configure SAP MMPP/PPPI modules in IMG based on business 
> requirements.
>
> • Familiar with current SAP solutions with ability to suggest improvement 
> opportunities in business SAP system.
>
> • Ability to lead and facilitate small team meetings, discussion groups 
> and testing process in order to discover errors and issues in business 
> processes.
>
> • Good documentation skills and ability to create documents for 
> blueprinting, configuration, test cases, defect description & resolution 
> and training materials.
>
> • Ability to support SAP MMPP/PPPI Application in post go-live stages of 
> projects.
>
> • Ability to cooperate with consultants from other modules such as SD, 
> FICO, SRM.
>
> • Familiar with SAP Solution Manager, HP-ALM, SAP ChaRM and SharePoint 
> sites preferred but not required.
>
> • Excellent written and oral communication skills.
>
> • Familiarity with the Seed Production process model or general 
> agribusiness knowledge is a plus.
>
>  
>
> The following Project Management/Leadership experience would be a plus:
>
> • Experience with MS Project or comparable tools
>
> • Excellent communication skills. Ability to communicate to all levels of 
> the organization.
>
> • Strong understanding of software development and agile methodologies
>
>  
>
>  
>
> *Needed some details for submission process -*
>
>  
>
>
>
>
> *Full Legal Name : Contact Number: 
> Email ID: Current 
> Location   : *
>
> *Relocation   :*
>
>
>
> *Last 4 digit of SSN : Skype ID 
>   : DOB(MM/DD): *
>
> *Availability to Join: *
>
> *Work authorization   :*
>
> *Education, University, Year:*
>
>  
>
>  
>
>  
>
>  
>
> *Regards*
>
>  
>
> *Vishal Ji Awasthi*
>
> *Srimatrix Inc.*
>
> [image: Logo.png]
>
> E-Mail:*vis...@srimatrix.com * 
>
> Phone: *214-227-9311(Direct)*
>
> Web: www.srimatrix.com
>
>  
>
>  
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from

[android-developers] Urgent Opening / Sr. .Net Developer in Trenton, NJ, 08625 / Onsite / In-Person Interview

2019-09-13 Thread Kunal b


*Title :Sr. .Net Developer *

*Location: Trenton, NJ, 08625.*

*Duration: 06-12 Months*

 

*Tax Terms: C2C / W2 *

*Onsite / In-Person Interview*


*Job Details:*

 

*Technical Expertise: *

· Demonstrates a broad understanding of the applications and 
technical architectures, as well as exceptional depth in a number of 
critical technical skills that are key to the success of the business.

· Brings technical knowledge from external sources and incorporates 
those ideas into IT.

· Ability to independently to translate business and technical 
requirements into well-engineered, tested, and deployed business 
application systems. This includes the analysis, design, development, 
testing,installation, and maintenance of information systems and acting 
as interface with customers and other developers to determine the most 
efficient and 

· cost-effective approach to meet business requirements.

· *Nice to have EHR, HL7 and C-CDA experience. // Preferred but not 
required*

 

 

*Work Experience: *

· Microsoft Technology Stack 

· ASP.NET, Visual Studio, C#, JavaScript, Web Forms, MVC 4 or 
above, SQL Server 2010, SQL Server Reporting Services, TSQL, WCF

· Candidates should have experience in creating and maintaining 
databases, resolving bugs, performance tuning, backup and recovery, data 
loading, data modeling, and writing stored procedures using TSQL, SQL Jobs, 
and other database components.

· Ability to create test cases using automated tools and ability to 
create modern UI/UX is preferred.

 

*Engagement Skills: *

· Communication – Ability to communicate equally well with 
technical and non-technical personnel. 

· Creativity – Brings new and innovative ideas to work.

· Adaptability – Adjusts to new, different, or changing 
circumstances while still ensuring that the overall objective is achieved. 

· Education and Experience: BA/BS Degree in Computer Science or 
related field or equivalent; advance degree desirable. More than 5 years of 
relevant experience and technical skills. Preference will be given to 
candidates able to join at short notice

 

 

*Thanks and Regards*

 

*Kunal Bhattacharyya*

*USTech Solutions, Inc.*

*Email: kuna...@ustechsolutionsinc.com *

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


Re: [android-developers] QA Automation Engineer-Selenium //IL//6 months//C2C

2019-10-31 Thread Jessy B
HI,
PFA


Thanks & Regards
Jessy,
je...@theegiants.com
515-604-7186


On Thu, 31 Oct 2019 at 15:47, Sai Kiran Goud Kamugari <
kamugarisaikirang...@gmail.com> wrote:

> Hi all,
>
> Greetings from Simba Staffing.
>
>
> We have an urgent requirement for one of our clients. Please check and
> send me the suitable profiles ASAP.
>
>  Role: QA Automation Engineer-Selenium
> Location: Glastonbury, CT
> Duration: 6+ months
> Contract: C2C
>
>
>
> JD/Skills:
>
> • Selenium
> • API/web service testing (SOAP UI)
> • SQL
> • In addition to SOAP UI, Postman or Swagger would be viable
> options
> • Functional testing experience,
> • BDD, Headless, Agile experience
> • Problem solving/Analytical skills
> Interested people please contact us @ +1512 879 9925
>
>
>
> Thanks& Regards,
> Chetan
> Simba Staffing Consulting
> Email : de...@simbastaffing.com
> PH: +1512 879 9925contact us  @ +1512 879-9925
>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/aa669d38-357f-4e18-b0de-442a0ae00a9b%40googlegroups.com
> 
> .
>

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


Sneha Priya_QA.docx
Description: MS-Word 2007 document


Re: [android-developers] QA tester//glen allen,VA//12months//C2C

2019-10-31 Thread Jessy B
HI,
PFA


Thanks & Regards
Jessy,
je...@theegiants.com
515-604-7186


On Thu, 31 Oct 2019 at 15:47, ali 110  wrote:

> Hi
>
> Greeting from Simba Staffing
>
>
>
> Role : QA Tester
>
>
>
> Location : Glen Allen, VA
>
>
>
> Duration : 12 Months
>
>
>
>  Contract : C2C
>
>
>
>
>
> JOB DESCRIPTION
>
>
>
>
>
> Strong Healthcare Background.
>
>
>
> Payer Experience, Claims, Billings.
>
>
>
> Basic Understanding of Functional testing
>
>
>
> Minimum of 7+ years of testing experience with healtcare domain
>
>
>
> should be able to write manual test cases and create test data
>
>
>
> should be able to execute test cases
>
>
>
> should know healthcare domain modules like enrollment, claims and billing.
>
>
>
>
>
> *Thanks& Regards,*
>
>
>
> *Simba Staffing Consulting*
>
> Email : sai@simbastaffing.comSandy
>
> PH: *+1512 879-9925*
>
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/6d4c63bb-9476-4b11-a9f0-a4816d074b9e%40googlegroups.com
> 
> .
>

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


Sneha Priya_QA.docx
Description: MS-Word 2007 document


Re: [android-developers] Looking for a Java Developer with Node.js experience for a long term contract position in Madison WI, please send resumes to kaames...@modis.com

2019-10-31 Thread Jessy B
Thank you so much
I'm sending my hot list please have a look and let me know if you have any
positions available.


Thanks & Regards
Jessy,
je...@theegiants.com
515-604-7186


On Thu, 31 Oct 2019 at 19:33, dhanavath rajkumar 
wrote:

> HI
>
> Hope your  doing  well!!
>
> You have only java developer we don"t have right now any java developer
> openings  and what is the VISA status  both candidate ,please share me
> ,required documents  VISA ,DL  copies
> Then i will let you know okay
>
> On Wed, Oct 30, 2019 at 6:08 PM Jessy B 
> wrote:
>
>> HI,
>> PFA
>>
>> Thanks & Regards
>> Jessy,
>> 515-604-7186
>>
>> On Thu, 31 Oct 2019 at 03:54, Nori K  wrote:
>>
>>> Looking for a Java Developer with Node.js experience for a long term
>>> contract position in Madison WI, please send resumes to
>>> kaames...@modis.com
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Android Developers" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to android-developers+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/android-developers/80f99205-846c-443c-a92d-772fc774ffe1%40googlegroups.com
>>> <https://groups.google.com/d/msgid/android-developers/80f99205-846c-443c-a92d-772fc774ffe1%40googlegroups.com?utm_medium=email&utm_source=footer>
>>> .
>>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Android Developers" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to android-developers+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/android-developers/CA%2BgfJh4ZyMc0x81Wjdh85DV_W18smcySLJhGcb%3Dh6701_X4-Dg%40mail.gmail.com
>> <https://groups.google.com/d/msgid/android-developers/CA%2BgfJh4ZyMc0x81Wjdh85DV_W18smcySLJhGcb%3Dh6701_X4-Dg%40mail.gmail.com?utm_medium=email&utm_source=footer>
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/CA%2BAgZYHZ0f5C2%2BwLV%2B%2BneNrwRLfMu-nZLVZkjV3xanj0ALuXrg%40mail.gmail.com
> <https://groups.google.com/d/msgid/android-developers/CA%2BAgZYHZ0f5C2%2BwLV%2B%2BneNrwRLfMu-nZLVZkjV3xanj0ALuXrg%40mail.gmail.com?utm_medium=email&utm_source=footer>
> .
>

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


Hot List.docx
Description: MS-Word 2007 document


Re: [android-developers] Looking for a Java Developer with Node.js experience for a long term contract position in Madison WI, please send resumes to kaames...@modis.com

2019-10-31 Thread Jessy B
Thank you so much


Thanks & Regards
Jessy,
je...@theegiants.com
515-604-7186


On Thu, 31 Oct 2019 at 19:42, dhanavath rajkumar 
wrote:

> Okay i will let  you know
>
> On Thu, Oct 31, 2019 at 9:07 AM Jessy B 
> wrote:
>
>> Thank you so much
>> I'm sending my hot list please have a look and let me know if you have
>> any positions available.
>>
>>
>> Thanks & Regards
>> Jessy,
>> je...@theegiants.com
>> 515-604-7186
>>
>>
>> On Thu, 31 Oct 2019 at 19:33, dhanavath rajkumar <
>> raj.involgi...@gmail.com> wrote:
>>
>>> HI
>>>
>>> Hope your  doing  well!!
>>>
>>> You have only java developer we don"t have right now any java developer
>>> openings  and what is the VISA status  both candidate ,please share me
>>> ,required documents  VISA ,DL  copies
>>> Then i will let you know okay
>>>
>>> On Wed, Oct 30, 2019 at 6:08 PM Jessy B 
>>> wrote:
>>>
>>>> HI,
>>>> PFA
>>>>
>>>> Thanks & Regards
>>>> Jessy,
>>>> 515-604-7186
>>>>
>>>> On Thu, 31 Oct 2019 at 03:54, Nori K  wrote:
>>>>
>>>>> Looking for a Java Developer with Node.js experience for a long term
>>>>> contract position in Madison WI, please send resumes to
>>>>> kaames...@modis.com
>>>>>
>>>>> --
>>>>> You received this message because you are subscribed to the Google
>>>>> Groups "Android Developers" group.
>>>>> To unsubscribe from this group and stop receiving emails from it, send
>>>>> an email to android-developers+unsubscr...@googlegroups.com.
>>>>> To view this discussion on the web visit
>>>>> https://groups.google.com/d/msgid/android-developers/80f99205-846c-443c-a92d-772fc774ffe1%40googlegroups.com
>>>>> <https://groups.google.com/d/msgid/android-developers/80f99205-846c-443c-a92d-772fc774ffe1%40googlegroups.com?utm_medium=email&utm_source=footer>
>>>>> .
>>>>>
>>>> --
>>>> You received this message because you are subscribed to the Google
>>>> Groups "Android Developers" group.
>>>> To unsubscribe from this group and stop receiving emails from it, send
>>>> an email to android-developers+unsubscr...@googlegroups.com.
>>>> To view this discussion on the web visit
>>>> https://groups.google.com/d/msgid/android-developers/CA%2BgfJh4ZyMc0x81Wjdh85DV_W18smcySLJhGcb%3Dh6701_X4-Dg%40mail.gmail.com
>>>> <https://groups.google.com/d/msgid/android-developers/CA%2BgfJh4ZyMc0x81Wjdh85DV_W18smcySLJhGcb%3Dh6701_X4-Dg%40mail.gmail.com?utm_medium=email&utm_source=footer>
>>>> .
>>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Android Developers" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to android-developers+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/android-developers/CA%2BAgZYHZ0f5C2%2BwLV%2B%2BneNrwRLfMu-nZLVZkjV3xanj0ALuXrg%40mail.gmail.com
>>> <https://groups.google.com/d/msgid/android-developers/CA%2BAgZYHZ0f5C2%2BwLV%2B%2BneNrwRLfMu-nZLVZkjV3xanj0ALuXrg%40mail.gmail.com?utm_medium=email&utm_source=footer>
>>> .
>>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Android Developers" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to android-developers+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/android-developers/CA%2BgfJh6q0a4Zs1TjwbX6Ry3tOVvwsrn6PU6bjR8H7O%3DOUBAcTg%40mail.gmail.com
>> <https://groups.google.com/d/msgid/android-developers/CA%2BgfJh6q0a4Zs1TjwbX6Ry3tOVvwsrn6PU6bjR8H7O%3DOUBAcTg%40mail.gmail.com?utm_medium=email&utm_source=footer>
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/CA%2BAgZYGcetDdEWypYrPSGOVtZ3Mo%3DK3ULK967hnLJtqC%2BGGvXQ%40mail.gmail.com
> <https://groups.google.com/d/msgid/android-developers/CA%2BAgZYGcetDdEWypYrPSGOVtZ3Mo%3DK3ULK967hnLJtqC%2BGGvXQ%40mail.gmail.com?utm_medium=email&utm_source=footer>
> .
>

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


Re: [android-developers] Looking for a Java Developer with Node.js experience for a long term contract position in Madison WI, please send resumes to kaames...@modis.com

2019-10-31 Thread Jessy B
Thanks & Regards
Jessy,
je...@theegiants.com
515-604-7186


On Thu, 31 Oct 2019 at 20:01, dhanavath rajkumar 
wrote:

> Hi
>
> We have argent openings [  DOT NET ]  you have any candidate please share
> me resume
>
> On Thu, Oct 31, 2019 at 9:15 AM Jessy B 
> wrote:
>
>> Thank you so much
>>
>>
>> Thanks & Regards
>> Jessy,
>> je...@theegiants.com
>> 515-604-7186
>>
>>
>> On Thu, 31 Oct 2019 at 19:42, dhanavath rajkumar <
>> raj.involgi...@gmail.com> wrote:
>>
>>> Okay i will let  you know
>>>
>>> On Thu, Oct 31, 2019 at 9:07 AM Jessy B 
>>> wrote:
>>>
>>>> Thank you so much
>>>> I'm sending my hot list please have a look and let me know if you have
>>>> any positions available.
>>>>
>>>>
>>>> Thanks & Regards
>>>> Jessy,
>>>> je...@theegiants.com
>>>> 515-604-7186
>>>>
>>>>
>>>> On Thu, 31 Oct 2019 at 19:33, dhanavath rajkumar <
>>>> raj.involgi...@gmail.com> wrote:
>>>>
>>>>> HI
>>>>>
>>>>> Hope your  doing  well!!
>>>>>
>>>>> You have only java developer we don"t have right now any java
>>>>> developer openings  and what is the VISA status  both candidate ,please
>>>>> share me ,required documents  VISA ,DL  copies
>>>>> Then i will let you know okay
>>>>>
>>>>> On Wed, Oct 30, 2019 at 6:08 PM Jessy B 
>>>>> wrote:
>>>>>
>>>>>> HI,
>>>>>> PFA
>>>>>>
>>>>>> Thanks & Regards
>>>>>> Jessy,
>>>>>> 515-604-7186
>>>>>>
>>>>>> On Thu, 31 Oct 2019 at 03:54, Nori K 
>>>>>> wrote:
>>>>>>
>>>>>>> Looking for a Java Developer with Node.js experience for a long term
>>>>>>> contract position in Madison WI, please send resumes to
>>>>>>> kaames...@modis.com
>>>>>>>
>>>>>>> --
>>>>>>> You received this message because you are subscribed to the Google
>>>>>>> Groups "Android Developers" group.
>>>>>>> To unsubscribe from this group and stop receiving emails from it,
>>>>>>> send an email to android-developers+unsubscr...@googlegroups.com.
>>>>>>> To view this discussion on the web visit
>>>>>>> https://groups.google.com/d/msgid/android-developers/80f99205-846c-443c-a92d-772fc774ffe1%40googlegroups.com
>>>>>>> <https://groups.google.com/d/msgid/android-developers/80f99205-846c-443c-a92d-772fc774ffe1%40googlegroups.com?utm_medium=email&utm_source=footer>
>>>>>>> .
>>>>>>>
>>>>>> --
>>>>>> You received this message because you are subscribed to the Google
>>>>>> Groups "Android Developers" group.
>>>>>> To unsubscribe from this group and stop receiving emails from it,
>>>>>> send an email to android-developers+unsubscr...@googlegroups.com.
>>>>>> To view this discussion on the web visit
>>>>>> https://groups.google.com/d/msgid/android-developers/CA%2BgfJh4ZyMc0x81Wjdh85DV_W18smcySLJhGcb%3Dh6701_X4-Dg%40mail.gmail.com
>>>>>> <https://groups.google.com/d/msgid/android-developers/CA%2BgfJh4ZyMc0x81Wjdh85DV_W18smcySLJhGcb%3Dh6701_X4-Dg%40mail.gmail.com?utm_medium=email&utm_source=footer>
>>>>>> .
>>>>>>
>>>>> --
>>>>> You received this message because you are subscribed to the Google
>>>>> Groups "Android Developers" group.
>>>>> To unsubscribe from this group and stop receiving emails from it, send
>>>>> an email to android-developers+unsubscr...@googlegroups.com.
>>>>> To view this discussion on the web visit
>>>>> https://groups.google.com/d/msgid/android-developers/CA%2BAgZYHZ0f5C2%2BwLV%2B%2BneNrwRLfMu-nZLVZkjV3xanj0ALuXrg%40mail.gmail.com
>>>>> <https://groups.google.com/d/msgid/android-developers/CA%2BAgZYHZ0f5C2%2BwLV%2B%2BneNrwRLfMu-nZLVZkjV3xanj0ALuXrg%40mail.gmail.com?utm_medium=email&utm_source=footer>
>>>>> .
>>>>>
>>>> --
>>>> You received this message because you are subscribed to the Google
>>>> Groups &q

Re: [android-developers] Looking for a Java Developer with Node.js experience for a long term contract position in Madison WI, please send resumes to kaames...@modis.com

2019-10-31 Thread Jessy B
Client, rate and jd please and will you provide end client letter for
amendment process


Thanks & Regards
Jessy,
je...@theegiants.com
515-604-7186


On Thu, 31 Oct 2019 at 20:01, dhanavath rajkumar 
wrote:

> Hi
>
> We have argent openings [  DOT NET ]  you have any candidate please share
> me resume
>
> On Thu, Oct 31, 2019 at 9:15 AM Jessy B 
> wrote:
>
>> Thank you so much
>>
>>
>> Thanks & Regards
>> Jessy,
>> je...@theegiants.com
>> 515-604-7186
>>
>>
>> On Thu, 31 Oct 2019 at 19:42, dhanavath rajkumar <
>> raj.involgi...@gmail.com> wrote:
>>
>>> Okay i will let  you know
>>>
>>> On Thu, Oct 31, 2019 at 9:07 AM Jessy B 
>>> wrote:
>>>
>>>> Thank you so much
>>>> I'm sending my hot list please have a look and let me know if you have
>>>> any positions available.
>>>>
>>>>
>>>> Thanks & Regards
>>>> Jessy,
>>>> je...@theegiants.com
>>>> 515-604-7186
>>>>
>>>>
>>>> On Thu, 31 Oct 2019 at 19:33, dhanavath rajkumar <
>>>> raj.involgi...@gmail.com> wrote:
>>>>
>>>>> HI
>>>>>
>>>>> Hope your  doing  well!!
>>>>>
>>>>> You have only java developer we don"t have right now any java
>>>>> developer openings  and what is the VISA status  both candidate ,please
>>>>> share me ,required documents  VISA ,DL  copies
>>>>> Then i will let you know okay
>>>>>
>>>>> On Wed, Oct 30, 2019 at 6:08 PM Jessy B 
>>>>> wrote:
>>>>>
>>>>>> HI,
>>>>>> PFA
>>>>>>
>>>>>> Thanks & Regards
>>>>>> Jessy,
>>>>>> 515-604-7186
>>>>>>
>>>>>> On Thu, 31 Oct 2019 at 03:54, Nori K 
>>>>>> wrote:
>>>>>>
>>>>>>> Looking for a Java Developer with Node.js experience for a long term
>>>>>>> contract position in Madison WI, please send resumes to
>>>>>>> kaames...@modis.com
>>>>>>>
>>>>>>> --
>>>>>>> You received this message because you are subscribed to the Google
>>>>>>> Groups "Android Developers" group.
>>>>>>> To unsubscribe from this group and stop receiving emails from it,
>>>>>>> send an email to android-developers+unsubscr...@googlegroups.com.
>>>>>>> To view this discussion on the web visit
>>>>>>> https://groups.google.com/d/msgid/android-developers/80f99205-846c-443c-a92d-772fc774ffe1%40googlegroups.com
>>>>>>> <https://groups.google.com/d/msgid/android-developers/80f99205-846c-443c-a92d-772fc774ffe1%40googlegroups.com?utm_medium=email&utm_source=footer>
>>>>>>> .
>>>>>>>
>>>>>> --
>>>>>> You received this message because you are subscribed to the Google
>>>>>> Groups "Android Developers" group.
>>>>>> To unsubscribe from this group and stop receiving emails from it,
>>>>>> send an email to android-developers+unsubscr...@googlegroups.com.
>>>>>> To view this discussion on the web visit
>>>>>> https://groups.google.com/d/msgid/android-developers/CA%2BgfJh4ZyMc0x81Wjdh85DV_W18smcySLJhGcb%3Dh6701_X4-Dg%40mail.gmail.com
>>>>>> <https://groups.google.com/d/msgid/android-developers/CA%2BgfJh4ZyMc0x81Wjdh85DV_W18smcySLJhGcb%3Dh6701_X4-Dg%40mail.gmail.com?utm_medium=email&utm_source=footer>
>>>>>> .
>>>>>>
>>>>> --
>>>>> You received this message because you are subscribed to the Google
>>>>> Groups "Android Developers" group.
>>>>> To unsubscribe from this group and stop receiving emails from it, send
>>>>> an email to android-developers+unsubscr...@googlegroups.com.
>>>>> To view this discussion on the web visit
>>>>> https://groups.google.com/d/msgid/android-developers/CA%2BAgZYHZ0f5C2%2BwLV%2B%2BneNrwRLfMu-nZLVZkjV3xanj0ALuXrg%40mail.gmail.com
>>>>> <https://groups.google.com/d/msgid/android-developers/CA%2BAgZYHZ0f5C2%2BwLV%2B%2BneNrwRLfMu-nZLVZkjV3xanj0ALuXrg%40mail.gmail.com?utm_medium=email&utm_source=footer>
>>>>> .
>>>>>
>>>> --
>>>> You re

Re: [android-developers] Looking for a Java Developer with Node.js experience for a long term contract position in Madison WI, please send resumes to kaames...@modis.com

2019-10-31 Thread Jessy B
i don't have i have only 7 yrs exp can i share


Thanks & Regards
Jessy,
je...@theegiants.com
515-604-7186


On Thu, 31 Oct 2019 at 20:14, dhanavath rajkumar 
wrote:

> Please send me ,8 9 years of experience candidate
> sorry for mail conversation
>
>
> On Thu, Oct 31, 2019 at 9:38 AM Jessy B 
> wrote:
>
>>
>>
>>
>> Thanks & Regards
>> Jessy,
>> je...@theegiants.com
>> 515-604-7186
>>
>>
>> On Thu, 31 Oct 2019 at 20:01, dhanavath rajkumar <
>> raj.involgi...@gmail.com> wrote:
>>
>>> Hi
>>>
>>> We have argent openings [  DOT NET ]  you have any candidate please
>>> share me resume
>>>
>>> On Thu, Oct 31, 2019 at 9:15 AM Jessy B 
>>> wrote:
>>>
>>>> Thank you so much
>>>>
>>>>
>>>> Thanks & Regards
>>>> Jessy,
>>>> je...@theegiants.com
>>>> 515-604-7186
>>>>
>>>>
>>>> On Thu, 31 Oct 2019 at 19:42, dhanavath rajkumar <
>>>> raj.involgi...@gmail.com> wrote:
>>>>
>>>>> Okay i will let  you know
>>>>>
>>>>> On Thu, Oct 31, 2019 at 9:07 AM Jessy B 
>>>>> wrote:
>>>>>
>>>>>> Thank you so much
>>>>>> I'm sending my hot list please have a look and let me know if you
>>>>>> have any positions available.
>>>>>>
>>>>>>
>>>>>> Thanks & Regards
>>>>>> Jessy,
>>>>>> je...@theegiants.com
>>>>>> 515-604-7186
>>>>>>
>>>>>>
>>>>>> On Thu, 31 Oct 2019 at 19:33, dhanavath rajkumar <
>>>>>> raj.involgi...@gmail.com> wrote:
>>>>>>
>>>>>>> HI
>>>>>>>
>>>>>>> Hope your  doing  well!!
>>>>>>>
>>>>>>> You have only java developer we don"t have right now any java
>>>>>>> developer openings  and what is the VISA status  both candidate ,please
>>>>>>> share me ,required documents  VISA ,DL  copies
>>>>>>> Then i will let you know okay
>>>>>>>
>>>>>>> On Wed, Oct 30, 2019 at 6:08 PM Jessy B <
>>>>>>> jessytheegiants8...@gmail.com> wrote:
>>>>>>>
>>>>>>>> HI,
>>>>>>>> PFA
>>>>>>>>
>>>>>>>> Thanks & Regards
>>>>>>>> Jessy,
>>>>>>>> 515-604-7186
>>>>>>>>
>>>>>>>> On Thu, 31 Oct 2019 at 03:54, Nori K 
>>>>>>>> wrote:
>>>>>>>>
>>>>>>>>> Looking for a Java Developer with Node.js experience for a long
>>>>>>>>> term contract position in Madison WI, please send resumes to
>>>>>>>>> kaames...@modis.com
>>>>>>>>>
>>>>>>>>> --
>>>>>>>>> You received this message because you are subscribed to the Google
>>>>>>>>> Groups "Android Developers" group.
>>>>>>>>> To unsubscribe from this group and stop receiving emails from it,
>>>>>>>>> send an email to android-developers+unsubscr...@googlegroups.com.
>>>>>>>>> To view this discussion on the web visit
>>>>>>>>> https://groups.google.com/d/msgid/android-developers/80f99205-846c-443c-a92d-772fc774ffe1%40googlegroups.com
>>>>>>>>> <https://groups.google.com/d/msgid/android-developers/80f99205-846c-443c-a92d-772fc774ffe1%40googlegroups.com?utm_medium=email&utm_source=footer>
>>>>>>>>> .
>>>>>>>>>
>>>>>>>> --
>>>>>>>> You received this message because you are subscribed to the Google
>>>>>>>> Groups "Android Developers" group.
>>>>>>>> To unsubscribe from this group and stop receiving emails from it,
>>>>>>>> send an email to android-developers+unsubscr...@googlegroups.com.
>>>>>>>> To view this discussion on the web visit
>>>>>>>> https://groups.google.com/d/msgid/android-developers/CA%2BgfJh4ZyMc0x81Wjdh85DV_W18smcySLJhGcb%3Dh6701_X4-Dg%40mail.gmail.com
>>>>>&

Re: [android-developers] Looking for a Java Developer with Node.js experience for a long term contract position in Madison WI, please send resumes to kaames...@modis.com

2019-10-31 Thread Jessy B
Thanks & Regards
Jessy,
je...@theegiants.com
515-604-7186


On Thu, 31 Oct 2019 at 20:30, dhanavath rajkumar 
wrote:

> Yes we will provide
>
> On Thu, Oct 31, 2019 at 9:39 AM Jessy B 
> wrote:
>
>> Client, rate and jd please and will you provide end client letter for
>> amendment process
>>
>>
>> Thanks & Regards
>> Jessy,
>> je...@theegiants.com
>> 515-604-7186
>>
>>
>> On Thu, 31 Oct 2019 at 20:01, dhanavath rajkumar <
>> raj.involgi...@gmail.com> wrote:
>>
>>> Hi
>>>
>>> We have argent openings [  DOT NET ]  you have any candidate please
>>> share me resume
>>>
>>> On Thu, Oct 31, 2019 at 9:15 AM Jessy B 
>>> wrote:
>>>
>>>> Thank you so much
>>>>
>>>>
>>>> Thanks & Regards
>>>> Jessy,
>>>> je...@theegiants.com
>>>> 515-604-7186
>>>>
>>>>
>>>> On Thu, 31 Oct 2019 at 19:42, dhanavath rajkumar <
>>>> raj.involgi...@gmail.com> wrote:
>>>>
>>>>> Okay i will let  you know
>>>>>
>>>>> On Thu, Oct 31, 2019 at 9:07 AM Jessy B 
>>>>> wrote:
>>>>>
>>>>>> Thank you so much
>>>>>> I'm sending my hot list please have a look and let me know if you
>>>>>> have any positions available.
>>>>>>
>>>>>>
>>>>>> Thanks & Regards
>>>>>> Jessy,
>>>>>> je...@theegiants.com
>>>>>> 515-604-7186
>>>>>>
>>>>>>
>>>>>> On Thu, 31 Oct 2019 at 19:33, dhanavath rajkumar <
>>>>>> raj.involgi...@gmail.com> wrote:
>>>>>>
>>>>>>> HI
>>>>>>>
>>>>>>> Hope your  doing  well!!
>>>>>>>
>>>>>>> You have only java developer we don"t have right now any java
>>>>>>> developer openings  and what is the VISA status  both candidate ,please
>>>>>>> share me ,required documents  VISA ,DL  copies
>>>>>>> Then i will let you know okay
>>>>>>>
>>>>>>> On Wed, Oct 30, 2019 at 6:08 PM Jessy B <
>>>>>>> jessytheegiants8...@gmail.com> wrote:
>>>>>>>
>>>>>>>> HI,
>>>>>>>> PFA
>>>>>>>>
>>>>>>>> Thanks & Regards
>>>>>>>> Jessy,
>>>>>>>> 515-604-7186
>>>>>>>>
>>>>>>>> On Thu, 31 Oct 2019 at 03:54, Nori K 
>>>>>>>> wrote:
>>>>>>>>
>>>>>>>>> Looking for a Java Developer with Node.js experience for a long
>>>>>>>>> term contract position in Madison WI, please send resumes to
>>>>>>>>> kaames...@modis.com
>>>>>>>>>
>>>>>>>>> --
>>>>>>>>> You received this message because you are subscribed to the Google
>>>>>>>>> Groups "Android Developers" group.
>>>>>>>>> To unsubscribe from this group and stop receiving emails from it,
>>>>>>>>> send an email to android-developers+unsubscr...@googlegroups.com.
>>>>>>>>> To view this discussion on the web visit
>>>>>>>>> https://groups.google.com/d/msgid/android-developers/80f99205-846c-443c-a92d-772fc774ffe1%40googlegroups.com
>>>>>>>>> <https://groups.google.com/d/msgid/android-developers/80f99205-846c-443c-a92d-772fc774ffe1%40googlegroups.com?utm_medium=email&utm_source=footer>
>>>>>>>>> .
>>>>>>>>>
>>>>>>>> --
>>>>>>>> You received this message because you are subscribed to the Google
>>>>>>>> Groups "Android Developers" group.
>>>>>>>> To unsubscribe from this group and stop receiving emails from it,
>>>>>>>> send an email to android-developers+unsubscr...@googlegroups.com.
>>>>>>>> To view this discussion on the web visit
>>>>>>>> https://groups.google.com/d/msgid/android-developers/CA%2BgfJh4ZyMc0x81Wjdh85DV_W18smcySLJhGcb%3Dh6701_X4-Dg%40mail.gmail.com
>>>>>>>> <https:

Re: [android-developers] Looking for a Java Developer with Node.js experience for a long term contract position in Madison WI, please send resumes to kaames...@modis.com

2019-10-31 Thread Jessy B
I don't have 8 yrs exp profiles sorry


Thanks & Regards
Jessy,
je...@theegiants.com
515-604-7186


On Thu, 31 Oct 2019 at 20:32, dhanavath rajkumar 
wrote:

> last 8 years of experience  candidate please share me resume
>
> On Thu, Oct 31, 2019 at 9:58 AM Jessy B 
> wrote:
>
>> i don't have i have only 7 yrs exp can i share
>>
>>
>> Thanks & Regards
>> Jessy,
>> je...@theegiants.com
>> 515-604-7186
>>
>>
>> On Thu, 31 Oct 2019 at 20:14, dhanavath rajkumar <
>> raj.involgi...@gmail.com> wrote:
>>
>>> Please send me ,8 9 years of experience candidate
>>> sorry for mail conversation
>>>
>>>
>>> On Thu, Oct 31, 2019 at 9:38 AM Jessy B 
>>> wrote:
>>>
>>>>
>>>>
>>>>
>>>> Thanks & Regards
>>>> Jessy,
>>>> je...@theegiants.com
>>>> 515-604-7186
>>>>
>>>>
>>>> On Thu, 31 Oct 2019 at 20:01, dhanavath rajkumar <
>>>> raj.involgi...@gmail.com> wrote:
>>>>
>>>>> Hi
>>>>>
>>>>> We have argent openings [  DOT NET ]  you have any candidate please
>>>>> share me resume
>>>>>
>>>>> On Thu, Oct 31, 2019 at 9:15 AM Jessy B 
>>>>> wrote:
>>>>>
>>>>>> Thank you so much
>>>>>>
>>>>>>
>>>>>> Thanks & Regards
>>>>>> Jessy,
>>>>>> je...@theegiants.com
>>>>>> 515-604-7186
>>>>>>
>>>>>>
>>>>>> On Thu, 31 Oct 2019 at 19:42, dhanavath rajkumar <
>>>>>> raj.involgi...@gmail.com> wrote:
>>>>>>
>>>>>>> Okay i will let  you know
>>>>>>>
>>>>>>> On Thu, Oct 31, 2019 at 9:07 AM Jessy B <
>>>>>>> jessytheegiants8...@gmail.com> wrote:
>>>>>>>
>>>>>>>> Thank you so much
>>>>>>>> I'm sending my hot list please have a look and let me know if you
>>>>>>>> have any positions available.
>>>>>>>>
>>>>>>>>
>>>>>>>> Thanks & Regards
>>>>>>>> Jessy,
>>>>>>>> je...@theegiants.com
>>>>>>>> 515-604-7186
>>>>>>>>
>>>>>>>>
>>>>>>>> On Thu, 31 Oct 2019 at 19:33, dhanavath rajkumar <
>>>>>>>> raj.involgi...@gmail.com> wrote:
>>>>>>>>
>>>>>>>>> HI
>>>>>>>>>
>>>>>>>>> Hope your  doing  well!!
>>>>>>>>>
>>>>>>>>> You have only java developer we don"t have right now any java
>>>>>>>>> developer openings  and what is the VISA status  both candidate 
>>>>>>>>> ,please
>>>>>>>>> share me ,required documents  VISA ,DL  copies
>>>>>>>>> Then i will let you know okay
>>>>>>>>>
>>>>>>>>> On Wed, Oct 30, 2019 at 6:08 PM Jessy B <
>>>>>>>>> jessytheegiants8...@gmail.com> wrote:
>>>>>>>>>
>>>>>>>>>> HI,
>>>>>>>>>> PFA
>>>>>>>>>>
>>>>>>>>>> Thanks & Regards
>>>>>>>>>> Jessy,
>>>>>>>>>> 515-604-7186
>>>>>>>>>>
>>>>>>>>>> On Thu, 31 Oct 2019 at 03:54, Nori K 
>>>>>>>>>> wrote:
>>>>>>>>>>
>>>>>>>>>>> Looking for a Java Developer with Node.js experience for a long
>>>>>>>>>>> term contract position in Madison WI, please send resumes to
>>>>>>>>>>> kaames...@modis.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, 

Re: [android-developers] QA Automation Tester

2019-10-31 Thread Jessy B
Thanks & Regards
Jessy,
je...@theegiants.com
515-604-7186


On Thu, 31 Oct 2019 at 20:40, sp indu  wrote:

> *Hi *
>
> *please share resumes for the below requirement *
>
>
> *QA Automation Tester  *
>
> *Job Location:- Norfolk, VA*
>
> *Open Positions:- 2*
>
>
>
> *Job description *
>
>
>
> · • Expertise in complex manual and automated testing on
> Android/iOS mobile applications, 2+ years of experience testing mobile apps
> is required.
>
> · • Create, maintain, execute & extend manual and automated tests
> to ensure efficient and sufficient test coverage of mobile applications
>
> · • Troubleshoot, isolate, and document problems encountered
> during testing
>
> · • Experience in web services testing
>
> · • Experience in an Agile, continuous integration environment
>
> · • Demonstrated skill using code repositories (Git)
>
> · •Experience with Perfecto is a must
>
> · • Mobile automation experience using Java + Appium or iOS
> Native tools (XCUI Test)
>
> · • Should have in Mobile Development with iOS platform
>
> · • Must have experience in test framework exposure with Java,
> Appium and Selenium experience
>
> · • 2+ years of hands-on experience with test automation tools
> (Perfecto Mobile, Appium, etc.)
>
> · • 2+ years Object Oriented software development experience
> (e.g. C#, JavaScript, C/C++, Java, Swift)
>
> · •Experience/exposure in JIRA & Confluence
>
> · •Experience/exposure in Agile & SAFe
>
> · •Jenkins knowledge is a plus
>
> · •Postman knowledge is a plus
>
>
>
>
> Please consider the environment before printing this email. Go Green
>
>
>
> 
>  Virus-free.
> www.avg.com
> 
> <#m_-8607066589597020110_DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/CAAQFxjeWQL%2BOv0HYrWu3TXFLfNp4erZVUhEYWGdgP8gOMQp4uQ%40mail.gmail.com
> 
> .
>

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


Sneha Priya_QA.docx
Description: MS-Word 2007 document


Re: [android-developers] Looking for Senior Full Stack .NET Developer with one of our clients at Madison, WI.

2019-10-31 Thread Jessy B
Thanks & Regards
Jessy,
je...@theegiants.com
515-604-7186


On Thu, 31 Oct 2019 at 21:29, sai gangisetti 
wrote:

> Hi,
> Greetings!
>
>
>
>
> *Title: Senior Full Stack .NET Developer Location: Madison, WI Duration:
> 12+ Months*
>
>
> *  Job Description:*
>
> ·  At least 5 years of hands-on experience in application development
> involving ASP.NET , C#, .NET MVC4, SQL Server, Stored
> Procedures, SSRS, SSIS.
>
> ·  Experience and understanding development, support and migration
> projects.
>
> ·  Knowledge on.NETWEB API, .NET CORE, Angular JS is desirable but not
> required.
>
> ·  Strong analytical skills and client interfacing skills.
>
> ·  Ability to work in diverse/ multiple stakeholder environment.
>
> ·  Experience and desire to work in Agile in a Global delivery
> environment/team.
>
>
>
> *Thanks,*
> * Sai*
>
> *Direct : 972-521-4946 *| *Mobile:* *469-382-2413*
> *E-mail: **sai8074069...@gmail.com * | *Website*
> : www.involgix.com
> 12885 Research Blvd Suite: 102B:, Austin, TX 78750.
> * Company*
>
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/f0bac32a-f400-445d-8985-d75bc50602d4%40googlegroups.com
> 
> .
>

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


Niharika-.Net Profile.docx
Description: MS-Word 2007 document


Shankar-.Net Resume.docx
Description: MS-Word 2007 document


Re: [android-developers] QA Automation Tester

2019-10-31 Thread Jessy B
H4 EAD


Thanks & Regards
Jessy,
je...@theegiants.com
515-604-7186


On Thu, 31 Oct 2019 at 21:45, adam noel  wrote:

> may i know the rate and visa status
>
> On Thu, Oct 31, 2019 at 10:16 AM Jessy B 
> wrote:
>
>>
>>
>>
>> Thanks & Regards
>> Jessy,
>> je...@theegiants.com
>> 515-604-7186
>>
>>
>> On Thu, 31 Oct 2019 at 20:40, sp indu  wrote:
>>
>>> *Hi *
>>>
>>> *please share resumes for the below requirement *
>>>
>>>
>>> *QA Automation Tester  *
>>>
>>> *Job Location:- Norfolk, VA*
>>>
>>> *Open Positions:- 2*
>>>
>>>
>>>
>>> *Job description *
>>>
>>>
>>>
>>> · • Expertise in complex manual and automated testing on
>>> Android/iOS mobile applications, 2+ years of experience testing mobile apps
>>> is required.
>>>
>>> · • Create, maintain, execute & extend manual and automated
>>> tests to ensure efficient and sufficient test coverage of mobile
>>> applications
>>>
>>> · • Troubleshoot, isolate, and document problems encountered
>>> during testing
>>>
>>> · • Experience in web services testing
>>>
>>> · • Experience in an Agile, continuous integration environment
>>>
>>> · • Demonstrated skill using code repositories (Git)
>>>
>>> · •Experience with Perfecto is a must
>>>
>>> · • Mobile automation experience using Java + Appium or iOS
>>> Native tools (XCUI Test)
>>>
>>> · • Should have in Mobile Development with iOS platform
>>>
>>> · • Must have experience in test framework exposure with Java,
>>> Appium and Selenium experience
>>>
>>> · • 2+ years of hands-on experience with test automation tools
>>> (Perfecto Mobile, Appium, etc.)
>>>
>>> · • 2+ years Object Oriented software development experience
>>> (e.g. C#, JavaScript, C/C++, Java, Swift)
>>>
>>> · •Experience/exposure in JIRA & Confluence
>>>
>>> · •Experience/exposure in Agile & SAFe
>>>
>>> · •Jenkins knowledge is a plus
>>>
>>> · •Postman knowledge is a plus
>>>
>>>
>>>
>>>
>>> Please consider the environment before printing this email. Go Green
>>>
>>>
>>>
>>> <http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail>
>>>  Virus-free.
>>> www.avg.com
>>> <http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail>
>>> <#m_-2901637797060235157_m_-8496182136517063745_m_-8607066589597020110_DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Android Developers" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to android-developers+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/android-developers/CAAQFxjeWQL%2BOv0HYrWu3TXFLfNp4erZVUhEYWGdgP8gOMQp4uQ%40mail.gmail.com
>>> <https://groups.google.com/d/msgid/android-developers/CAAQFxjeWQL%2BOv0HYrWu3TXFLfNp4erZVUhEYWGdgP8gOMQp4uQ%40mail.gmail.com?utm_medium=email&utm_source=footer>
>>> .
>>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Android Developers" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to android-developers+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/android-developers/CA%2BgfJh67FTJbtVOR5WZ-TusxZ_6Ae8KyOTW0mRC3R6xV6_ip%2BA%40mail.gmail.com
>> <https://groups.google.com/d/msgid/android-developers/CA%2BgfJh67FTJbtVOR5WZ-TusxZ_6Ae8KyOTW0mRC3R6xV6_ip%2BA%40mail.gmail.com?utm_medium=email&utm_source=footer>
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/CAOjKiGrT2CReDaWef3ZNHC3%2BpoRQ7R4OBVhJFvr8rk8d_fahRQ%40mail.gmail.com
> <https://groups.google.com/d/msgid/android-developers/CAOjKiGrT2CReDaWef3ZNHC3%2BpoRQ7R4OBVhJFvr8rk8d_fahRQ%40mail.gmail.com?utm_medium=email&utm_source=footer>
> .
>

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


[android-developers] HOT LIST

2019-10-31 Thread Jessy B
Hi, All
Hope you are doing well,
Please find my hot list and let me know if you have any requirements.

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


Hot List.docx
Description: MS-Word 2007 document


Re: [android-developers] QA Automation Tester

2019-10-31 Thread Jessy B
Yes i have but they are looking at FL, MI


Thanks & Regards
Jessy,
je...@theegiants.com
515-604-7186


On Thu, 31 Oct 2019 at 23:39, adam noel  wrote:

> at this time H4 EAD is not workable
> if you have any other visa candidates please let me know
>
> On Thu, Oct 31, 2019 at 11:29 AM Jessy B 
> wrote:
>
>> H4 EAD
>>
>>
>> Thanks & Regards
>> Jessy,
>> je...@theegiants.com
>> 515-604-7186
>>
>>
>> On Thu, 31 Oct 2019 at 21:45, adam noel  wrote:
>>
>>> may i know the rate and visa status
>>>
>>> On Thu, Oct 31, 2019 at 10:16 AM Jessy B 
>>> wrote:
>>>
>>>>
>>>>
>>>>
>>>> Thanks & Regards
>>>> Jessy,
>>>> je...@theegiants.com
>>>> 515-604-7186
>>>>
>>>>
>>>> On Thu, 31 Oct 2019 at 20:40, sp indu  wrote:
>>>>
>>>>> *Hi *
>>>>>
>>>>> *please share resumes for the below requirement *
>>>>>
>>>>>
>>>>> *QA Automation Tester  *
>>>>>
>>>>> *Job Location:- Norfolk, VA*
>>>>>
>>>>> *Open Positions:- 2*
>>>>>
>>>>>
>>>>>
>>>>> *Job description *
>>>>>
>>>>>
>>>>>
>>>>> · • Expertise in complex manual and automated testing on
>>>>> Android/iOS mobile applications, 2+ years of experience testing mobile 
>>>>> apps
>>>>> is required.
>>>>>
>>>>> · • Create, maintain, execute & extend manual and automated
>>>>> tests to ensure efficient and sufficient test coverage of mobile
>>>>> applications
>>>>>
>>>>> · • Troubleshoot, isolate, and document problems encountered
>>>>> during testing
>>>>>
>>>>> · • Experience in web services testing
>>>>>
>>>>> · • Experience in an Agile, continuous integration environment
>>>>>
>>>>> · • Demonstrated skill using code repositories (Git)
>>>>>
>>>>> · •Experience with Perfecto is a must
>>>>>
>>>>> · • Mobile automation experience using Java + Appium or iOS
>>>>> Native tools (XCUI Test)
>>>>>
>>>>> · • Should have in Mobile Development with iOS platform
>>>>>
>>>>> · • Must have experience in test framework exposure with
>>>>> Java, Appium and Selenium experience
>>>>>
>>>>> · • 2+ years of hands-on experience with test automation
>>>>> tools (Perfecto Mobile, Appium, etc.)
>>>>>
>>>>> · • 2+ years Object Oriented software development experience
>>>>> (e.g. C#, JavaScript, C/C++, Java, Swift)
>>>>>
>>>>> · •Experience/exposure in JIRA & Confluence
>>>>>
>>>>> · •Experience/exposure in Agile & SAFe
>>>>>
>>>>> · •Jenkins knowledge is a plus
>>>>>
>>>>> · •Postman knowledge is a plus
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> Please consider the environment before printing this email. Go Green
>>>>>
>>>>>
>>>>>
>>>>> <http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail>
>>>>>  Virus-free.
>>>>> www.avg.com
>>>>> <http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail>
>>>>> <#m_-5324952702622652128_m_1236774935483264123_m_-2901637797060235157_m_-8496182136517063745_m_-8607066589597020110_DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
>>>>>
>>>>> --
>>>>> You received this message because you are subscribed to the Google
>>>>> Groups "Android Developers" group.
>>>>> To unsubscribe from this group and stop receiving emails from it, send
>>>>> an email to android-developers+unsubscr...@googlegroups.com.
>>>>> To view this discussion on the web visit
>>>>> https://groups.google.com/d/msgid/android-developers/CAAQFxjeWQL%2BOv0HYrWu3TXFLfNp4erZVUhEYWGdgP8gOMQp4uQ%40mail.gmail

[android-developers] Urgent need SAP MM Consultant @ Houston, TX (Locals / Musr relocate)

2019-10-31 Thread Benz B


*Job Title:  SAP MM Consultant*

*Location: Houston, TX*

*Duration: 6+ Months*

 

*Direct client *

 

 

· Migrating org structure into leasing entity, and provide system 
solution on intercompany / intracompany processed based on this new SAP 
entity. 

· Either via formal training or on the job development the 
candidate has accumulated over 7 years of functional configuration and 
business process experience in SAP Materials Management. 

· Candidate must have experience implementing SAP Supply Chain 
application and processes also supporting conversion activities. 

· Candidate has gained a high level of understanding on the 
integration of SAP Materials Management to the other modules such as 
Finance, and Sales and Distribution. 

· Candidate should possess expert knowledge of MRP, Intercompany 
PO/SO processes in SAP, procurement and inventory processes, movement types 
and account determination and configuration experience of the same. 

· Position is considered an authority on the technologies, 
applications, and work processes related to SAP Supply Chain. 

· This position is not for data conversion specialist. 

· The skill sets required are more on problem solving skills in 
making sure business requirements can be supported through SAP solution.

 

 

 

 

 

 

Warm Regards,

Benjamin

Senior Recruiter | Wise Men

O: 281 957 5888 * 154 

benjamin.bha...@wisemen.com

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


Re: [android-developers] QA Automation Tester

2019-11-01 Thread Jessy B
Thanks & Regards
Jessy,
je...@theegiants.com
515-604-7186


On Fri, 1 Nov 2019 at 20:17, sp indu  wrote:

> Hi
> please share resumes for the below requirement
>
> *QA Automation Tester  *
>
> *Job Location:- Norfolk, VA*
>
> *Open Positions:- 2*
>
>
>
>
>
> · • Expertise in complex manual and automated testing on
> Android/iOS mobile applications, 2+ years of experience testing mobile apps
> is required.
>
> · • Create, maintain, execute & extend manual and automated tests
> to ensure efficient and sufficient test coverage of mobile applications
>
> · • Troubleshoot, isolate, and document problems encountered
> during testing
>
> · • Experience in web services testing
>
> · • Experience in an Agile, continuous integration environment
>
> · • Demonstrated skill using code repositories (Git)
>
> · •Experience with Perfecto is a must
>
> · • Mobile automation experience using Java + Appium or iOS
> Native tools (XCUI Test)
>
> · • Should have in Mobile Development with iOS platform
>
> · • Must have experience in test framework exposure with Java,
> Appium and Selenium experience
>
> · • 2+ years of hands-on experience with test automation tools
> (Perfecto Mobile, Appium, etc.)
>
> · • 2+ years Object Oriented software development experience
> (e.g. C#, JavaScript, C/C++, Java, Swift)
>
> · •Experience/exposure in JIRA & Confluence
>
> · •Experience/exposure in Agile & SAFe
>
>
>  please feel free to cal on my no O : 281-823-9222. Ext: 573|
> E:indu3...@gmail.com or indu@3sbc.com
>
> Please consider the environment before printing this email. Go Green
>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/CAAQFxjftqxx7BQe4JBjXM4rdpPZDvmTNT33_FuB-Dxwx9WqrkA%40mail.gmail.com
> 
> .
>

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


Sneha Priya_QA.docx
Description: MS-Word 2007 document


Re: [android-developers] ReactJS Developer || Minneapolis, MN || Long-term

2019-11-01 Thread Jessy B
Thanks & Regards
Jessy,
je...@theegiants.com
515-604-7186


On Fri, 1 Nov 2019 at 23:16, Pankaj Kumar  wrote:

> Hello,
>
>
>
> Please go through the requirement and let me know your interest.
>
>
>
> *We have interview slots available and it’s exclusive requirement.*
>
>
>
> *ReactJS Developer – 15 Positions*
>
> *Location: **Minneapolis, MN*
>
> *Duration: Long-term*
>
> •  At least *8 years* of professional development experience with
> significant exposure to working on complex projects with cross functional
> teams
>
> •  Extremely strong JavaScript framework and Front-End Development
> experience
>
> •  *Minimum of 2 years’ experience with ReactJS *
>
> •  Strong Node.JS experience is highly desired
>
> •  Must have proven experience building smart dynamic websites using
> JavaScript frameworks
>
> •  A solid background in NoSQL and/or relational databases.
>
> •  Experience with scripting languages like Python, Ruby, etc. is
> highly desired
>
> •  Experience with SSRS would be preferred.
>
>
>
>
>
>
>
> *Pankaj Kumar*
>
> *ST Global LLC*
>
> Direct: 513-729-7021
>
> Fax: 206-319-4579
>
> pan...@stglobaltech.com
>
> www.stglobaltech.com
>
>
>
> Note: We respect your Online Privacy. This is not an unsolicited mail.
> Under Bills.1618 Title III passed by the 105th U.S. Congress this mail
> cannot be considered Spam as long as we include Contact information and a
> method to be removed from our mailing list. If you are not interested in
> receiving our e-mails then please reply with a "REMOVE" in the subject line
> at 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/CALTGpg9f4N4RcgSproYeV6%2BJ%2BozaZuooQOgkvEu833CK3pLwiQ%40mail.gmail.com
> 
> .
>

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


Yousufuddin-UI.docx
Description: MS-Word 2007 document


Re: [android-developers] ReactJS Developer || Minneapolis, MN || Long-term

2019-11-01 Thread Jessy B
H1B
65


Thanks & Regards
Jessy,
je...@theegiants.com
515-604-7186


On Fri, 1 Nov 2019 at 23:41, adam noel  wrote:

> may i know the rate and visa status
>
> On Fri, Nov 1, 2019 at 12:56 PM Jessy B 
> wrote:
>
>>
>>
>>
>> Thanks & Regards
>> Jessy,
>> je...@theegiants.com
>> 515-604-7186
>>
>>
>> On Fri, 1 Nov 2019 at 23:16, Pankaj Kumar  wrote:
>>
>>> Hello,
>>>
>>>
>>>
>>> Please go through the requirement and let me know your interest.
>>>
>>>
>>>
>>> *We have interview slots available and it’s exclusive requirement.*
>>>
>>>
>>>
>>> *ReactJS Developer – 15 Positions*
>>>
>>> *Location: **Minneapolis, MN*
>>>
>>> *Duration: Long-term*
>>>
>>> •  At least *8 years* of professional development experience with
>>> significant exposure to working on complex projects with cross functional
>>> teams
>>>
>>> •  Extremely strong JavaScript framework and Front-End Development
>>> experience
>>>
>>> •  *Minimum of 2 years’ experience with ReactJS *
>>>
>>> •  Strong Node.JS experience is highly desired
>>>
>>> •  Must have proven experience building smart dynamic websites
>>> using JavaScript frameworks
>>>
>>> •  A solid background in NoSQL and/or relational databases.
>>>
>>> •  Experience with scripting languages like Python, Ruby, etc. is
>>> highly desired
>>>
>>> •  Experience with SSRS would be preferred.
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>> *Pankaj Kumar*
>>>
>>> *ST Global LLC*
>>>
>>> Direct: 513-729-7021
>>>
>>> Fax: 206-319-4579
>>>
>>> pan...@stglobaltech.com
>>>
>>> www.stglobaltech.com
>>>
>>>
>>>
>>> Note: We respect your Online Privacy. This is not an unsolicited mail.
>>> Under Bills.1618 Title III passed by the 105th U.S. Congress this mail
>>> cannot be considered Spam as long as we include Contact information and a
>>> method to be removed from our mailing list. If you are not interested in
>>> receiving our e-mails then please reply with a "REMOVE" in the subject line
>>> at 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 view this discussion on the web visit
>>> https://groups.google.com/d/msgid/android-developers/CALTGpg9f4N4RcgSproYeV6%2BJ%2BozaZuooQOgkvEu833CK3pLwiQ%40mail.gmail.com
>>> <https://groups.google.com/d/msgid/android-developers/CALTGpg9f4N4RcgSproYeV6%2BJ%2BozaZuooQOgkvEu833CK3pLwiQ%40mail.gmail.com?utm_medium=email&utm_source=footer>
>>> .
>>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Android Developers" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to android-developers+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/android-developers/CA%2BgfJh7-tCdLEDzb8Xq2%3DTFeVhRJEG%3Di47DUtbeAOoR6s%3D52SA%40mail.gmail.com
>> <https://groups.google.com/d/msgid/android-developers/CA%2BgfJh7-tCdLEDzb8Xq2%3DTFeVhRJEG%3Di47DUtbeAOoR6s%3D52SA%40mail.gmail.com?utm_medium=email&utm_source=footer>
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/CAOjKiGraf4rFuEham7oxp14HHyQV6i%2BDoVxAcHrxg0UNS7_YmA%40mail.gmail.com
> <https://groups.google.com/d/msgid/android-developers/CAOjKiGraf4rFuEham7oxp14HHyQV6i%2BDoVxAcHrxg0UNS7_YmA%40mail.gmail.com?utm_medium=email&utm_source=footer>
> .
>

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


Re: [android-developers] ReactJS Developer || Minneapolis, MN || Long-term

2019-11-01 Thread Jessy B
H1B
Will give passport
he project is done
will give time sheet
03/11/1993



Thanks & Regards
Jessy,
je...@theegiants.com
515-604-7186


On Sat, 2 Nov 2019 at 00:07, adam noel  wrote:

> may i know the DOB and can you share passport number and current project
> time sheet for submission
> if you are interest let me know
>
> On Fri, Nov 1, 2019 at 1:24 PM Jessy B 
> wrote:
>
>> H1B
>> 65
>>
>>
>> Thanks & Regards
>> Jessy,
>> je...@theegiants.com
>> 515-604-7186
>>
>>
>> On Fri, 1 Nov 2019 at 23:41, adam noel  wrote:
>>
>>> may i know the rate and visa status
>>>
>>> On Fri, Nov 1, 2019 at 12:56 PM Jessy B 
>>> wrote:
>>>
>>>>
>>>>
>>>>
>>>> Thanks & Regards
>>>> Jessy,
>>>> je...@theegiants.com
>>>> 515-604-7186
>>>>
>>>>
>>>> On Fri, 1 Nov 2019 at 23:16, Pankaj Kumar 
>>>> wrote:
>>>>
>>>>> Hello,
>>>>>
>>>>>
>>>>>
>>>>> Please go through the requirement and let me know your interest.
>>>>>
>>>>>
>>>>>
>>>>> *We have interview slots available and it’s exclusive requirement.*
>>>>>
>>>>>
>>>>>
>>>>> *ReactJS Developer – 15 Positions*
>>>>>
>>>>> *Location: **Minneapolis, MN*
>>>>>
>>>>> *Duration: Long-term*
>>>>>
>>>>> •  At least *8 years* of professional development experience with
>>>>> significant exposure to working on complex projects with cross functional
>>>>> teams
>>>>>
>>>>> •  Extremely strong JavaScript framework and Front-End
>>>>> Development experience
>>>>>
>>>>> •  *Minimum of 2 years’ experience with ReactJS *
>>>>>
>>>>> •  Strong Node.JS experience is highly desired
>>>>>
>>>>> •  Must have proven experience building smart dynamic websites
>>>>> using JavaScript frameworks
>>>>>
>>>>> •  A solid background in NoSQL and/or relational databases.
>>>>>
>>>>> •  Experience with scripting languages like Python, Ruby, etc. is
>>>>> highly desired
>>>>>
>>>>> •  Experience with SSRS would be preferred.
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> *Pankaj Kumar*
>>>>>
>>>>> *ST Global LLC*
>>>>>
>>>>> Direct: 513-729-7021
>>>>>
>>>>> Fax: 206-319-4579
>>>>>
>>>>> pan...@stglobaltech.com
>>>>>
>>>>> www.stglobaltech.com
>>>>>
>>>>>
>>>>>
>>>>> Note: We respect your Online Privacy. This is not an unsolicited mail.
>>>>> Under Bills.1618 Title III passed by the 105th U.S. Congress this mail
>>>>> cannot be considered Spam as long as we include Contact information and a
>>>>> method to be removed from our mailing list. If you are not interested in
>>>>> receiving our e-mails then please reply with a "REMOVE" in the subject 
>>>>> line
>>>>> at 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 view this discussion on the web visit
>>>>> https://groups.google.com/d/msgid/android-developers/CALTGpg9f4N4RcgSproYeV6%2BJ%2BozaZuooQOgkvEu833CK3pLwiQ%40mail.gmail.com
>>>>> <https://groups.google.com/d/msgid/android-developers/CALTGpg9f4N4RcgSproYeV6%2BJ%2BozaZuooQOgkvEu833CK3pLwiQ%40mail.gmail.com?utm_medium=email&utm_source=footer>
>>>>> .
>>>>>
>>>> --
>>>> You received this message because you are subscribed to the Goo

Re: [android-developers] ReactJS Developer || Minneapolis, MN || Long-term

2019-11-01 Thread Jessy B
We will provide everything please get back to me


Thanks & Regards
Jessy,
je...@theegiants.com
515-604-7186


On Sat, 2 Nov 2019 at 00:07, adam noel  wrote:

> may i know the DOB and can you share passport number and current project
> time sheet for submission
> if you are interest let me know
>
> On Fri, Nov 1, 2019 at 1:24 PM Jessy B 
> wrote:
>
>> H1B
>> 65
>>
>>
>> Thanks & Regards
>> Jessy,
>> je...@theegiants.com
>> 515-604-7186
>>
>>
>> On Fri, 1 Nov 2019 at 23:41, adam noel  wrote:
>>
>>> may i know the rate and visa status
>>>
>>> On Fri, Nov 1, 2019 at 12:56 PM Jessy B 
>>> wrote:
>>>
>>>>
>>>>
>>>>
>>>> Thanks & Regards
>>>> Jessy,
>>>> je...@theegiants.com
>>>> 515-604-7186
>>>>
>>>>
>>>> On Fri, 1 Nov 2019 at 23:16, Pankaj Kumar 
>>>> wrote:
>>>>
>>>>> Hello,
>>>>>
>>>>>
>>>>>
>>>>> Please go through the requirement and let me know your interest.
>>>>>
>>>>>
>>>>>
>>>>> *We have interview slots available and it’s exclusive requirement.*
>>>>>
>>>>>
>>>>>
>>>>> *ReactJS Developer – 15 Positions*
>>>>>
>>>>> *Location: **Minneapolis, MN*
>>>>>
>>>>> *Duration: Long-term*
>>>>>
>>>>> •  At least *8 years* of professional development experience with
>>>>> significant exposure to working on complex projects with cross functional
>>>>> teams
>>>>>
>>>>> •  Extremely strong JavaScript framework and Front-End
>>>>> Development experience
>>>>>
>>>>> •  *Minimum of 2 years’ experience with ReactJS *
>>>>>
>>>>> •  Strong Node.JS experience is highly desired
>>>>>
>>>>> •  Must have proven experience building smart dynamic websites
>>>>> using JavaScript frameworks
>>>>>
>>>>> •  A solid background in NoSQL and/or relational databases.
>>>>>
>>>>> •  Experience with scripting languages like Python, Ruby, etc. is
>>>>> highly desired
>>>>>
>>>>> •  Experience with SSRS would be preferred.
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> *Pankaj Kumar*
>>>>>
>>>>> *ST Global LLC*
>>>>>
>>>>> Direct: 513-729-7021
>>>>>
>>>>> Fax: 206-319-4579
>>>>>
>>>>> pan...@stglobaltech.com
>>>>>
>>>>> www.stglobaltech.com
>>>>>
>>>>>
>>>>>
>>>>> Note: We respect your Online Privacy. This is not an unsolicited mail.
>>>>> Under Bills.1618 Title III passed by the 105th U.S. Congress this mail
>>>>> cannot be considered Spam as long as we include Contact information and a
>>>>> method to be removed from our mailing list. If you are not interested in
>>>>> receiving our e-mails then please reply with a "REMOVE" in the subject 
>>>>> line
>>>>> at 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 view this discussion on the web visit
>>>>> https://groups.google.com/d/msgid/android-developers/CALTGpg9f4N4RcgSproYeV6%2BJ%2BozaZuooQOgkvEu833CK3pLwiQ%40mail.gmail.com
>>>>> <https://groups.google.com/d/msgid/android-developers/CALTGpg9f4N4RcgSproYeV6%2BJ%2BozaZuooQOgkvEu833CK3pLwiQ%40mail.gmail.com?utm_medium=email&utm_source=footer>
>>>>> .
>>>>>
>>>> --
>>>> You received this message because you are subscribed to the Google
>>>> Groups

Re: [android-developers] Immediate Requirement ||| C# . Net Developer

2019-11-04 Thread Jessy B
Thanks & Regards
Jessy,
je...@theegiants.com
515-604-7186


On Mon, 4 Nov 2019 at 20:05, Aadil Ahmed  wrote:

> Hello Connections ,
>
> We have Immediate Opening for "C# . Net Developer "
> Location - Mayfield , OH
> Client - Direct.
>
> Please Share your Consultant Resume - aa...@sakintech.com
>
> Thanks,
> AADIL AHMED | US IT Recruiter
> Email ID :aa...@sakintech.com
> Direct 1-925-434-9410
> www.Sakintech.com.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/581039b9-903d-41ad-b534-5134de2e7c88%40googlegroups.com
> 
> .
>

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


Niharika-.Net Profile.docx
Description: MS-Word 2007 document


VenkateshwarReddy.Net Resume.docx
Description: MS-Word 2007 document


[android-developers] HOT LIST

2019-11-04 Thread Jessy B
Hi, All
Please find attached HOT LIST If you have any positions please let me know

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/4348bf76-7baa-478a-88ef-6be37604bd3d%40googlegroups.com.


Hot List.docx
Description: MS-Word 2007 document


Re: [android-developers] -----.Net Developer with strong MVC .......experience required at Baltimore , MD for long term project.

2019-11-04 Thread Jessy B
Thanks & Regards
Jessy,
je...@theegiants.com
515-604-7186


On Tue, 5 Nov 2019 at 01:00, naresh linkedin 
wrote:

> Hello ,
> Hope you are doing well today,
>
> I have an Excellent *.Net Developer with strong MVC experience *Position
> available in *Baltimore, MD. *If you want to take your Career to the next
> Level than this is the time to apply. Please share your most updated resume
> at b...@tharutechnologies.com with the best number to reach you.
>
> *If you are not looking for a job Change. Then Please pass this
> requirements to your friends or Colleague who might be in job Search.*
>
>
>
>
>
>
>
> *Job SummaryPosition : .Net Developer with strong MVC experience
> Location : Baltimore, MD Project Duration: 9 to 12 Months*
>
>
> *JOB SUMMARY*
> Functioning at a master level of technical expertise, supports application
> development, implementation and maintenance efforts across the Information
> Technology Department. Operates as a technical consultant or technical team
> leader for one or more project teams. Develops project goals and evaluates
> project implementation plans. A high degree of independent judgment and
> creativity is expected.
>
>
> *ESSENTIAL FUNCTIONS*
> Functions as technical consultant projects to which assigned. Provides
> technical leadership on complex projects. Formulates or defines system
> scope and objectives, performs time estimates, and regularly reviews status
> of projects.
> Responsible for program design, coding, testing, debugging and
> documentation.
> Reviews, corrects and/or develops application code to address user needs
> or resolve user problems.
> Develops documentation and user training modules.
> Synthesizes information, designs and implements project plans and
> establishes project objectives and milestones.
> Provides status reports, problem summaries, and project status as required.
> Interfaces with application users, database administrators and special
> project teams.
> Works independently designing and developing new software products or
> major enhancements to existing software. Functions as highest level
> technical expert, addressing problems of systems integration,
> compatibility, and multiple platforms.
>
>
>
> *QUALIFICATIONS*
> Bachelor's degree in Computer Science or a closely related field and
> technical certification(s) and five (5) years directly related experience
> Experienced in Project Management and life cycle management of large or
> complex IT projects.
> Experienced in the design and implementation of technical project plans
> and demonstrated competency in achieving objectives.
> Exceptional written and oral communication skills.
> Five (5) or more years of experience developing ASP.NET applications and
> at least Two (2) years of experience in MVC using Microsoft Visual Studio
> development environment.
> Five (5) or more years of experience developing reports, using tools such
> as Crystal reports, SQL Server Reporting Services, or similar.
> Five (5) or more years of experience in creating analytical cubes and
> creating ETL packages using SSIS or any other tool.
> Two (2) or more years of experience with Business Intelligence
> presentation tools such as Tableau, Power BI or similar tools
> Two (2) or more years of experience in CSS stylesheet, HTML5, jQuery and
> JavaScript
> K12 Education sector experience preferred
>
>
>
>
>
>   I look forward to hear back from you soon.
>
>
>
> Thanks and Regards
>
> *Ben Smith* – Sr IT  Recruiter
> Direct – (571) 444-6029
>
> b...@tharutechnologies.com
>
> Tharu Technologies
>
> 4000 Legato RD Suite 1100,
> Fairfax, VA 22033
> www.tharutechnologies.com
>
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/e10a3f6c-b3b6-4041-a6dc-e5958140f033%40googlegroups.com
> <https://groups.google.com/d/msgid/android-developers/e10a3f6c-b3b6-4041-a6dc-e5958140f033%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
>

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


Niharika-.Net Profile.docx
Description: MS-Word 2007 document


VenkateshwarReddy.Net Resume.docx
Description: MS-Word 2007 document


Re: [android-developers] -----.Net Developer with strong MVC .....experience required at Baltimore , MD for long term project.

2019-11-04 Thread Jessy B
Thanks & Regards
Jessy,
je...@theegiants.com
515-604-7186


On Tue, 5 Nov 2019 at 01:00, naresh linkedin 
wrote:

> Hello ,
> Hope you are doing well today,
>
> I have an Excellent *.Net Developer with strong MVC experience *Position
> available in *Baltimore, MD. *If you want to take your Career to the next
> Level than this is the time to apply. Please share your most updated resume
> at b...@tharutechnologies.com with the best number to reach you.
>
> *If you are not looking for a job Change. Then Please pass this
> requirements to your friends or Colleague who might be in job Search.*
>
>
>
>
>
>
>
> *Job SummaryPosition : .Net Developer with strong MVC experience
> Location : Baltimore, MD Project Duration: 9 to 12 Months*
>
>
> *JOB SUMMARY*
> Functioning at a master level of technical expertise, supports application
> development, implementation and maintenance efforts across the Information
> Technology Department. Operates as a technical consultant or technical team
> leader for one or more project teams. Develops project goals and evaluates
> project implementation plans. A high degree of independent judgment and
> creativity is expected.
>
>
> *ESSENTIAL FUNCTIONS*
> Functions as technical consultant projects to which assigned. Provides
> technical leadership on complex projects. Formulates or defines system
> scope and objectives, performs time estimates, and regularly reviews status
> of projects.
> Responsible for program design, coding, testing, debugging and
> documentation.
> Reviews, corrects and/or develops application code to address user needs
> or resolve user problems.
> Develops documentation and user training modules.
> Synthesizes information, designs and implements project plans and
> establishes project objectives and milestones.
> Provides status reports, problem summaries, and project status as required.
> Interfaces with application users, database administrators and special
> project teams.
> Works independently designing and developing new software products or
> major enhancements to existing software. Functions as highest level
> technical expert, addressing problems of systems integration,
> compatibility, and multiple platforms.
>
>
>
> *QUALIFICATIONS*
> Bachelor's degree in Computer Science or a closely related field and
> technical certification(s) and five (5) years directly related experience
> Experienced in Project Management and life cycle management of large or
> complex IT projects.
> Experienced in the design and implementation of technical project plans
> and demonstrated competency in achieving objectives.
> Exceptional written and oral communication skills.
> Five (5) or more years of experience developing ASP.NET applications and
> at least Two (2) years of experience in MVC using Microsoft Visual Studio
> development environment.
> Five (5) or more years of experience developing reports, using tools such
> as Crystal reports, SQL Server Reporting Services, or similar.
> Five (5) or more years of experience in creating analytical cubes and
> creating ETL packages using SSIS or any other tool.
> Two (2) or more years of experience with Business Intelligence
> presentation tools such as Tableau, Power BI or similar tools
> Two (2) or more years of experience in CSS stylesheet, HTML5, jQuery and
> JavaScript
> K12 Education sector experience preferred
>
>
>
>
>
>   I look forward to hear back from you soon.
>
>
>
> Thanks and Regards
>
> *Ben Smith* – Sr IT  Recruiter
> Direct – (571) 444-6029
>
> b...@tharutechnologies.com
>
> Tharu Technologies
>
> 4000 Legato RD Suite 1100,
> Fairfax, VA 22033
> www.tharutechnologies.com
>
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/8368e1b6-69ef-4d03-8ad8-950e688a843f%40googlegroups.com
> <https://groups.google.com/d/msgid/android-developers/8368e1b6-69ef-4d03-8ad8-950e688a843f%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
>

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


Niharika-.Net Profile.docx
Description: MS-Word 2007 document


VenkateshwarReddy.Net Resume.docx
Description: MS-Word 2007 document


Re: [android-developers] Immediate Requirement ||| Dot Net developer

2019-11-05 Thread Jessy B
Thanks & Regards
Jessy,
je...@theegiants.com
515-604-7186


On Tue, 5 Nov 2019 at 20:48, Aadil Ahmed  wrote:

> Hello Connections ,
>
> We have Immediate Opening for . Net Developer - MayField , OH.
>
> Please share your Consultant resume - aa...@sakintech.com
>
> Thanks,
> AADIL AHMED | US IT Recruiter
> Email ID :aa...@sakintech.com
> Direct 1-925-434-9410
> www.Sakintech.com.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/bbb4d79a-19e1-40de-9a3c-730ad5b6cefd%40googlegroups.com
> 
> .
>

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


VenkateshwarReddy.Net Resume.docx
Description: MS-Word 2007 document


Niharika-.Net Profile.docx
Description: MS-Word 2007 document


Re: [android-developers] Immediate Requirement ||| Dot Net developer

2019-11-05 Thread Benz B
any .Net Fullstack Developer available who are on H1B ??


On Tue, Nov 5, 2019 at 8:56 PM Jessy B 
wrote:

>
>
>
> Thanks & Regards
> Jessy,
> je...@theegiants.com
> 515-604-7186
>
>
> On Tue, 5 Nov 2019 at 20:48, Aadil Ahmed 
> wrote:
>
>> Hello Connections ,
>>
>> We have Immediate Opening for . Net Developer - MayField , OH.
>>
>> Please share your Consultant resume - aa...@sakintech.com
>>
>> Thanks,
>> AADIL AHMED | US IT Recruiter
>> Email ID :aa...@sakintech.com
>> Direct 1-925-434-9410
>> www.Sakintech.com.
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Android Developers" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to android-developers+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/android-developers/bbb4d79a-19e1-40de-9a3c-730ad5b6cefd%40googlegroups.com
>> <https://groups.google.com/d/msgid/android-developers/bbb4d79a-19e1-40de-9a3c-730ad5b6cefd%40googlegroups.com?utm_medium=email&utm_source=footer>
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/CA%2BgfJh7Gijco0Jw_qdanZPxLp58TuGEM0LzKfVRatmowhci%3DKA%40mail.gmail.com
> <https://groups.google.com/d/msgid/android-developers/CA%2BgfJh7Gijco0Jw_qdanZPxLp58TuGEM0LzKfVRatmowhci%3DKA%40mail.gmail.com?utm_medium=email&utm_source=footer>
> .
>

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


Re: [android-developers] Immediate Requirement ||| Dot Net developer

2019-11-05 Thread Jessy B
Thanks & Regards
Jessy,
je...@theegiants.com
515-604-7186


On Tue, 5 Nov 2019 at 21:04, Benz B  wrote:

> any .Net Fullstack Developer available who are on H1B ??
>
>
> On Tue, Nov 5, 2019 at 8:56 PM Jessy B 
> wrote:
>
>>
>>
>>
>> Thanks & Regards
>> Jessy,
>> je...@theegiants.com
>> 515-604-7186
>>
>>
>> On Tue, 5 Nov 2019 at 20:48, Aadil Ahmed 
>> wrote:
>>
>>> Hello Connections ,
>>>
>>> We have Immediate Opening for . Net Developer - MayField , OH.
>>>
>>> Please share your Consultant resume - aa...@sakintech.com
>>>
>>> Thanks,
>>> AADIL AHMED | US IT Recruiter
>>> Email ID :aa...@sakintech.com
>>> Direct 1-925-434-9410
>>> www.Sakintech.com.
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Android Developers" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to android-developers+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/android-developers/bbb4d79a-19e1-40de-9a3c-730ad5b6cefd%40googlegroups.com
>>> <https://groups.google.com/d/msgid/android-developers/bbb4d79a-19e1-40de-9a3c-730ad5b6cefd%40googlegroups.com?utm_medium=email&utm_source=footer>
>>> .
>>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Android Developers" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to android-developers+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/android-developers/CA%2BgfJh7Gijco0Jw_qdanZPxLp58TuGEM0LzKfVRatmowhci%3DKA%40mail.gmail.com
>> <https://groups.google.com/d/msgid/android-developers/CA%2BgfJh7Gijco0Jw_qdanZPxLp58TuGEM0LzKfVRatmowhci%3DKA%40mail.gmail.com?utm_medium=email&utm_source=footer>
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/CAEgALjksLtxkEwJXPU%2BZjNFgDfab8AJ1vbyxYd2m2nJDcWRjKw%40mail.gmail.com
> <https://groups.google.com/d/msgid/android-developers/CAEgALjksLtxkEwJXPU%2BZjNFgDfab8AJ1vbyxYd2m2nJDcWRjKw%40mail.gmail.com?utm_medium=email&utm_source=footer>
> .
>

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


VenkateshwarReddy.Net Resume.docx
Description: MS-Word 2007 document


Niharika-.Net Profile.docx
Description: MS-Word 2007 document


[android-developers] ADEPT HOTLIST

2016-12-22 Thread pramod b




-- 
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/e55188d6-8ec3-4483-9743-75a805ae1685%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Change Structure used by Android Studio to Create the 'gen' Folder

2016-01-27 Thread David B
I am writing an Android app that was started in Android Studio, but I would 
like to be able to work on the app using AIDE as well, but the structure 
used by AIDE to generate the 'gen' folder (where the R class is stored) is 
different from Android Studio, causing conflicts that can only be resolved 
by adding and removing import statements for the R class depending upon 
which IDE I am using. While I could do this, I would rather change the 
structure the Android Studio uses to generate this folder so that the 
project would be compatible with both IDEs without me needing to intervene. 
I do not want the change to be system-wide for AIDE, but rather only for 
this project. I could I go about doing 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/1f41237c-136f-4e30-b32b-43db3e7e710e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Contact Android Studio

2016-02-09 Thread Dilip B
We train students across educational institutions in India in Android. In 
order for us to deliver more value to the certificate we provide, we would 
like to have Android Studio Endorse our course. Is there an essential 
medium for us to get in touch with 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/278fbe2b-65b6-4f13-ac8d-da6ffa4ff04c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Google Play Developer Console - Supported devices 0.

2016-03-30 Thread Chris B
Hello,

I am launching my first android app in the google play store. If i browse 
to the app in the store, the store will show that none of my devices is 
supported. In the developper console under apk is every device in the 
supported list and none in the unsupported list.


could someone help me please?

my manifest:



http://schemas.android.com/apk/res/android";
package="com.cbach.srctrainer.windows"
android:versionCode="2"
android:versionName="1.01" >


































-- 
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/0e9bded8-2369-4778-8474-51fcd4938316%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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

2016-05-20 Thread B Wolf
I am having the same error...details is given on the screenshotif you 
get a solution, *please post it here.*

On Friday, May 20, 2016 at 5:12:15 AM UTC+6, 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/4de78e39-65f2-45a0-b7c9-3e2e7dd045f8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Missing something when sizing images to support different screens

2016-07-01 Thread Bob B.
I have been reading over this information, forums, developer site, etc. for 
the past week and still have been unsuccessful in fully understanding how 
to size images such that things appear acceptable on different sized 
devices.  Certainly there is something I am missing, as this can't be that 
difficult, can it?  If someone could please point me in the right 
direction, I would be ever so grateful.

I am using qualifiers on the drawable and layout folders in an attempt to 
handle the various screen sizes and densities.

I have created drawable-ldpi, drawable-mdpi, drawable-hdpi, and 
drawable-xhdpi
I have created layout-w320dp, layout-w480dp, layout-w600dp, and 
layout-w720dp

I have placed a copy of the layout I am dealing with in each of the layout 
folders so I can adjust each as needed.

I have placed my graphics that I am testing with in their respective 
drawable folder.  

I initially designed my app using a Galaxy Tab 10" and scaled my graphics 
(png) files in GIMP with a dpi of 320 and sized to fit how I wanted them to 
look in the 10" environment.

I then took the original graphic (unmodified) that was used for the 
previously mentioned image and made the mdpi version by changing the dpi to 
160 and setting the pixel width/height to 1/2 of the previously mentioned 
image.

For the rest, I followed the information from the design guide of...

ldpi = .75 of the mdpi
hdpi = 1.5 of the mdpi
With the first image created being the xhdpi

Question 1:  Should you scale all images such that the following are true, 
regardless of the dimensions of each image?

- ldpi images should always be 120dpi
- mdpi images should always be 160dpi
- hdpi images should always be 240dpi
- xhdpi images should always be 320dpi 

Here is an example of what I have done and what specifically is not working.

I have a logo that is 400 x 400 and has a dpi of 320.  This image looks 
beautiful on my tablet and the image file resides in the xhdpi folder
I then took a copy of this image and scaled it to 200 x 200 with a dpi of 
160 for my mdpi version and placed the file in the mdpi folder.
When viewing a 10" device in Android Studio, it looks great
When viewing a phone 3-4" device in Android Studio, the logo in HUGE!

My goal is basically this.

If I have an image that takes up exactly 1/4 of my screen on a tablet in 
the lower left corner, I want that image to take up the same 1/4 of the 
screen on the smaller devices, not be huge, taking up pretty much the 
entire screen.

Question 2:  I thought Android was supposed to down-sample the images of 
larger than what was needed so it would essentially scale things down for 
me, with a better goal of providing assets that are close to where they 
should be, which is what I am attempting to do.  Is this not the case?

There has to be some formula / step that I am simply missing here so if 
anyone could shed some light on this for me, I would greatly appreciate it.

Thank you all!

Bob


-- 
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/390111ec-3b70-4668-8d35-a688a974fe26%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] SURELY, someone out there can help/explain this to me.

2016-07-02 Thread Bob B.
Hi all, 

(as you read through this)
-- I am not hard coding ANY dimensions or sizes for anything
-- All elements use wrap content and match parent
-- I have read over the Android development for different screen sizes so 
many times I can almost recite the page (not to say I haven't missed 
something, so if I have, please point it out).

I am literally on weeks of trying to figure this out and have read (many 
times) every resource I can find and am still clearly missing something.

I am attempting to get image assets to stay in proportion to the screen on 
different devices.  This seems very fundamental and there is tons of 
documentation, but I am still struggling and would greatly appreciate some 
assistance.

I have created 5 sets of images which look like the following.

ldpi
- dpi of the images is 36 x 36

mdpi 
- dpi of the images is 48 x 48

hdpi
- dpi of the images is 72 x 72

xhdpi
- dpi of the images is 96 x 96

xxhdpi 
- dpi of the images is 144 x 144

I am designing in Android Studio and using one of the 10" xhdpi tablet 
devices to design against.

I have a square image that I am placing 4 times (roughly evenly spaced) at 
the top of my screen and when viewing the screen, the image takes up 
roughly one inch or so. 

To accomplish this, I created an image that is 325x325px with a dpi of 96 
and it looks fantastic.

The problem comes when I try to view my app on smaller device with the same 
density of xhdpi.  In these situations, the image is HUGE and takes up far 
more space than it should.

I believe I understand the difference between pixel (tablet that is 1200 px 
x 800 px) and dip/dp.  Given that the dimensions in pixels are 1200 x 800 
and the density is xhdpi, the dimension in dp would be 600 x 400.

This is where I am getting totally lost.  Clearly I am missing something 
and there must be a way to keep images proportioned correctly when you go 
from a small device size to a larger device size when both use the same 
density (for example, a  800 pixel x 600 px 3" phone and a 2500 pixel x 
1600 pixel 10" tablet which both have a density of xhdpi).

I do also realize that this is only 1/2 of the equation and the use of 
additional layout folders with qualifiers will be needed to potentially 
make adjustments for different screen sizes.  That part I am ok with but I 
am losing my mind over trying to figure out how to get my image assets to 
look the way I need.

Any help would be OH so much appreciated.

One final note.  I have seen several posts where people have stated, "Just 
use xhdpi assets and Android will scale everything for you."  Yes, I know 
this is a performance issue, but even trying that, it certainly is not 
scaling things down for me.  One thing I have noticed is that if I set the 
background property of a layout to an image asset, it seems to display as 
I'd want on every device, regardless of size or density.  However, the 
issue I am having is with image views specifically, so does my problem 
exist there?

Thanks!
Bob

-- 
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/d9c3d809-d511-4800-8234-bc2512b4869e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Android virtual device help

2016-07-04 Thread Bob B.
Hello all, 

I am looking to be able to test a wide variety of screens in Android studio 
and am wondering if someone could point me to a resource or provide some 
assistance?

My goal is to be able to develop against the following.

sw240dp...

sw320dp-mdpi
sw320dp-hdpi
sw320dp-xhdpi
sw320dp-xxhdpi
sw320dp-xxxhdpi

sw600dp-mdpi
sw600dp-hdpi
sw600dp-xhdpi
sw600dp-xxhdpi
sw600dp-xxxhdp8

... the same for sw720dp

I am guessing there are profiles you can download and load in to the AVD 
manager?  Or do you need to build them manually?  

I have tried to setup a few of them but I am not fully understanding the 
AVD yet for getting new device definitions in to it.

I am using this many qualifiers due to the fact that I have some images 
that I need to stay proportional between smaller and larger same density 
devices.  Unfortunately, Androids scaling to ensure things stay the same 
size between a 3" phone and 10" tablet that both happen to have a dp of 320 
is not helping me here.

Thanks!
Bob


-- 
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/50ec71e5-9ee4-4ebb-89d9-a78f2c3d1d47%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Am I missing a qualifier?

2016-07-04 Thread Bob B.
Hello all, 

I am continue to build my knowledge around Android design and could use 
some clarification.

I am trying to understand how you can get two different sized devices which 
have the same dpi use two different image assets.

I have built an application which has a significant number of res folders 
which use one or more resource qualifiers.

For example, I have the following.

drawable-sw320dp-mdpi
drawable-sw320dp-xxhdpi
drawable-sw800dp-mdpi

layout-sw720dp-mdpi
layout-sw720dp-xxxhdpi
layout-sw800dp-mdpi

I've had to do this in order to keep images in my application proportional 
from one screen size / density to the next.

Here is where things are getting a bit rough.

Take a phone that is listed at 768x1280, mdpi, 160dp.

If I am understanding things correctly, this means the following.

It is an mdpi device so 1px = 1dp
The size of the device in dp is 768x1280
This device will use my layout in the layout-sw800dp-mdpi folder
It should use the image asset that is in my drawable-sw800dp-mdpi folder

Am I correct up to this point?

Now, let's say I have a tablet, that is 2048 x 1536 (Galaxy Tab S2) and is 
mdpi.

Does this mean that it will use the same layout and drawable resources as 
the previously mentioned phone?

Does this also mean that the resource in my drawable folder should be as 
follows?

dpi = 48
size (what fits my needs)

Given this information is correct, I would expect that the single image of 
sizeX and dpi of 48 would look proportional on both devices, which 
unfortunately I am not always finding to be correct.

If someone could tell me if I'm in the ball park or WAY off base on my 
understanding up to this point, I would really appreciate it.

Thank you!
Bob





-- 
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/fde4f66f-f9bd-4310-890e-93bb3c561100%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Android app licensing error class not found

2016-07-16 Thread Bob B.


I have worked through the example in the SDK and am now receiving the 
following error when trying to run the demo app.


Caused by: java.lang.ClassNotFoundException: Didn't find class 
"com.rythmair.licenseverification.MainActivity" on path: DexPathList[[zip 
file 
"/data/app/com.rythmair.licenseverification-2/base.apk"],nativeLibraryDirectories=[/vendor/lib,
 
/system/lib]]


Here is my full MainActivity


package com.rythmair.licenseverification;
import android.app.Activity;import android.app.AlertDialog;import 
android.app.Dialog;import android.content.DialogInterface;import 
android.content.Intent;import android.net.Uri;import android.os.Bundle;import 
android.os.Handler;import android.provider.Settings;import 
android.util.Log;import android.view.View;import android.widget.Button;import 
android.widget.TextView;
import com.google.android.vending.licensing.AESObfuscator;import 
com.google.android.vending.licensing.LicenseChecker;import 
com.google.android.vending.licensing.LicenseCheckerCallback;import 
com.google.android.vending.licensing.Policy;import 
com.google.android.vending.licensing.ServerManagedPolicy;
public class MainActivity extends Activity {

String tag = "LICENSE: ";

private static final String BASE64_PUBLIC_KEY = "MY_KEY_REMOVED";

// Generate your own 20 random bytes, and put them here.
private static final byte[] SALT = new byte[] {
-46, 65, 30, -128, -103, -57, 74, -64, 51, 88, -95, -45, 77, -117, 
-36, -113, -11, 32, -64,
89
};

private TextView mStatusText;
private Button mCheckLicenseButton;

private LicenseCheckerCallback mLicenseCheckerCallback;
private LicenseChecker mChecker;
// A handler on the UI thread.
private Handler mHandler;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

Log.i(tag, "Just in onCreate method.");

mStatusText = (TextView) findViewById(R.id.status_text);
mCheckLicenseButton = (Button) findViewById(R.id.check_license_button);
mCheckLicenseButton.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
doCheck();
}
});

mHandler = new Handler();
Log.i(tag, "Just set mHandler to new Handler.");
// Try to use more data here. ANDROID_ID is a single point of attack.
String deviceId = Settings.Secure.getString(getContentResolver(), 
Settings.Secure.ANDROID_ID);

// Library calls this when it's done.
Log.i(tag, "Setting new mLicenseCheckerCallback");
mLicenseCheckerCallback = new MyLicenseCheckerCallback();

// Construct the LicenseChecker with a policy.
Log.i(tag, "Setting mChecker variable.");
mChecker = new LicenseChecker(
this, new ServerManagedPolicy(this,
new AESObfuscator(SALT, getPackageName(), deviceId)),
BASE64_PUBLIC_KEY);
doCheck();
}

protected Dialog onCreateDialog(int id) {
final boolean bRetry = id == 1;
return new AlertDialog.Builder(this)
.setTitle(R.string.unlicensed_dialog_title)
.setMessage(bRetry ? R.string.unlicensed_dialog_retry_body : 
R.string.unlicensed_dialog_body)
.setPositiveButton(bRetry ? R.string.retry_button : 
R.string.buy_button, new DialogInterface.OnClickListener() {
boolean mRetry = bRetry;
public void onClick(DialogInterface dialog, int which) {
if ( mRetry ) {
doCheck();
} else {
Intent marketIntent = new 
Intent(Intent.ACTION_VIEW, Uri.parse(
"http://market.android.com/details?id="; + 
getPackageName()));
startActivity(marketIntent);
}
}
})
.setNegativeButton(R.string.quit_button, new 
DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
finish();
}
}).create();
}

private void doCheck() {
mCheckLicenseButton.setEnabled(false);
setProgressBarIndeterminateVisibility(true);
mStatusText.setText(R.string.checking_license);
mChecker.checkAccess(mLicenseCheckerCallback);
}

private void displayResult(final String result) {
mHandler.post(new Runnable() {
public void run() {
mStatusText.setText(result);
setProgressBarIndeterminateVisibility(false);
mCheckLicenseButton.setEnabled(true);
}
});
}

private void displayDialog(final boolean showRetry) {
mHandler.post(new Runnable() {
publ

[android-developers] Issue with Google play search

2016-07-28 Thread b . seoph
Hi Everyone,

We are recently facing an issue with Google play search. If we search for 
our app in Google play, we are unable to find it. 

Although there is no competition, still the app is not appearing in Google 
play search.  

The app can only be seen from direct URL. 

Can you guys give insight on this issue? Is there anything else that can be 
done from our end? 

Just a note, we have not restricted the app by location or by any means. 

Thanks for your 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/b43aedd0-db6e-4d48-95ce-698d73c4b08f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] MapActivity onTouchEvent

2008-04-02 Thread Alex B

Hi,

Has anyone managed to override onTouchEvent within MapActivity?  I
know that overriding onTouchEvent in MapView is possible, and I have
done that, but I need to do it in MapActivity.  I see it in the API in
the section "Methods inherited from class android.app.Activity".  I
have written the code, and it complies, but the event is not
honoured.  Please let advise me if you have succeeded in this.

Thank you.

@Override
public boolean onTouchEvent(MotionEvent me)
{
// do stuff
return true;
}

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: MapActivity onTouchEvent

2008-04-02 Thread Alex B

Indeed, you are right.  Using dispathTouchEvent worked.  Thank you
kindly!

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: MapActivity onTouchEvent

2008-04-02 Thread Alex B

Sorry, I meant dispatchTouchEvent. I'm correcting it in case anyone
searches for that keyword.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Determining size of SD Card?

2008-10-22 Thread Alex B

This is indeed a significant issue. We should be able to check for
space availability -- this is one important source of error
information that we could be passing on to the user.

Supposedly the media is mounted:
android.os.Environment.MEDIA_MOUNTED.equals("mounted")

Supposedly I can write to the direcotry:
sampleDir.canWrite()

So I try to create a file:
mSampleFile = File.createTempFile(SAMPLE_PREFIX, SAMPLE_EXTENSION,
sampleDir);

But get this uninsightful IO error:
java.io.IOException: Cannot create: /sdcard/x28335.amr

So, one extra check could be for space -- but currently this seems to
be an API limitation.

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



[android-developers] Re: Loading application to actual device through Eclipse?

2008-10-22 Thread B Sreen
Thanks for writing.. great help.
But I can find "Settings > Applications > Development."
I do not know what I am missing. Please help. - Thanks

On Wed, Oct 22, 2008 at 11:39 AM, Rob Franz <[EMAIL PROTECTED]> wrote:

> That would make sense.  I don't have the G1 yet (not available in my non-3G
> area at the moment) so i can't test.
>
>
> On Wed, Oct 22, 2008 at 2:29 PM, Romain Guy <[EMAIL PROTECTED]> wrote:
>
>>
>> You can deploy your application to your phone using the Android
>> Eclipse plugin. All you need is the phone plugged in USB (make sure
>> you have enabled USB debugging in Settings > Applications >
>> Development.) When you "run" your application, it will send it to the
>> phone, or ask you what target you want if you already have an emulator
>> running.
>>
>> On Wed, Oct 22, 2008 at 11:27 AM, Rob Franz <[EMAIL PROTECTED]> wrote:
>> > As far as loading over USB from your machine to your phone, I don't
>> know.
>> >  THat would be great as an extension to Eclipse - perhaps as an option
>> to
>> > the 'Export' menu (deploy to phone...)
>> > But from what I'm reading, the easiest way is to post it to a web server
>> and
>> > download it to your phone.
>> >
>> > On Wed, Oct 22, 2008 at 1:58 PM, Danny <[EMAIL PROTECTED]> wrote:
>> >>
>> >> I have created an application and would like to know how to load the
>> >> application onto an actual device through Eclipse.
>> >>
>> >
>> >
>> > >
>> >
>>
>>
>>
>> --
>> Romain Guy
>> www.curious-creature.org
>>
>>
>>
>
> >
>

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



[android-developers] Re: Simulate key press action.

2008-10-22 Thread B Sreen
I have progressed this far..

Using "android.test.InstrumentationTestCase" in a unit test and running from
a shell could help simulate key press action.
Observe:public void sendKeys(int... keys) Sends a series of key events
through instrumentation and waits for idle. For instance:
sendKeys(KEYCODE_DPAD_LEFT, KEYCODE_DPAD_CENTER).

This is all available on
http://code.google.com/android/reference/android/test/InstrumentationTestCase.html

My problem now: I do not know how to do unit testing in the Android env. Any
clues?

Regards


On Wed, Oct 22, 2008 at 1:01 PM, hackbod <[EMAIL PROTECTED]> wrote:

>
> Note that third party apps can't inject input events into other apps.
> You can only do this from an app launched from the user's shell (and
> so running as the user).
>
> On Oct 22, 11:25 am, "Declan Shanaghy" <[EMAIL PROTECTED]> wrote:
> > The monkey should be able to help here!
> http://code.google.com/android/reference/monkey.html
> >
> > It is configurable but im not sure if it meets your needs 100%.
> > You could enhance it, but at the very least you can copy what it does
> into
> > an app of your own.
> >
> > Ah, you just reminded me of good the ole Code Monkey song!
>  :-Dhttp://www.youtube.com/watch?v=v4Wy7gRGgeA
> >
> > -Original Message-
> > From: android-developers@googlegroups.com
> >
> > [mailto:[EMAIL PROTECTED] On Behalf Of BeeScreen
> > Sent: Wednesday, October 22, 2008 11:15 AM
> > To: Android Developers
> > Subject: [android-developers] Simulate key press action.
> >
> > Hi,
> > I am new to Android dev.
> > Just been asked to research if I can simulate the key press action.
> > Boss wants me to write a program that can press the phone keys instead
> > of me
> > pressing them. Is this possible in Android. Please point me to any
> > clues.
> > Thanks in advance.
> >
> > Regards
> > Beescreen
> >
>

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



[android-developers] Re: How to put apk to G1 Phone

2008-10-23 Thread B Sreen
See if this helps you:
http://code.google.com/android/intro/develop-and-debug.html#developingondevicehardware

Sreenivas

On Thu, Oct 23, 2008 at 9:15 PM, Sudha <[EMAIL PROTECTED]> wrote:

>
> Hi
> can anyone tell me how to install my apk to a G1 phone ?
> ota , datta cable ?
> after downloading do I need to install the apk ?
> Thanks
> >
>

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



[android-developers] Re: Issue with Calendar APIs

2008-10-24 Thread Alex B

In your Android SDK directory, look inside: tools/lib/res/default/xml/
time_zones_by_country.xml

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



[android-developers] Easy way to get Google SID

2008-10-25 Thread Eric B

I created this issue in the Android issue tracker,
http://code.google.com/p/android/issues/detail?id=1073, but I was
wonder (apart from doing it yourself using an HttpClient) if anyone
know of how to get a Google SID in Android?

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



[android-developers] Re: Easy way to get Google SID

2008-10-26 Thread Eric B

I found the "android.permission.GET_ACCOUNTS" permission and there is
a Google Accounts application (in the Application Manager), so it
looks like there is support in the OS for this information.  I tried
Context.getSystemService( "account" ) and
Context.getSystemService( "accounts" ) just in case it is available
just undocumented, but both returned null.

If anyone knows when (if) this service will be accessible, the
authentication token part only of course, can you please let me know.

Thanks,
Eric

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



[android-developers] Re: load and test apps on a g1 device

2008-10-27 Thread Dan B.

have you installed the USB driver? without it, the G1 just appears as
a USB storage device

here's the ADB via USB driver you'll need ->
http://groups.google.com/group/android-developers/browse_thread/thread/af53210a9c41ec37#

On Oct 26, 4:21 pm, g1ster <[EMAIL PROTECTED]> wrote:
> I've been testing my apps on Android provided emulators on Eclipse in
> Vista. Just got a g1 phone. Plugged it in my computer. But it doesn't
> show up on the emulator list - it is not an emulator I guess!
>
> Question: How to test my apps directly on the g1 device?
>
> Thanks!
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Keeping a service alive?

2008-10-27 Thread Eric B

I have created a service that runs a Timer and TimerTask.  That timer
may fire every 5 minutes to 4 hours, depending on the user's
settings.  My problem is that my service eventually gets destroyed.
Is there a setting to keep it alive, or someway to tell the OS to
restart it once enough resources are available?

In addition, I'm not sure my implementation is the most sound.  What's
the best way run a TimerTask as a background process?

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



[android-developers] Re: Multiple notifications difficulties...

2008-10-27 Thread Eric B

If message.getId() is different for each notification, then I believe
Android will create a new icon in the status bar.  You need to use the
same id sent to the NotificationManager.notify() method if you want a
single notification to be updated.

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



[android-developers] Re: mime handler with inline content disposition

2008-10-28 Thread B - Team


I am stuck with the same problem: Starting up my application when a
specific mime has been downloaded.

Did you manage to get it work?

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



[android-developers] Re: Keeping a service alive?

2008-10-28 Thread Eric B

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



[android-developers] Using a web site intent and browser windows?

2008-10-31 Thread Eric B

I have an app that uses a web site intent, i.e. new Intent( context,
"http://web.site.address"; ), when a user selects a notification.  Each
time the user does this, a new browser window is opened, even if there
is an existing window open to that site.  Is there a way to name a
browser window when creating the intent so that all activations of
that intent use the same browser window?

Please note that the url I'm using has a hash value (i.e. http://url#hash),
just in case that makes a difference.

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



[android-developers] Re: Listen For Webpage Changes

2008-11-03 Thread Dan B.

well, if the entire thing is going to be handled by a webpage anyway,
rather than write and app that watches the page, just use AJAX for the
page. If you want it to be app based, you'd be better off writing a
chat server, since HTTP has quite a bit of overhead going on in the
background.

On Nov 3, 8:57 am, Bobbie <[EMAIL PROTECTED]> wrote:
> I am trying to create a web-based chat program.  I would like to setup
> the program so that it can "listen" for changes on a web page.  When
> the user's text is posted it will be written to the page.  Then, when
> a user from the web interface posts it will be posted to that same
> file (this will be taken care of by a session id).  So what I want to
> happen is that my Android program should listen for "changes" in the
> webpage they are posting to.  How would I go about that?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: WPA support

2008-11-03 Thread Dan B.

you won't find EAP/PEAP support because Cisco themselves (the
developers of PEAP) have not only stopped developing and supporting
it, but are warning away from it's use due to false sense of security
that it brings. Cisco's recommendations are to use other connections
types and session based authentication if needed. If your school or
business is still using PEAP, refer them to Cisco's website.

On Oct 23, 7:31 pm, hyc <[EMAIL PROTECTED]> wrote:
> So I just got a shiny new G1 yesterday. Much to my disappointment I
> found that its wifi menu only supports WPA-PSK, while I need WPA-EAP/
> PEAP support. I see from the recent source code release that the
> freeware wpa_supplicant is underneath all this, and that project
> supports EAP etc. so why is that functionality missing from the UI?
>
> Next question is, what would it take to fix this and enable the
> support in the UI?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: What's the best way to save a picture?

2008-11-03 Thread Dan B.

I think the appropriate place to store user content is actually the
Download folder, otherwise the image view and camera app will think
the files belong to the camera

On Nov 3, 12:52 pm, Robert Green <[EMAIL PROTECTED]> wrote:
> I'm working on a drawing app and need to get some "Save" functionality
> in.  What I'd like to do is:
>
> 1)  Prompt the user for a filename
> 2)  Check for existing file - confirm overwrite
> 3)  Save to SD.
>
> I would think this should save in the same spot as Photos taken by the
> camera, unless you guys think it should have its own spot.  I want the
> drawings to come up with the photos in the Photos app.
>
> I tried to use
> MediaStore.Images.Media.insertImage(getContentResolver(), bitmap, "My
> Drawing", "description");
>
> but that just gives me a URI error.  Any ideas?  Isn't there a built
> in filechooser of some sort?  I tried to find it but came up empty.
>
> Thanks!
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Folders in main "Start" menu/tab?

2008-11-04 Thread Dan B.

the default drawer is definitely a disaster once you start installing
more than 2-3 apps. I hope you can successfully replace it, and I'd be
willing to assist with any testing.

On Nov 4, 4:23 am, Ian <[EMAIL PROTECTED]> wrote:
> I now have a lot of installed apps, and I want to organise them in the
> pull-up-menu/tab.
> But it is not possible to create folders?
> I know I could copy all icons to the desktop with my folders there,
> but that is something else.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Check for new version of applications

2008-11-04 Thread Dan B.

isn't there some way to check the version against the Market instead
of having to host version information somewhere else? I know the app
Locale somehow knows when an update is available, it seems reasonable
to query the Market rather than relying on outside sources :\

On Nov 1, 1:50 pm, friedger <[EMAIL PROTECTED]> wrote:
> I'd say the package name is the global identifier.
>
> Maybe you can just provide a VeeCheck url based on the package name
> (as alternative to the app id). So I could check that url. If you
> don't host an app for the package name or if it is not unique you
> could return a HTTP 400.
>
> Friedger
>
> On 1 Nov., 17:37, Al Sutton <[EMAIL PROTECTED]> wrote:
>
>
>
> > Friedger,
>
> > How are you identifying the apps?, I'd happily add an extra field or two
> > to the AndAppStore.com data that you can search for if it would be useful.
>
> > Al.
>
> > friedger wrote:
> > > The idea is that the Updater will also be able check all applications
> > > it knows about by a single button clicked or scheduled task. So, once
> > > the intent from one application is processed by the Update it is
> > > possible to include this application to the periodic update.
>
> > > A more general solution that includes all installed applications is
> > > currently not possible as I can't determine the location of the
> > >versioninfo file.
>
> > > The apk mentioned above is provided for developers to test. In the
> > > releaseversionthe interval between two checks will be at least 24
> > > hours, so you can start the service as often as you like but the check
> > > is only performed once every 24 hours. Furthermore, only the log cat
> > > shows whether the installedversionis up-to-date or not. In both
> > > cases the notification is show (this is to simplify the tests).
>
> > > Would you like to have a different Notification text? Any ideas for
> > > icons?
>
> > > Friedger
>
> > > On 1 Nov., 13:18, Al Sutton <[EMAIL PROTECTED]> wrote:
>
> > >> Hi Friedger,
>
> > >> I've updated AndAppStore.com to provide a versionCode in the update.xml
> > >> as you requested.
>
> > >> At the moment anyone with applications listed will find that they can
> > >> specify the versionCode in the details about a releasedversion(not the
> > >> application details page, the release details page).
>
> > >> I am working on code to pull the information from the manifest included
> > >> in the apk, but this is a little way off yet.
>
> > >> Thanks for making this available.
>
> > >> Al.
>
> > >> friedger wrote:
>
> > >>> Hi,
>
> > >>> we are preparing the OI Updater that checks a given info file for new
> > >>> updates as described in the Android documentation.
>
> > >>> You can find the current build (rev 1284) at
> > >>>http://openintents.googlecode.com/files/UpdateChecker.apk
>
> > >>> In order to initiate the update check you just have to add the
> > >>> following code:
>
> > >>>            Intent service = new Intent();
> > >>>            service.setAction(ACTION_CHECK_VERSION);
> > >>>            String uri= "http://uri-to-update-file.txt";
>
> > >>>            service.setData(Uri.parse(link));
> > >>>            service.putExtra("package_name", context.getPackageName());
> > >>>            service.putExtra("app_name",
> > >>> context.getString(org.openintents.notepad.R.string.app_name));
>
> > >>>            int currentVersion = -1;
> > >>>                    PackageInfo pi = 
> > >>> context.getPackageManager().getPackageInfo(
> > >>>                                    context.getPackageName(), 0);
> > >>>                    currentVersion = pi.versionCode;
> > >>>            service.putExtra("current_version", currentVersion);
> > >>>            context.startService(service );
>
> > >>> You can also put current_version_name if you check against the
> > >>> veecheck url at AndAppStore.
>
> > >>> It is still alpha, but we would appreciate early feedback.
> > >>> How do you like it? Would you include it in your code? More/other
> > >>> features?...
>
> > >>> Cheers,
> > >>> Friedger
>
> > >> --
> > >> Al Sutton
>
> > >> W:www.alsutton.com
> > >> B: alsutton.wordpress.com
> > >> T: twitter.com/alsutton
>
> > --
> > Al Sutton
>
> > W:www.alsutton.com
> > B: alsutton.wordpress.com
> > T: twitter.com/alsutton- Hide quoted text -
>
> - Show quoted text -
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Folders in main "Start" menu/tab?

2008-11-04 Thread Dan B.

that's exactly the problem with the drawer, you have to dig... the
market is just as huge a mess... it needs organization

On Nov 4, 2:21 pm, hackbod <[EMAIL PROTECTED]> wrote:
> Put your apps on the home screen, in their own folders if you want.
> Is there any particular reason you want to have a whole other facility
> to organize things in the set of all apps?  To me it just makes them
> harder to get to -- if you put them in a folder on the home screen,
> you can launch with two clicks, but in the drawer you'd have to first
> bring up the drawer, then dig down to the app, then launch it.
>
> On Nov 4, 11:28 am, "Dan B." <[EMAIL PROTECTED]> wrote:
>
>
>
> > the default drawer is definitely a disaster once you start installing
> > more than 2-3 apps. I hope you can successfully replace it, and I'd be
> > willing to assist with any testing.
>
> > On Nov 4, 4:23 am, Ian <[EMAIL PROTECTED]> wrote:
>
> > > I now have a lot of installed apps, and I want to organise them in the
> > > pull-up-menu/tab.
> > > But it is not possible to create folders?
> > > I know I could copy all icons to the desktop with my folders there,
> > > but that is something else.- Hide quoted text -
>
> - Show quoted text -
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Lock view orientation?

2008-11-04 Thread Eric B

I'd like my app to always display like the keyboard on the G1 is
hidden (portrait).   I've looked at the Window API and search the
forums, but I couldn't figure out how to specify this.  Anyone know if
this is possible?

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



[android-developers] Re: Lock view orientation?

2008-11-04 Thread Eric B

Cool, thanks.

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



[android-developers] Re: Facebook notification app while we wait for a facebook app

2008-11-06 Thread Dan B.

The structure of Facebook makes that very difficult, applications have
to request a private key from the Facebook server rather than using a
normal login in order ro protect the account logins from hacking.
Check out the Market app "Statisinator" to see what I mean.

On Nov 6, 7:00 pm, DigiJeff <[EMAIL PROTECTED]> wrote:
> Developers can someone please develop a simple facebook app that
> notifies us facebook users about new messages, wall posts etc?
>
> It really sucks going from a Blackberry Curve and losing my facebook
> app which notifies me about new facebook stuff.
>
> Facebook needs to stop being such snobs and create a facebook app for
> android already, but in the meantime can someone develop this?
>
> Also have it update status and upload pictures would be awesome while
> waiting.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Connect via USB resets prefs

2008-11-06 Thread Eric B

I wrote an app, GReader Notifier (http://www.ebessette.com/d/
greadernotifier), that I've published to the Market.  However, every
time someone connects their G1 to their computer via USB, the
preferences get reset, which basically stops the application from
working as users expect.

One user reported restarting the phone brought the preferences back.

Does this make sense to anyone, because it's got me stumped?

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



[android-developers] Re: Android Language Switcher

2008-11-09 Thread Dan B.

actually, no hacking needed, just follow these steps:

1) install the USB drivers if you're on Windows (found on this forum)
2) turn on debugging on the phone
3) set the phone to allow unsigned applications
4) install the apk file using the adb application found in the tools
folder of the SDK

then you'll be ready to go

On Nov 9, 2:58 pm, NuuNeoI <[EMAIL PROTECTED]> wrote:
> Hi,
>
> Just for information. I just finished hacking the android core to add
> my local language display and input (Thai).
>
> Here are the pictures.
>
> - Typing in 
> English:http://farm4.static.flickr.com/3252/3015085799_7192835c90.jpg
> - Language Switcher ( by press Alt+Shift+X 
> ):http://farm4.static.flickr.com/3061/3015085801_ce488de23c.jpg
> - Now Typing in Thai 
> :http://farm4.static.flickr.com/3296/3015085809_2fd1099d45.jpg
>
> It works quite great in Emulator but I still didn't test it on real
> device yet since it's the hacking thing.
>
> Regards,
> Sittiphol Phanvilaihttp://www.neuvex.com
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Connect via USB resets prefs

2008-11-11 Thread Eric B

Now I'm not sure what clears my preferences.  I've tested the USB
connection theory and it is quite inconsistent.  Has anyone else
experienced a loss of preference state in their apps?

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



[android-developers] Any way to have two MediaRecorders recording at once?

2008-11-11 Thread Blake B.

Hi all,
 For my app I need to have two audio recordings that overlap each
other - that is, at some points in time there will be two separate
audio files being created from the same audio source.  I have
attempted to use two MediaRecorders and start the second one while the
first is still recording.  When I do this I get the following error:

ERROR/AudioFlinger(25): Record channel already open

Is there any way to get around this?

Thanks in advance,
Blake

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



[android-developers] Re: Any way to have two MediaRecorders recording at once?

2008-11-11 Thread Blake B.

Ok, I thought that may be the case.

I need to create a "sliding window" effect in the recording, so that
there is always 15 seconds of audio history recorded. I wanted to
stair-step two 20-second recorders so that every 5 seconds I would
delete one audio recording file when its "history" got too long, then
restart it. In this way, there would at most be two files of 20
seconds of audio on the SDcard and not get too large.

I can concatenate two .amr recordings, but I have to indroduce a 100ms
delay between stopping one recording and starting the next, otherwise
I get the same "Record channel already open" error.  This delay of
course causes a skip in the audio file where 100ms of audio is
omitted.

Since can't have two recorders recording, is there any way to:

- direct the audio recording stream to multiple files?
- buffer the audio recording so that I can manage the recording size
in-memory?
- other creative ideas to accomplish the "sliding window" effect?

Thanks

On Nov 11, 1:29 pm, Dave <[EMAIL PROTECTED]> wrote:
> No, this use case is not supported.
>

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



[android-developers] Re: Any way to have two MediaRecorders recording at once?

2008-11-12 Thread Blake B.

Thanks Dave.  I'll try to get it done with concatenating .amr files.

Also, is there any way to detect when the record channel is ready to
use again?  Right now I have to put a manual 100ms delay before doing
back-to-back recordings.  Is there an event or state I can check
instead?


On Nov 12, 2:15 am, Dave <[EMAIL PROTECTED]> wrote:
> I don't see a way to do that with the current API. We will be
> enhancing the audio API's in a future release of the SDK.
>
> On Nov 11, 3:14 pm, "Blake B." <[EMAIL PROTECTED]> wrote:
>
>
>
> > Ok, I thought that may be the case.
>
> > I need to create a "sliding window" effect in the recording, so that
> > there is always 15 seconds of audio history recorded. I wanted to
> > stair-step two 20-second recorders so that every 5 seconds I would
> > delete one audio recording file when its "history" got too long, then
> > restart it. In this way, there would at most be two files of 20
> > seconds of audio on the SDcard and not get too large.
>
> > I can concatenate two .amr recordings, but I have to indroduce a 100ms
> > delay between stopping one recording and starting the next, otherwise
> > I get the same "Record channel already open" error.  This delay of
> > course causes a skip in the audio file where 100ms of audio is
> > omitted.
>
> > Since can't have two recorders recording, is there any way to:
>
> > - direct the audio recording stream to multiple files?
> > - buffer the audio recording so that I can manage the recording size
> > in-memory?
> > - other creative ideas to accomplish the "sliding window" effect?
>
> > Thanks
>
> > On Nov 11, 1:29 pm, Dave <[EMAIL PROTECTED]> wrote:
>
> > > No, this use case is not supported.- Hide quoted text -
>
> - Show quoted text -
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: How to debug the real phone G1?

2008-11-12 Thread Blake B.

Here are the complete steps:

http://code.google.com/android/intro/develop-and-debug.html#developingondevicehardware

I don't know if the adb installs the USB Windows drivers automatically
or not, but I installed them myself.
After following these steps, I was able to run the Eclipse debugger on
my G1.


On Nov 12, 2:11 pm, Alvin Yates <[EMAIL PROTECTED]> wrote:
> On Windows, you need to install the G1 debugger drivers.  If you are
> using Eclipse, adb should pick it up when it detects the phone.
>
> On Nov 12, 6:32 am, jeka <[EMAIL PROTECTED]> wrote:
>
>
>
> > I've enabled USB debugging, plugged the phone in, but still don't see
> > it as one of the devices. Am I missing a step?
>
> > Thank you.
>
> > On Oct 17, 12:53 pm, "Romain Guy" <[EMAIL PROTECTED]> wrote:
>
> > > You can just plug the phone in. But first you need to enable USB
> > > debugging in Home > Menu > Settings > Applications > Development.
>
> > > On Fri, Oct 17, 2008 at 1:28 AM, [EMAIL PROTECTED]
>
> > > <[EMAIL PROTECTED]> wrote:
>
> > > > Any document about it so far? I would like to see something like
> > > > Microsoft Activesync: just plug in the usb cable to PC, then you can
> > > > debug!
>
> > > --
> > > Romain Guywww.curious-creature.org- Hide quoted text -
>
> - Show quoted text -
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Can anyone clarify this part of the developer's agreement?

2008-11-14 Thread Dan B.

it means you can only use personal information gathered from the phone
to advertise other products that are also on the Market. If they're
not on the Market, you can't advertise them using data obtained from
the phone.

the best way around this is using an opt-in feature. The first time
your app is run, ask permission to advertise, defaulting to "no" and
request the user manually enter the email address they wish to have
such advertisement sent to. You should also include a built-in way to
opt-out after they've already opted-in, to avoid irate users later
down the road.

On Nov 14, 11:20 pm, Morisato13 <[EMAIL PROTECTED]> wrote:
> "You may not use customer information obtained from the Market to sell
> or distribute Products outside of the Market."
>
> Does this mean you cant use user's statistics/demographic for
> advertising? Does this mean that you cant advertise any product even
> if you are being sponsored by a corporation/store/product?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: CRT Monitors

2008-11-14 Thread Dan B.

there is no connection between the SDK and your monitor... what kind
of problem are you having exactly?

On Nov 14, 4:30 pm, Amonre <[EMAIL PROTECTED]> wrote:
> Are there any known issues between the Android SDK and CRT [box-style]
> monitors? The potentially problematic monitor is approximately 5 years
> old and part of a Dell system. Dell used non-standard power schemes
> during that time period, not sure if they still do, which *might* be
> conflicting with the SDK's expectations (i.e. more juice than
> resistors can handle).
>
> I'm not a guru in this field, so there's a decent chance that the
> problem is unrelated.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Including SQLite database with application

2008-11-15 Thread Dan B.

I think your best 2 options are as the previous poster stated.

1) package the db file as a raw resource, then just use a file stream
to read it from the resources and write it out to the location you
plan to access it.
2) generate a .sql file and package that as a raw resource, then just
read and execute the .sql file to build the database on the fly at
first run

option 2 is probably the better.

another option would be to host the db file from an http location and
just grab it and copy it to the location you plan to use it, this will
make the APK file smaller, but requires you to have a stable web
server to store and host the db file

On Nov 15, 4:41 pm, Stu <[EMAIL PROTECTED]> wrote:
> Hi Mark,
>
> thanks for your help. I guess I'll just have a play around with a
> couple of those suggestions and see which one works for me. :)
>
> Regards,
> Stuart.
>
> On Nov 15, 9:57 pm, Mark Murphy <[EMAIL PROTECTED]> wrote:
>
>
>
> > Stu wrote:
> > > I'm unable to find how I can ship my database with my application.
>
> > > I don't really want to populate the database at the first run, it just
> > > seems a bit pointless when I could prevent this time consuming
> > > activity by including a pre-populated db.
>
> > AFAIK, applications are not unpacked from the APK when installed, and
> > SQLite has no notion of working with a database file given just an
> > InputStream, which is all you can get for things packed in your APK.
>
> > I am only aware of three options:
>
> > 1. Bundle a database as either an asset/ or a res/raw/, then use
> > appropriate methods to get an InputStream on the database, and copy it
> > somewhere where you can read/write to. I'm uncertain as to whether this
> > approach is a good idea.
>
> > 2. Use the sqlite3 console utility (or an equivalent tool) to dump the
> > database a set of SQL statements required to rebuild it. Bundle that
> > file with your application (e.g., in res/raw/) and execute that script
> > on first run. This may feel "pointless", but done properly, you can
> > integrate all this into your build process, so you don't, as a
> > developer, have to deal with anything -- you just edit your master
> > database copy on your development PC.
>
> > 3. Use the "classic" approach of just populating the tables yourself in
> > Java code as part of creating the database.
>
> > If the table is bigger than a few rows, I'd probably go with #2. But,
> > that's just me.
>
> > --
> > Mark Murphy (a Commons Guy)http://commonsware.com
>
> > Android Training on the Ranch! -- Mar 16-20, 
> > 2009http://www.bignerdranch.com/schedule.shtml- Hide quoted text -
>
> - Show quoted text -
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Is Market going to support applications autoupdate mechanism?

2008-11-17 Thread Dan B.

I certainly hope the Market will support a way to query and prompt for
updates. OI Update is alright, but it checks a 3rd party site which
often doesn't match the Market version and requires you to open your
device up to potentially dangerous software (granted, it's not yet
been an issue, but it is something to consider)

On Nov 17, 9:24 am, Max Binshtok <[EMAIL PROTECTED]> wrote:
> So I am wondering if the Market is going to support some autoupdate
> mechanism for the applications - we are required to version and sign
> our apps  - so it seems like they can do it, but is it going to be
> done?
> If yes then :
> 1. When?
> 2. How the users will be notified?
> 3. How the reinstallation will occur?
> 4. Do we (the developers) have to do anything to support easier auto
> update?
>
> Thanks,
> Max.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] get position of cursor in EditText

2008-11-17 Thread Alex B

Hi!

How does one determine the position of the cursor in
android.widget.EditText?

I am dealing with a situation where the user should be able to touch
the text view, positioning the cursor where their finger touched, and
then be able to press a virtual "backspace" button (on the screen),
expecting to erase the character before the cursor.

It is my understanding that I need the cursor position in the
substring to the task of deleting the preceding character. It seems as
though getCursorPosition() is missing.

Any information in this regard will be greatly appreciated.

Thank you.

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



[android-developers] get position of cursor in EditText

2008-11-18 Thread Alex B

Hi!

How does one determine the cursor position in an
android.widget.EditText text view?

Example:

User types: "quick browm fox".

User realizes the typo (browm).

User touches the text view just after the "m", thereby positioning the
cursor there.

Now the view looks like this: "quick browm| fox" -- where | is the
cursor.

The user should be able to press a virtual "backspace" button (on the
screen), and expect to erase the "m" and then type "n".

Problem:

I would like to obtain the cursor position with something like
getCursorPosition(), but cannot find anything resembling such a
method. Knowing the position, I would be able to convert the EditText
into android.text.Editable and erase the character.

Perhaps there is a different way to do this. Any information in this
regard will be greatly appreciated.

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



[android-developers] SharedPreferences problem

2008-11-18 Thread Eric B

I have a PreferenceActivity that uses an xml file to automatically
populate and save the preferences.  Sometimes though, when that
activity is started, the preferences are blank.  However, if you go
back later, they will reappear.

This is causing a lot of headaches with my app.  I have a Service and
BroadcastReciever running in the background that are also accessing
and (sometimes) updating the preferences.  Are there synchronization
issues with shared preferences?  Maybe permission issues?

I'm really stuck here and would greatly appreciate any insight you can
offer.

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



[android-developers] Re: Tips for Orientation

2008-11-19 Thread Blake B.

Put the "android:screenOrientation="sensor"" as an attribute on each
activity in your manifest that you want to be sensor-oriented.

Works great!  Thx for the tip hackbod!

On Nov 18, 3:14 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:
> Hi,
>
> Will this setting make the screen change to lanscape using the
> accelerometer? If so, where do I put this setting?
>
> Thanks
>
> On Oct 20, 5:37 pm, hackbod <[EMAIL PROTECTED]> wrote:
>
>
>
> > Don't do that, or moving between your app and others will be flicker.
> > Just use android:screenOrientation="sensor".
>
> > On Oct 20, 12:47 pm, Tauno T <[EMAIL PROTECTED]> wrote:
>
> > > And that's why he want's to set the orientation programmatically - the
> > > users expect that when the phone is turned "sideways" then the picture
> > > is also turned sideways:) The user is not confused - he just thinks
> > > that Android has a feature that it does not have (sadly).
>
> > > As for the solution - Xolotl Lokis solution will works just fine - you
> > > only have to figure out which sensor reading corresponds to the phone
> > > being held sideways and then change the layout using
> > > setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_*);
>
> > > Tauno
>
> > > On Oct 20, 10:39 pm, hackbod <[EMAIL PROTECTED]> wrote:
>
> > > > Your user is confused.  The standard orientation policy is to select
> > > > the orientation based on the keyboard: when the keyboard is closed it
> > > > is portrait, when open it islandscape.  Pressing Ctrl+F12 in the
> > > > emulator is exactly the same as sliding the keyboard out on the G1.
>
> > > > On Oct 20, 11:57 am, Mark Hansen <[EMAIL PROTECTED]> wrote:
>
> > > > > From what I was told by a user of my application, that it did not
> > > > > change view, even when the keyboard was opened for text entry.
>
> > > > > I've built two set's of layout files, and stored them in "layout" and
> > > > > "layout-land" for when the view changes.  In emulator mode they work
> > > > > fine, CTRL-F12 works fine.. but, and I may be misinformed here, it
> > > > > appears the actual phone itself is not rotating the screen based on
> > > > > the keyboard of position of the actual phone.
>
> > > > > He even stated many of the default Google application aren't rotating
> > > > > as well, and that very few actually change based on the way the device
> > > > > is being held.
>
> > > > > On Oct 20, 12:21 pm, hackbod <[EMAIL PROTECTED]> wrote:
>
> > > > > > I don't know what you mean by "turn the view."  When the orientation
> > > > > > changes to switch from the dominant to secondary orientation 
> > > > > > (portrait
> > > > > > tolandscapeon the g1), the graphics of the entire screen are rotated
> > > > > > to result in the screen being shown in the new orientation.  As 
> > > > > > such,
> > > > > > there is no need to do anything yourself, at it looks like to the
> > > > > > application is that the size of the screen has changed to match the
> > > > > > new orientation.
>
> > > > > > For different resources, normally you also don't need to do 
> > > > > > anything,
> > > > > > because when the orientation changes the current activity is 
> > > > > > destroyed
> > > > > > and a new one started, and the new one is running with a 
> > > > > > configuration
> > > > > > matching the new orientation so will load the appropriate resources 
> > > > > > as
> > > > > > it creates and initializes itself.
>
> > > > > > The only except is if you are using android:configChanges to avoid
> > > > > > being restarted due to a configuration change...  which is one of 
> > > > > > the
> > > > > > reasons why it is strongly encouraged not to do this, and certainly 
> > > > > > if
> > > > > > you are changing layouts due to the orientation I would really 
> > > > > > suggest
> > > > > > letting the normal destroy/recreate path execute.  If you really
> > > > > > really do want to mix the two, you will need to override
> > > > > > onConfigurationChanged() and re-inflate your view hierarchy and re-
> > > > > > initialize anything else depending on that or changing resources at
> > > > > > that point.
>
> > > > > > On Oct 20, 5:19 am, Mark Hansen <[EMAIL PROTECTED]> wrote:
>
> > > > > > > I've actually created layouts for both vertical and horizontal 
> > > > > > > views,
> > > > > > > I've had some people testing it and it turns out Android doesn't 
> > > > > > > turn
> > > > > > > the view, I guess it has to be detected?
>
> > > > > > > I was curious how to go about doing that detection.. I know I can 
> > > > > > > also
> > > > > > > set the view with:
>
> > > > > > > setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_*);
>
> > > > > > > The problem I'm having is whateventto trap or how to go about
> > > > > > > determining which way the phone is being held.
>
> > > > > > > On Oct 20, 12:13 am, hackbod <[EMAIL PROTECTED]> wrote:
>
> > > > > > > > Use the android:screenOrientation attribute when declaring your
> > > > > > > > manifest:
>
> > > > > > > >http://code.googl

[android-developers] Re: SharedPreferences problem

2008-11-19 Thread Eric B

What I'm taking from this is that if my BroadcastReceiver, which runs
off an AlarmManager, is accessing the preferences and the user then
opens the PreferenceActivity in a separate process the behavior is
undefined and most likely causes the PreferenceActivity to not "find"
the existing values?

I guess I'll have to switch to a database implementation then.
SharedPreferences don't seem very robust, I'm not sure I can ever use
them again, which is really sad since they are quite easy to use.

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



  1   2   3   4   5   6   >