Re: [android-developers] Start up application before sending intent

2016-01-19 Thread Justin Anderson
>From what you've described, I suspect you are doing your receiver only in
code, which will not allow you to do what you want... This kind of receiver
is only active while your activity is active. Since your activity is not
active, neither is your receiver.

Why not just start your activity explicitly?

On Tue, Jan 19, 2016 at 3:34 PM NuffsaidM8  wrote:

> I have a broadcast receiver that is detecting a boot up of the phone. This
> part works fine. What I want to do is send a notification to a broadcast
> receiver in the Main Activity of the app, which is registered in the
> onCreate method as having an intent filter of "RESET_ALARM". This is what
> doesn't seem to be working. I tried starting the application with this
> (found it on stackkoverflow):
>
> Intent i = new Intent(context, MainActivity.class);
> i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
> context.startActivity(i);
> Intent intent1 = new Intent("RESET_ALARM");
> context.sendBroadcast(intent1);
>
> but this does not seem to be working. I know the code is running, but a
> log statement in the receiver in the MainActivity.class file is not logging
> to the logcat. What am I doing wrong?
>
> --
> You received this message because you are subscribed to the Google Groups
> "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/948117f7-0e11-41a0-9745-f16e19099d17%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

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


[android-developers] Re: Serious Developer Needed

2016-01-19 Thread Vijay
vijay at inceptivetechnologies dot com

On Tuesday, January 19, 2016 at 4:21:02 AM UTC+5:30, United 45 wrote:
>
> Hi, I'm starting a serious app project, and only serious people wanted. I 
> need a back-end android developer. Leave your email below if you're 
> interested. I'll get back to you.
>

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


Re: [android-developers] Start up application before sending intent

2016-01-19 Thread Justin Anderson
My apologies... looking at your code again, I was a bit mistaken... you are
using an explicit intent to start your activity.  My guess is that the
broadcast is getting sent before your activity has registered itself.

If that is indeed the case, I would suggest passing extra data through the
intent used to start the activity.  When your activity starts up, you can
look for this data, and if present, you know you are starting it from your
broadcast receiver and you need to reset the alarm (I assume you are doing
something like that based on the code).

I still think it would be good to read up on this though:
http://developer.android.com/guide/components/intents-filters.html

Sorry for the confusion... that's what I get for scanning the code too
quickly. I missed your startActivity() call in the middle of the code
snippet.

Hope that helps,
Justin

On Tue, Jan 19, 2016 at 4:21 PM Justin Anderson 
wrote:

> If you send a broadcast, and your activity isn't currently running, then
> your Broadcast receiver isn't registered with the OS. How could it be? Your
> activity hasn't run the code to register itself.  And, furthermore, if
> you've done it correctly, when your activity goes away, it should
> unregister itself or you will run into problems.
>
> I think you are confusing receivers with intent-filters. I would read
> through this before continuing:
> http://developer.android.com/guide/components/intents-filters.html
>
> I think what you are TRYING to do is the equivalent of using an intent
> filter to implicitly start your activity.  But that is likely overkill.
> When you are trying to launch an activity that is part of your own
> application, 99% of the time you will want to use an explicit intent to
> start the activity.
>
> In both cases, you will want to use the context.startActivity() method...
> The difference between implicit and explicit intents is in how you
> construct the Intent object.
>
> On Tue, Jan 19, 2016 at 4:02 PM NuffsaidM8  wrote:
>
>> I did the receiver with only code, that's correct. What do you mean that
>> I need to start the activity? I thought that was what I was doing.
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "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/dc32640d-926f-4033-9198-5b94e6f4298d%40googlegroups.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>

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


[android-developers] Start up application before sending intent

2016-01-19 Thread NuffsaidM8
I have a broadcast receiver that is detecting a boot up of the phone. This 
part works fine. What I want to do is send a notification to a broadcast 
receiver in the Main Activity of the app, which is registered in the 
onCreate method as having an intent filter of "RESET_ALARM". This is what 
doesn't seem to be working. I tried starting the application with this 
(found it on stackkoverflow):

Intent i = new Intent(context, MainActivity.class);
i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(i);
Intent intent1 = new Intent("RESET_ALARM");
context.sendBroadcast(intent1);

but this does not seem to be working. I know the code is running, but a log 
statement in the receiver in the MainActivity.class file is not logging to 
the logcat. What am I doing wrong?

-- 
You received this message because you are subscribed to the Google Groups 
"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/948117f7-0e11-41a0-9745-f16e19099d17%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] How would you write this is java

2016-01-19 Thread TreKing
On Fri, Jan 15, 2016 at 6:03 PM, United 45  wrote:

> I'm trying to create an application where you can chat with random people
> via video. Anyone know how to do this?
>

I'm sure someone knows how to do this, yes.

http://www.catb.org/esr/faqs/smart-questions.html

-
TreKing  - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google Groups 
"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/CANCScggiXHp%2Bedwc0toHCZvpvx3d%2B1avYFU9J67%2BQSMWG-QWvQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Start up application before sending intent

2016-01-19 Thread NuffsaidM8
I did the receiver with only code, that's correct. What do you mean that I 
need to start the activity? I thought that was what I was doing.

-- 
You received this message because you are subscribed to the Google Groups 
"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/dc32640d-926f-4033-9198-5b94e6f4298d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Re: App changes name???

2016-01-19 Thread Burke Knight
Here's my list of apps: 2 apps and 3 games, so far. Working on a couple 
more that may or may not go up on marketplace.

BurkeKnight Enterprises - Android Apps on Google Play 
 

On Tuesday, January 19, 2016 at 10:51:28 AM UTC-5, Nalin Savara wrote:
>
> Cool scene Burke - thanks for sharing this info and wishing you all the 
> best with your app.
>
> Btw if you want you can send me it's like and I too will download it and 
> give it a good review / rating. 
>
> Regards, 
> Nalin 
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"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/1172afef-0925-45e7-afed-7a067b2f8b5f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Start up application before sending intent

2016-01-19 Thread Justin Anderson
If you send a broadcast, and your activity isn't currently running, then
your Broadcast receiver isn't registered with the OS. How could it be? Your
activity hasn't run the code to register itself.  And, furthermore, if
you've done it correctly, when your activity goes away, it should
unregister itself or you will run into problems.

I think you are confusing receivers with intent-filters. I would read
through this before continuing:
http://developer.android.com/guide/components/intents-filters.html

I think what you are TRYING to do is the equivalent of using an intent
filter to implicitly start your activity.  But that is likely overkill.
When you are trying to launch an activity that is part of your own
application, 99% of the time you will want to use an explicit intent to
start the activity.

In both cases, you will want to use the context.startActivity() method...
The difference between implicit and explicit intents is in how you
construct the Intent object.

On Tue, Jan 19, 2016 at 4:02 PM NuffsaidM8  wrote:

> I did the receiver with only code, that's correct. What do you mean that I
> need to start the activity? I thought that was what I was doing.
>
> --
> You received this message because you are subscribed to the Google Groups
> "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/dc32640d-926f-4033-9198-5b94e6f4298d%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

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


[android-developers] Need: UI/UX Designer-USC,GC,EAD GC only

2016-01-19 Thread Megha Agarwal
*Hello,Please let me know if you have any consultant available for the
below role,Position : Sr. UX DeveloperLocation: Chicago, ILDuration:
6+Months Contract Start Date: ASAPMust be USC, GC, EAD GC, Only *

*Max Rate :$50/hr onC2C*

*Looking for the consultant having an experience in UX Designing *

*___*

*Please send your resumes to megha.agar...@panzersolutions.com  for
immediate consideration*

*Thanks,*

*Megha Agrawal*
*Megha.agarwal@panzersolutions.com203-652-1444*278*

-- 
You received this message because you are subscribed to the Google Groups 
"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/CAOwfwP2i8-%2B-obK6HyE3d4rZb2YnmvsQoSjiX0MVcnccvQeujQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] InApp Billing: Fetch Order Details

2016-01-19 Thread Web Services Solutions Group

0down votefavorite 


I'm creating an Android application to sell digital content on my backend 
server. What I wish to do is fetch the order details after successful 
payment from the InApp Purchase and send details to server side as php 
response to retrieve the required data and send it back to the customer.

On the server side the PHP functions are ready and set however how to 
connect the InApp with the PHP code.

An example to fetch the order details from Woocommerce that I use

$products = array();
$_name = $order->billing_first_name.' '.$order->billing_last_name;
$_email = $order->billing_email;
$lastOrderId = $order->id;

Is there an equivalent way for InApp Billing?

-- 
You received this message because you are subscribed to the Google Groups 
"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/23069c52-43ff-4fa8-b24b-7291e6a8b53c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] InApp Billing: Fetch Order Details

2016-01-19 Thread Web Services Solutions Group

0down votefavorite 


I'm creating an Android application to sell digital content on my backend 
server. What I wish to do is fetch the order details after successful 
payment from the InApp Purchase and send details to server side as php 
response to retrieve the required data and send it back to the customer.

On the server side the PHP functions are ready and set however how to 
connect the InApp with the PHP code.

An example to fetch the order details from Woocommerce that I use

$products = array();
$_name = $order->billing_first_name.' '.$order->billing_last_name;
$_email = $order->billing_email;
$lastOrderId = $order->id;

Is there an equivalent way for InApp Billing?

-- 
You received this message because you are subscribed to the Google Groups 
"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/7ecb1cee-afcf-4f3f-b76a-78a2902c1576%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] SDK installation does not detect JDK

2016-01-19 Thread Ranieri Santos
Hello all,

I´m using Windows7 64 bit and installed JDK1.8.0_66 (64 bit) but the SDK 
installation is not detecting the JDK. I´ve installed the SDK tools and the 
SDK was detected correctly but it´s not working with the IDE or the bundle. 
I´ve already insert the JAVA_HOME variable as C:\Program 
Files\Java\jdk1.8.0_66 and insert %JAVA_HOME% in PATH. Both java -version 
and javac -version are giving me the correct java versions. What am I 
missing?

The IDE version is 24.4.1.

Thanks for the help,

Ranieri

-- 
You received this message because you are subscribed to the Google Groups 
"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/cb8fc826-0ec0-4552-a66c-ef0de5b55737%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Building Android for Nexus Player

2016-01-19 Thread Developer
After getting the device specific binaries, I was able to build and startup 
the OS successfully,
However, after going into the launcher, it looks for the recommendations 
(for the Android TV Launcher), fails and then I cannot go to the settings 
page.
With the other launcher, it shows an infinite spinner in on opening the 
apps page.
I am using a mouse for navigation, currently.
Do you have any ideas as to why I would see this?

Thanks!
_Nitish

On Tuesday, 19 January 2016 15:54:10 UTC-8, Developer wrote:
>
> Hello,
>
> I was trying to build android from source for my Nexus Player.
> I did the following steps, and the build was successful.
>
> repo init -uhttps://android.googlesource.com/platform/manifest -b 
> android-5.1.1_r29
> repo sync
> . build/envsetup.sh 
>  lunch full_fugu-userdebug
> make -j4
>
> After building, I flashed the output to the device using fastboot.
> However, the OS fails to boot.
> Could I be missing something? As per my understanding, the android source 
> contains the kernel as well as the hardware specific parts included in the 
> source for nexus devices. Is that right?
> Thanks!
> _Nitish
>

-- 
You received this message because you are subscribed to the Google Groups 
"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/a9c30729-9694-4d79-9900-62ca0c2172d8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Start up application before sending intent

2016-01-19 Thread NuffsaidM8
I am on a tight schedule here, so I apologize that I haven't spent a ton of 
time trying to work out the issue.

I am confused by what you mean with passing extra data. What would I use it 
for and how would that help my activity finish up first?

-- 
You received this message because you are subscribed to the Google Groups 
"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/0357a541-87c4-4b64-8ca7-43891d79ea01%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Start up application before sending intent

2016-01-19 Thread Justin Anderson
No, not quite...

The boot up of the phone is a special case scenario.  I'm saying that in
that scenario you can't rely on the broadcast system, so you need to come
up with another code path to manually get your activity's receiver code
executed.

I would take the code that is executed in your receiver and move it to a
new method in your activity class. Make the receiver call that method. Then
when your intent with special data comes in (it can be as simple as a
boolean value), you can call that same method and get the same result by
bypassing the broadcast mechanism.

I can explain in more detail later if that doesn't make sense (I'm on my
phone and helping my son with his homework right now), but hopefully that
gets you on the right path.

On Tue, Jan 19, 2016, 8:13 PM NuffsaidM8  wrote:

> I apologize for not taking the time to work out my issues all myself. I'm
> a little out of my league here and am on a tight schedule. I am still
> slightly confused about a few things, such as:
>
> Why do I need to pass data through to the activity? All I want to do right
> now is start it up so that when I broadcast an intent with a filter
> recognized by the other receiver, it executes the code in the receiver in
> the activity class. I think you are insinuating that I could check for the
> data and once I can read it I can send the intent. Is this correct?
>
> --
> You received this message because you are subscribed to the Google Groups
> "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/6eafbab4-64bd-4358-91b4-f9b132741f9e%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

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


[android-developers] Building Android for Nexus Player

2016-01-19 Thread Developer
Hello,

I was trying to build android from source for my Nexus Player.
I did the following steps, and the build was successful.

repo init -uhttps://android.googlesource.com/platform/manifest -b 
android-5.1.1_r29
repo sync
. build/envsetup.sh 
 lunch full_fugu-userdebug
make -j4

After building, I flashed the output to the device using fastboot.
However, the OS fails to boot.
Could I be missing something? As per my understanding, the android source 
contains the kernel as well as the hardware specific parts included in the 
source for nexus devices. Is that right?
Thanks!
_Nitish

-- 
You received this message because you are subscribed to the Google Groups 
"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/a9357e54-3fa6-4fea-902d-ad5d87259ba2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Building Android for Nexus Player

2016-01-19 Thread Developer
Had to connect a keyboard to get it to work.
I do not have Google Apps though. Not sure how to get them.

On Tuesday, 19 January 2016 17:01:10 UTC-8, Developer wrote:
>
> After getting the device specific binaries, I was able to build and 
> startup the OS successfully,
> However, after going into the launcher, it looks for the recommendations 
> (for the Android TV Launcher), fails and then I cannot go to the settings 
> page.
> With the other launcher, it shows an infinite spinner in on opening the 
> apps page.
> I am using a mouse for navigation, currently.
> Do you have any ideas as to why I would see this?
>
> Thanks!
> _Nitish
>
> On Tuesday, 19 January 2016 15:54:10 UTC-8, Developer wrote:
>>
>> Hello,
>>
>> I was trying to build android from source for my Nexus Player.
>> I did the following steps, and the build was successful.
>>
>> repo init -uhttps://android.googlesource.com/platform/manifest -b 
>> android-5.1.1_r29
>> repo sync
>> . build/envsetup.sh 
>>  lunch full_fugu-userdebug
>> make -j4
>>
>> After building, I flashed the output to the device using fastboot.
>> However, the OS fails to boot.
>> Could I be missing something? As per my understanding, the android source 
>> contains the kernel as well as the hardware specific parts included in the 
>> source for nexus devices. Is that right?
>> Thanks!
>> _Nitish
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"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/c10d178d-0cb2-4ab9-9dce-cd8eb4259837%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] "Managing the Activity Lifecycle" Tutorial's ActivityLifecycle.zip sample out of date?

2016-01-19 Thread ChrisCrossCrash
I've been working through the Training tutorials at developer.android.com, 
and I've run into a stumbling block at the "Managing the Activity 
Lifecycle" tutorial. I'd like to download and try the ActivityLifecycle.zip 
sample project using Android Studio 1.5.1.

First I tried placing it directly into my Android Studio projects folder 
and opeining it like I would any other project. When I do this, I get a 
"Sync Android SDKs" dialogue box that says:

"The path
> '\Users\brutledge\android-sdk-macosx'
> does not belong to a directory.
> Android Studio will use this Android SDK instead:
> 'C:\Android\sdk'
> and will modify the project's local.properties file


Ok, I get it. This project was made on somebody else's mac. Android Studio 
will use the SDK I have on my PC. So then I click "OK". Then, I get a 
"Gradle Sync" dialogue box saying:

>
> Gradle settings for this project are not configured yet.
> Would you like the project to use the Gradle wrapper?
> (The wrapper will automatically download the latest supported Gradle 
> version).
> Click 'OK' to use the Gradle wrapper, or 'Cancel' to manually set the path 
> of a local Gradle distribution.


I click "OK", simply because I have no idea what I'm doing. The project is 
building for a few seconds. I get a popup that says "Frameworks detected: 
Android framework is detected in the project *Configure*".

Since nothing seems to be working, I click configure and the "Setup 
Frameworks" dialogue box comes up. I leave the Android and 
AndroidManifest.xml files checked (I'm just grasping at straws at this 
point. I have no idea what this will do). Then, the event log shows a 
couple more things about what went wrong. Here is the entire Event Log for 
the project since I opened it:

>
> 8:32:54 PM Platform and Plugin Updates: The following component is ready 
> to update: Google APIs Intel x86 Atom System Image
> 8:34:41 PM Gradle sync started
> 8:34:53 PM Gradle sync completed
> 8:34:56 PM Frameworks detected: Android framework is detected in the 
> project Configure
> 8:42:12 PM IndexNotReadyException: Please change caller according to 
> com.intellij.openapi.project.IndexNotReadyException documentation
> 8:42:12 PM Update Property Files
>The structure of following Android modules was changed:
>activity-lifecycle
>Would you like to update related project.properties files?
>Only once
>Always for these modules
>Never for these modules


At this point, I decide to close Android Studio and take a different 
approach by importing the project from the desktop. I reopen a different 
project in android studio and go to "File>New>Import Project..." and select 
the activity-lifecycle folder from the desktop and press "OK". In the next 
dialogue box I choose to import it to my Android Studio Projects directory 
and click "Next". I get an "Import Project from ADT (Eclipse Android)" 
dialogue box that says:

The ADT project importer can identify some .jar files and even whole source 
> copies of libraries, and replace them with the Gradle dependencies. 
> However, it cannot figure out which exact version of the library to use, so 
> it will use the latest. If your project needs to be adjusted to compile 
> with the latest library, you can either import the project again and 
> disable the following options, or better yet, update your project.
> [x] Replace jars with dependencies, when possible
> {x] Replace library sources with dependencies, when possible
> Other Import options:
> [x] Create Gradle-style (camelCase) module names


I leave all the boxes checked, and click "Finish". I get a large 
"import-summary.txt" file and a project folder with lots of errors. This is 
what shows up in the event log:

8:58:40 PM Gradle sync started
> 8:58:45 PM Gradle sync failed: Cause: failed to find target with hash 
> string 'android-14' in: C:\Android\sdk
>Consult IDE log for more details (Help | Show Log)
> 8:58:45 PM Gradle sync started
> 8:58:47 PM Gradle sync failed: Cause: failed to find target with hash 
> string 'android-14' in: C:\Android\sdk
>Consult IDE log for more details (Help | Show Log)


So I guess it's because I don't have that SDK on my computer. When I open 
my SDK manager, I see options for SDK API level 10 and 15, but not 14. In 
any case, it must be very, very old.

Is there any easy way to get this to work? Is it even worth it? It seems 
like this project wasn't even designed for Android Studio. I'm just 
becoming very frustrated with learning Android development, since it seems 
like all of the resources to learn it are out of date, including at the 
official android developer site. If there's one sample program that's worth 
keeping up to date, it must be this one. The people who are going to use it 
aren't familiar enough with Android to make it compatible with the latest 
version of Android Studio.



-- 
You received this message because you are subscribed to 

[android-developers] Immediate Need : UI/UX Designer - IL

2016-01-19 Thread Megha Agarwal
*Hello,Please let me know if you have any consultant available for the
below role,Position : Sr. UX DeveloperLocation: Chicago, ILDuration:
6+Months ContractStart Date: ASAP*
Need: USC,GC,EAD GC Only
*Max Rate :$50/hr onC2C*

*Looking for the consultant having an experience in UX Designing *
*___*

*Please send your resumes to megha.agar...@panzersolutions.com  for
immediate consideration*
*Thanks,*
*Megha Agrawal*

*Megha.agarwal@panzersolutions.com203-652-1444*278*

-- 
You received this message because you are subscribed to the Google Groups 
"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/CAOwfwP0aMCBC5%3DtG4L%3Dm836rLNgBccC9OnqeYsTadsonasBmOA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Start up application before sending intent

2016-01-19 Thread NuffsaidM8
I apologize for not taking the time to work out my issues all myself. I'm a 
little out of my league here and am on a tight schedule. I am still 
slightly confused about a few things, such as:

Why do I need to pass data through to the activity? All I want to do right 
now is start it up so that when I broadcast an intent with a filter 
recognized by the other receiver, it executes the code in the receiver in 
the activity class. I think you are insinuating that I could check for the 
data and once I can read it I can send the intent. Is this correct?

-- 
You received this message because you are subscribed to the Google Groups 
"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/6eafbab4-64bd-4358-91b4-f9b132741f9e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] InApp Billing: Fetch Order Details

2016-01-19 Thread Web Services Solutions Group


I'm creating an Android application to sell digital content on my backend 
server. What I wish to do is fetch the order details after successful 
payment from the InApp Purchase and send details to server side as php 
response to retrieve the required data and send it back to the customer.

On the server side the PHP functions are ready and set however how to 
connect the InApp with the PHP code.

An example to fetch the order details from Woocommerce that I use

$products = array();
$_name = $order->billing_first_name.' '.$order->billing_last_name;
$_email = $order->billing_email;
$lastOrderId = $order->id;

Is there an equivalent way for InApp Billing?

-- 
You received this message because you are subscribed to the Google Groups 
"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/3662ef00-7f6b-45a3-8ba6-acd69fcc42a7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Start up application before sending intent

2016-01-19 Thread NuffsaidM8
As soon as I last posted I figured out what you meant and fixed the issue. 
Thanks!

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


[android-developers] Re: Android App Developers - 15 minute phone survey $50 Amazon Gift Card

2016-01-19 Thread melody
Thanks for the participants that have signed up so far.  We are still 
looking for more developers.

On Monday, January 18, 2016 at 3:25:13 PM UTC-8, 
mel...@regattamarketing.com wrote:
>
> We are recruiting Android app creators and sellers to participate in a 
> 15-minute live phone survey. You will receive a $50 Amazon Gift Card as a 
> thank you after you've completed the scheduled phone survey. 
> https://www.surveymonkey.com/r/CR66ZPH
>

-- 
You received this message because you are subscribed to the Google Groups 
"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/0e4d9e31-2650-4da8-925a-fca6d96cc738%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Start up application before sending intent

2016-01-19 Thread NuffsaidM8
In addition, your theory about the activity being created too late is 
correct. I set a log statement in the onCreate method of the activity and 
this message was displayed to me. The message from the receiver in that 
class though was not displayed. The creation message was displayed after 
the message I put after I send the intent with the filter.

-- 
You received this message because you are subscribed to the Google Groups 
"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/6b449fe0-16a7-40f3-9fda-3603d0b7e801%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Start up application before sending intent

2016-01-19 Thread NuffsaidM8
I retract my former statement about not understanding the passing data. I 
have found a solution. Thanks!

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


Re: [android-developers] Start up application before sending intent

2016-01-19 Thread Justin Anderson
Glad you were able to get it worked out.

On Tue, Jan 19, 2016, 8:32 PM NuffsaidM8  wrote:

> As soon as I last posted I figured out what you meant and fixed the issue.
> Thanks!
>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to android-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/android-developers.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/de001d17-91d5-411d-b5bd-5f9b50027285%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

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


Re: [android-developers] This app is incompatible with all of your devices

2016-01-19 Thread Justin Anderson
There are a number of potential reasons. Here are a few links that may help:
http://lifehacker.com/google-play-shows-you-why-an-app-is-incompatible-with-y-496328577

http://stackoverflow.com/questions/21730560/the-app-is-incompatible-with-all-your-devices

http://stackoverflow.com/questions/10475954/why-does-the-google-play-store-say-my-android-app-is-incompatible-with-my-own-de

http://www.ghacks.net/2013/05/06/find-out-why-apps-are-incompatible-with-your-android-device/

By the way, for what it's worth... I found these links with a simple google
search:
http://bfy.tw/3okg

Happy hunting...



On Tue, Jan 19, 2016 at 12:37 AM pankaj kumar 
wrote:

> Hi,
> can anyone suggest how to resolve the issue "This app is incompatible with
> all of your devices."
> Please helpe
> https://play.google.com/store/apps/details?id=com.myapps.vtu
>
> thanks
>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to android-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/android-developers.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/f4fc63f7-2d50-45c1-8042-e83a559260c5%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

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


Re: [android-developers] Immediate Need: .Net UI Developer - MD

2016-01-19 Thread Justin Anderson
Please stop posting these job opportunities.  This forum is for android
developers who have development questions... it is not your personal
recruitment pool.

On Mon, Jan 18, 2016 at 9:04 AM Megha Agarwal 
wrote:

>
>
>
>
> *Hello,Please let me know if you have any consultant available for the
> below role,*Position :* .Net UI Developer*
> Location: Chevy Chase, MD
> Duration: Long Term
>
>
> *H1b & EAD GC Copy is compulsory to submit the profile*
>
>
>
>
>
>
>
>
>
>
>
>
>
> *Required skills:Expertise in ASP.NET  MVC 4
> FrameworkWorking experience on HTML5 and CSS3Good understanding of
> .Net 4.5Experience working with REST and SOAP Web servicesGood JavaScript
> knowledge, especially JQueryUnderstanding of Design Patterns such as
> Dependency injection, SingletonExperience writing Unit Test cases for code
> coverageExperience working with KnockoutExperience working with
> AngularJavascript, Knockout.js, Jasmine js unit testing, and Html/CSS –
> particularly using SASS for CSS compilation.Experience making Ajax calls
> from client to reverse proxy that are directed to app tier.  Application
> handles responses to:  populate controls with applicable data-sources,
> navigate through the application rendering partial views, and consuming
> third-party services used in tracking client side experience.*
>
>
> *___*
>
> *Please send your resumes to megha.agar...@panzersolutions.com
>   for immediate consideration*
>
> *Thanks,*
>
> *Megha Agrawal*
> *megha.agar...@panzersolutions.com
> 203-652-1444*278*
>
> --
> You received this message because you are subscribed to the Google Groups
> "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/CAOwfwP1wX63bNXqpjhkRsArfP6Zyrb0cVmko7V7Asd8qu73rRw%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

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


Re: [android-developers] TabLayout - tab doesn't refresh view

2016-01-19 Thread Justin Anderson
Just for kicks, what happens if you don't create a new fragment every time
you change tabs?  Only create it once, something like this tutorial:
http://www.truiton.com/2015/06/android-tabs-example-fragments-viewpager/

Note, I'm not endorsing that tutorial or anything... I don't see anything
immediately wrong with your code (related to the tabs anyway) but I figured
this tutorial should work, and that is the main difference I see between
your code and this tutorial.

On Tue, Jan 12, 2016 at 9:37 AM Hugo Teijiz  wrote:

> MainActivity:
> @Override
> protected void onCreate(Bundle savedInstanceState) {
> super.onCreate(savedInstanceState);
> setContentView(R.layout.activity_main);
>
>
> getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
> App.setTrxNumber(0);
> App.setContext(MainActivity.this);
>
> if (!isOnline()) {
> Toast.makeText(this, "No se ha Podido Conectar con el
> Servidor", Toast.LENGTH_LONG).show();
> finish();
> }
>
> StrictMode.ThreadPolicy policy = new
> StrictMode.ThreadPolicy.Builder().permitAll().build();
> StrictMode.setThreadPolicy(policy);
>
> if (ContextCompat.checkSelfPermission(this,
> Manifest.permission.READ_PHONE_STATE) == PackageManager.PERMISSION_GRANTED)
> {
> TelephonyManager mngr = (TelephonyManager)
> getSystemService(Context.TELEPHONY_SERVICE);
> imei = mngr.getDeviceId();
> } else {
> ActivityCompat.requestPermissions(this,
> new String[]{Manifest.permission.READ_CONTACTS},
> REQUEST_READ_PHONE_STATE_PERMISSION);
> }
>
> try {
> ContentResolver cr = getContentResolver();
> MostrarSettings(cr, true);
> } catch (Exception e) {
> Toast.makeText(this, e.getMessage(), Toast.LENGTH_LONG).show();
> }
>
> Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
> setSupportActionBar(toolbar);
>
> final TabLayout tabLayout = (TabLayout)
> findViewById(R.id.tab_layout);
> tabLayout.addTab(tabLayout.newTab().setText("PENDIENTES"));
> tabLayout.addTab(tabLayout.newTab().setText("CONFIRM"));
> tabLayout.addTab(tabLayout.newTab().setText("RECHAZADOS"));
> tabLayout.setTabGravity(TabLayout.GRAVITY_FILL);
>
> final ViewPager viewPager = (ViewPager) findViewById(R.id.pager);
> final PagerAdapter adapter = new PagerAdapter
> (getSupportFragmentManager(), tabLayout.getTabCount());
> viewPager.setAdapter(adapter);
> viewPager.addOnPageChangeListener(new
> TabLayout.TabLayoutOnPageChangeListener(tabLayout));
> tabLayout.setOnTabSelectedListener(new
> TabLayout.OnTabSelectedListener() {
> @Override
> public void onTabSelected(TabLayout.Tab tab) {
> viewPager.setCurrentItem(tab.getPosition());
> }
>
> @Override
> public void onTabUnselected(TabLayout.Tab tab) {
>
> }
>
> @Override
> public void onTabReselected(TabLayout.Tab tab) {
> viewPager.setCurrentItem(tab.getPosition());
> }
> });
> }
>
> PagerAdapter.java:
> import android.support.v4.app.Fragment;
> import android.support.v4.app.FragmentManager;
> import android.support.v4.app.FragmentStatePagerAdapter;
>
> /**
>  * Created by Hugo on 08/01/2016.
>  */
> public class PagerAdapter extends FragmentStatePagerAdapter {
> int mNumOfTabs;
>
> public PagerAdapter(FragmentManager fm, int NumOfTabs) {
> super(fm);
> this.mNumOfTabs = NumOfTabs;
> }
>
> @Override
> public Fragment getItem(int position) {
>
> switch (position) {
> case 0:
> PendFragment tab1 = new PendFragment();
> return tab1;
> case 1:
> ConfirmFragment tab2 = new ConfirmFragment();
> return tab2;
> case 2:
> RejectFragment tab3 = new RejectFragment();
> return tab3;
> default:
> return null;
> }
> }
>
> @Override
> public int getCount() {
> return mNumOfTabs;
> }
> }
>
> El martes, 12 de enero de 2016, 12:26:10 (UTC-3), MagouyaWare escribió:
>
>> Code?
>>
>> On Tue, Jan 12, 2016, 9:16 AM Hugo Teijiz  wrote:
>>
> Hello to everyone.
>>>
>>> I develop an Android application with TabLayout. The App has 3 tabs.
>>> When I click over Tab 1 (Index 0) and Tab 3 (Index 2) the view refresh
>>> great, but when I click over Tab 2 (Index 1) nothing happens.
>>>
>>> OnSelectedTab Listener executed correctly, and execute then
>>> setCurrentItem of viewPager, but onCreateView of Fragment doesn't execute.
>>>
>>> Any ideas?
>>>
>>> Thanks in advance
>>>
>>> Regards!!
>>>
>>> Hugo
>>>
>>> --
>>> 

[android-developers] After signing app, what APK file can my phone use?

2016-01-19 Thread NuffsaidM8
I just learned about signing a finished app. I want to know how I could get 
this app onto my phone. I understand that it is an APK file that should be 
put on the phone, but I'm not sure which one. The output lead me to a 
folder title "app" in which there is an apk file directly in sight 
called app-release.apk. Is this what I want? I can also dig into the build 
folder and find three more .apk files named "app-debug" 
"app-debug-unaligned" and "app-release-unaligned". I doubt these are what I 
want, but I really have no idea.

Can somebody help me out here? Thanks!

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


Re: [android-developers] SDK installation does not detect JDK

2016-01-19 Thread Justin Anderson
If you look at the development requirements, you will see that you need JDK
7:
http://developer.android.com/sdk/index.html#Requirements

On Tue, Jan 19, 2016 at 6:38 PM Ranieri Santos  wrote:

> Hello all,
>
> I´m using Windows7 64 bit and installed JDK1.8.0_66 (64 bit) but the SDK
> installation is not detecting the JDK. I´ve installed the SDK tools and the
> SDK was detected correctly but it´s not working with the IDE or the bundle.
> I´ve already insert the JAVA_HOME variable as C:\Program
> Files\Java\jdk1.8.0_66 and insert %JAVA_HOME% in PATH. Both java -version
> and javac -version are giving me the correct java versions. What am I
> missing?
>
> The IDE version is 24.4.1.
>
> Thanks for the help,
>
> Ranieri
>
> --
> You received this message because you are subscribed to the Google Groups
> "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/cb8fc826-0ec0-4552-a66c-ef0de5b55737%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

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


Re: [android-developers] After signing app, what APK file can my phone use?

2016-01-19 Thread Justin Anderson
Providing you went through the signing process, then app-release.apk is the
one you want.


On Tue, Jan 19, 2016 at 9:37 PM NuffsaidM8  wrote:

> I just learned about signing a finished app. I want to know how I could
> get this app onto my phone. I understand that it is an APK file that should
> be put on the phone, but I'm not sure which one. The output lead me to a
> folder title "app" in which there is an apk file directly in sight
> called app-release.apk. Is this what I want? I can also dig into the build
> folder and find three more .apk files named "app-debug"
> "app-debug-unaligned" and "app-release-unaligned". I doubt these are what I
> want, but I really have no idea.
>
> Can somebody help me out here? Thanks!
>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to android-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/android-developers.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/22f1a951-95f1-4cff-a683-ba76341322d3%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

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


Re: [android-developers] read file from phone by using android studio

2016-01-19 Thread Justin Anderson
What files are you trying to access?

On Tue, Jan 19, 2016 at 1:13 AM omo  wrote:

> Hi, i m newbie here. I want to choose files from phone and encrypt it.
> The problem is i cannot get the path or select the files.
> Can teach me how to solve this problem by using what method?
> Or any tutorial can i learn? thank you
>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to android-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/android-developers.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/7c39ce30-c72d-490e-a87a-5687c1623e8c%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

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


Re: [android-developers] Ability for users to resize views?

2016-01-19 Thread Justin Anderson
You haven't provided anywhere near enough information to get the info you
want...

http://www.catb.org/esr/faqs/smart-questions.html
http://android-dev-tips-and-tricks.blogspot.com/2012/08/so-you-need-help.html


On Mon, Jan 18, 2016 at 1:05 PM  wrote:

> My Android app has two views, displayed simultaneously, when the app is in
> landscape orientation.
>
> I would like to enable the user to change the relative sizes of the views.
> In other words, the user could change the left view to be 20% of the width,
> and the right view to be 80%.
>
> What is the recommended approach?
>
> Sincerely,
>
> Eric Bergman-Terrell
> www.ericbt.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/d479b80c-b967-428b-91ce-47aafe9f562d%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

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


Re: [android-developers] How Can I Insert Radiobutton Value To SQLite (radio button 1 & radio button 2 has a value of 1)

2016-01-19 Thread Justin Anderson
I don't understand0 what you are asking... storing a value in a database
should be pretty straightforward.  What have you tried so far for storing a
value in a database?

On Tue, Jan 12, 2016, 9:11 AM Fernando Nicolei Esperida <
fernandonico...@gmail.com> wrote:

> I Am Creating A Voting App For Our School And I Need A To Create A
> Database To Store The Votes. This Is The video
> 
>  This
> Is The Result Activity 
>
> This Is The Result.java
>
>  package com.unicorninteractive.ssgelectionmobilerssths;
>
> import android.database.sqlite.SQLiteDatabase;
> import android.os.Bundle;
> import android.support.v7.app.AppCompatActivity;
> import android.widget.Button;
> import android.widget.TextView;
>
> public class results extends AppCompatActivity {
>
> @Override
> protected void onCreate(Bundle savedInstanceState) {
> super.onCreate(savedInstanceState);
> setContentView(R.layout.activity_results);
>
>
>}}
>
> And This Is The President.java (Voting Activity)
>
> package com.unicorninteractive.ssgelectionmobilerssths;
>
> import android.content.Intent;
> import android.support.v7.app.AppCompatActivity;
> import android.os.Bundle;
> import android.view.View;
> import android.widget.Button;
> import android.widget.RadioButton;
> import android.widget.Toast;
> public class President extends AppCompatActivity {
> Button btn_votep;
> @Override
> protected void onCreate(Bundle savedInstanceState) {
> super.onCreate(savedInstanceState);
> setContentView(R.layout.activity_president);
> btn_votep = (Button) findViewById(R.id.btn_votep);
> btn_votep.setOnClickListener(btnlistener);
> Toast toast=Toast.makeText(this, "Your Vote Is Now Counted", 
> Toast.LENGTH_LONG);
> toast.show();
> }
> public void onRadioButtonClicked(View view) {
> // Is the button now checked?
> boolean checked = ((RadioButton) view).isChecked();
>
> // Check which radio button was clicked
> switch(view.getId()) {
> case R.id.rb_p1:
> if (checked)
> // President 1
> break;
> case R.id.rb_p2:
> if (checked)
> // President 2
> break;
> }}
>
>
> private View.OnClickListener btnlistener = new  View.OnClickListener(){
>
> @Override
> public void onClick(View v) {
> Intent intent = new Intent(President.this , Vicepresident.class);
> startActivity(intent);
>}
>  };
>}
>
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "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/649dbb60-5c9a-4db0-8821-62f62393890c%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

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


Re: [android-developers] My apk is pirated

2016-01-19 Thread J Decker
On Tue, Jan 19, 2016 at 7:25 AM, WeiHung  wrote:
> I have an paid app on google play. Unfortunately, I found the paid apk is
> distributed over the internet. And the distributed apk is EXACTLY the same
> as what I uploaded to google play.
>
>
> What method does the hacker take to get the apk?
>
I'd guess with a bogus account and bogus credit card.

>
> Is there any method to protect my effort?
It looks like #3 is probably your best bet on the following link you
supplied.  (check what app installed it)

>
> I found some suggestions here.
> https://www.airpair.com/android/posts/adding-tampering-detection-to-your-android-app
>
>
> Is there any other suggestion?
>
> --
> You received this message because you are subscribed to the Google Groups
> "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/52df9b7c-f5d7-4219-bf93-bf6ff4bd59c7%40googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

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


Re: [android-developers] Android

2016-01-19 Thread sardar khan
we can use picasso librar to set image on ImageView

On Tue, Jan 19, 2016 at 6:10 PM, Chandan Parlecha 
wrote:

> when image is comes from server how we use for all the device, means how
> we can set for the device ?
>
> --
> You received this message because you are subscribed to the Google Groups
> "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/525e2bd1-10e4-4b96-b5fe-500cbc95853d%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

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


[android-developers] Android

2016-01-19 Thread Chandan Parlecha
when image is comes from server how we use for all the device, means how we 
can set for the device ?

-- 
You received this message because you are subscribed to the Google Groups 
"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/525e2bd1-10e4-4b96-b5fe-500cbc95853d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Multi-users on Marshmallow fingerprint API

2016-01-19 Thread Rob Maclean
Hello,

We would like to rollout Nexus 5X with Marshmallow for a time and 
attendance project, using the new API/ support for integrated fingerprint 
scanner.

However everything I read seems to be about how to use it to identify the 
user of that phone alone. I need to be able to identify multiple users from 
one device based upon their fingerprints.

Is this possible? I have scanned the forums and the API but am not 
technical enough to be able to see exactly what is possible.

Thank you for any and all help.

Newbie Rob

-- 
You received this message because you are subscribed to the Google Groups 
"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/bda65497-0d59-4c49-b5d9-f576cbf3932e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Running an experiment in open beta-test

2016-01-19 Thread Subhadeep Mondal
Not sure whether we can do that. Even I'm exploring open beta testing right 
now. Mostly it's for getting feedback for at a build level. However you can 
do A/B testing on screenshots once your app is live under 'Experiments' tab 
in Google Play Developer Console. Let me know if you find otherwise.

On Thursday, January 14, 2016 at 7:35:11 PM UTC+5:30, MIchael Grab wrote:
>
> Good day! 
> I have not published my app yet, however I have a question I couldn't find 
> an answer in google.
> Is it possible to run an experiment (to test several 
> icons/screenshots/descriptions) for an app in open beta test? 
> Thanks.
>

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


Re: [android-developers] Re: App changes name???

2016-01-19 Thread Burke Knight
It seemed it was a messup from another person attached as an editor.
Their system did it automatically, somehow, which is being looked into.
The system was only meant to update changes to the app on their site, but 
some how, it did the changes on it's own.
We suspect there was some glitch in their system, due to another app being 
similar name.
However, until they fix the system, their edit rights have been revoked.
Now, to try to find how this happened, and fix the automated system, before 
it does it to others...LOL


On Monday, January 18, 2016 at 7:59:03 PM UTC-5, Nalin Savara wrote:
>
> What exactly was the issue that caused app description and name to be 
> changed other than hacked ?
> Will really appreciate if you can share with all of us -- since it will be 
> useful to know - and at some level even you wanted community help.
>
> Regards,
>
> Nalin 
> On 19 Jan 2016 06:17, "Burke Knight"  
> wrote:
>
>> No, no one hacked my account.
>> I think I may found the issue, but to say the least, it was not my 
>> account that was the issue.
>> How it was, is being dealt with.
>>
>>
>>
>> On Monday, January 18, 2016 at 7:41:59 PM UTC-5, MagouyaWare wrote:
>>>
>>> Sounds like someone hacked your account...
>>>
>>> On Mon, Jan 18, 2016, 6:37 PM Burke Knight  wrote:
>>>
 Since can't edit post, have to double post.


 Not only was the title changed, but the description was, too.
 I'm not very pleased with this, as it added false information to the 
 description.

 -- 
 You received this message because you are subscribed to the Google 
 Groups "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-d...@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/94de6a09-3a30-4ef8-b75a-248373f25bba%40googlegroups.com
  
 
 .
 For more options, visit https://groups.google.com/d/optout.

>>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Android Developers" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to android-developers+unsubscr...@googlegroups.com .
>> To post to this group, send email to android-d...@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/b04fa337-4b4b-4dc2-b7fa-9acea977130d%40googlegroups.com
>>  
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>

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


[android-developers] Realm: Practical Use in Android

2016-01-19 Thread Mariia Kuz


Knowing how to work with databases is very important in development. We at 
MLSDev would like to share our experience in working with Realm 
. Hopefully, this information will help you to 
answer a few practical questions about  Realm, if you have them.

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


[android-developers] How to How to automatically remove unpaired Bluetooth devices from paired devices list?

2016-01-19 Thread PinkJazzX
I currently have the following code that gives me a list of paired 
Bluetooth devices:

protected String[] getPairedDevices() {
String[] listDevices; 
Set devices = btAdapter.getBondedDevices(); 
if (devices.size() <= 0) {
Toast.makeText(this, "No Paired Bluetooth devices found.", Toast.
LENGTH_LONG).show();
return null; 
} else {
listDevices = new String[devices.size()];
int x = 0; for (BluetoothDevice device : devices) {
String deviceName = device.getName();
String deviceAddress = device.getAddress();
listDevices[x] = deviceName + "\r\n" + deviceAddress; x++;
}
return listDevices; 
}
}


However, after I unpair a device, the unpaired device remains on the list 
of devices. Is there any way I can automatically remove the unpaired device 
from the list if a device is unpaired?

-- 
You received this message because you are subscribed to the Google Groups 
"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/cdd604ef-48d7-46dd-87d2-8fe5bed18952%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] My apk is pirated

2016-01-19 Thread WeiHung


I have an paid app on google play. Unfortunately, I found the paid apk is 
distributed over the internet. And the distributed apk is EXACTLY the same 
as what I uploaded to google play.


What method does the hacker take to get the apk?


Is there any method to protect my effort?

I found some suggestions here. 
https://www.airpair.com/android/posts/adding-tampering-detection-to-your-android-app


Is there any other suggestion?

-- 
You received this message because you are subscribed to the Google Groups 
"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/52df9b7c-f5d7-4219-bf93-bf6ff4bd59c7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Re: App changes name???

2016-01-19 Thread Nalin Savara
Cool scene Burke - thanks for sharing this info and wishing you all the
best with your app.

Btw if you want you can send me it's like and I too will download it and
give it a good review / rating.

Regards,
Nalin
On 19 Jan 2016 19:36, "Burke Knight"  wrote:

> It seemed it was a messup from another person attached as an editor.
> Their system did it automatically, somehow, which is being looked into.
> The system was only meant to update changes to the app on their site, but
> some how, it did the changes on it's own.
> We suspect there was some glitch in their system, due to another app being
> similar name.
> However, until they fix the system, their edit rights have been revoked.
> Now, to try to find how this happened, and fix the automated system,
> before it does it to others...LOL
>
>
> On Monday, January 18, 2016 at 7:59:03 PM UTC-5, Nalin Savara wrote:
>>
>> What exactly was the issue that caused app description and name to be
>> changed other than hacked ?
>> Will really appreciate if you can share with all of us -- since it will
>> be useful to know - and at some level even you wanted community help.
>>
>> Regards,
>>
>> Nalin
>> On 19 Jan 2016 06:17, "Burke Knight"  wrote:
>>
>>> No, no one hacked my account.
>>> I think I may found the issue, but to say the least, it was not my
>>> account that was the issue.
>>> How it was, is being dealt with.
>>>
>>>
>>>
>>> On Monday, January 18, 2016 at 7:41:59 PM UTC-5, MagouyaWare wrote:

 Sounds like someone hacked your account...

 On Mon, Jan 18, 2016, 6:37 PM Burke Knight  wrote:

> Since can't edit post, have to double post.
>
>
> Not only was the title changed, but the description was, too.
> I'm not very pleased with this, as it added false information to the
> description.
>
> --
> You received this message because you are subscribed to the Google
> Groups "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-d...@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/94de6a09-3a30-4ef8-b75a-248373f25bba%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>
 --
>>> You received this message because you are subscribed to the Google
>>> Groups "Android Developers" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to android-developers+unsubscr...@googlegroups.com.
>>> To post to this group, send email to android-d...@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/b04fa337-4b4b-4dc2-b7fa-9acea977130d%40googlegroups.com
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to android-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/android-developers.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/b15a9d7e-2b8f-4469-b05b-91b859f0a4e2%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

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