[android-developers] Re: Tax 1099-K's are NOT correct

2014-02-14 Thread Julian Bunn
The 1099-K amount is the gross amount: what is received by you the 
developer is 70% of that.

If I multiply my 1099-K amount by 0.7 it matches what Google paid me in 
2013 pretty closely.

AFAIK the taxable income is the amount you received, not the 1099-K amount.



On Tuesday, February 11, 2014 3:40:25 PM UTC-8, niko20 wrote:
>
> Back in January of this year I went through all my 2013 payouts (actual 
> transactions where money was sent to my bank) and added up all the amounts.
>
> Now Google has sent me a 1099-K, and it's about $10,000 more than what I 
> added up. It is just flat wrong.
>
> Who the hell can I even call about this. Thanks to them the IRS is going 
> to think I made way more. I added what was actually sent to my bank. 
>
> To me, the numbers Google has never add up. I have never seen them add up 
> correctly.
>
>
>

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


[android-developers] Keep Android WebView bounds "hard" during flip animation

2014-02-14 Thread Andrea Cardaci



In short, I want to achieve the same behavior of any other static view, 
say, an ImageView during the animation. In other words I want that the 
animation is performed on the currently rendered portion of the WebView, 
without update.
This is what happens instead (you can use the scroll indicators to have an 
idea on where the original bounds were):



Also, since in this case the animation is a flip along the Y axis, the 
farther half of the WebView gets trimmed. I suspect that is a related 
problem.

I don't think the code would be useful here, anyway, here it is (relevant 
bits):

*MainActivity.java*

Animator animator = AnimatorInflater.loadAnimator(this, R.animator.rotate);
animator.setTarget(findViewById(R.id.web_view));
animator.start();

*activity_main.xml*



*rotate.xml*

http://schemas.android.com/apk/res/android"; >





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


[android-developers] Re: Crash when running Bluetooth example from Android Docs

2014-02-14 Thread Tobiah

On 02/14/2014 11:18 AM, Tobiah wrote:

So I tried a third device, and finally got a trace out of Logcat.

It says I don't have the right permissions, but I did put them
into my manifest in the same place as all of my other permissions:

 
 

I'm not sure how else to make sure I have the right permissions.


Meh, something was out of sync.  I just played with the manifest a little
more and saved it again and things started working.



--
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
--- 
You received this message because you are subscribed to the Google Groups "Android Developers" group.

To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[android-developers] Re: Crash when running Bluetooth example from Android Docs

2014-02-14 Thread pdm-tex
Tobiah,

This is what I used to get adapter:
mBtAdapter = (BluetoothAdapter) 
this.getApplicationContext().getSystemService(BLUETOOTH_SERVICE);

Doug

On Thursday, February 13, 2014 6:31:13 PM UTC-5, Tobiah wrote:
>
>
> I'm going through the Bluetooth docs and right off I 
> am having a problem.  The code below is cut right from 
>
> http://developer.android.com/guide/topics/connectivity/bluetooth.html 
>
> BluetoothAdapter mBluetoothAdapter = 
> BluetoothAdapter.getDefaultAdapter(); 
> if (!mBluetoothAdapter.isEnabled()) { 
> Intent enableBtIntent = new 
> Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE); 
> startActivityForResult(enableBtIntent, 
> REQUEST_ENABLE_BT); 
> } 
>
> I'm setting REQUEST_ENABLE_BT to an arbitrary integer. 
>
> I tried running this on two devices, starting with 
> bluetooth off.  On the tablet, the app crashes when checking 
> mBluetoothAdapter.isEnables().  On my Galaxy note 3, it 
> makes it past that check, but then the app crashes when 
> startActivityForResult() is called. 
>
> There is no output in the Logcat in either case. 
>
> Thanks for any help! 
>
> Tobiah 
>

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


[android-developers] Re: Crash when running Bluetooth example from Android Docs

2014-02-14 Thread Tobiah

So I tried a third device, and finally got a trace out of Logcat.

It says I don't have the right permissions, but I did put them
into my manifest in the same place as all of my other permissions:




I'm not sure how else to make sure I have the right permissions.

Thanks,

Toby

On 02/13/2014 03:31 PM, Tobiah wrote:


I'm going through the Bluetooth docs and right off I
am having a problem.  The code below is cut right from

http://developer.android.com/guide/topics/connectivity/bluetooth.html

 BluetoothAdapter mBluetoothAdapter = 
BluetoothAdapter.getDefaultAdapter();
 if (!mBluetoothAdapter.isEnabled()) {
 Intent enableBtIntent = new 
Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
 startActivityForResult(enableBtIntent, REQUEST_ENABLE_BT);
 }

I'm setting REQUEST_ENABLE_BT to an arbitrary integer.

I tried running this on two devices, starting with
bluetooth off.  On the tablet, the app crashes when checking
mBluetoothAdapter.isEnables().  On my Galaxy note 3, it
makes it past that check, but then the app crashes when
startActivityForResult() is called.

There is no output in the Logcat in either case.

Thanks for any help!

Tobiah


--
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
--- 
You received this message because you are subscribed to the Google Groups "Android Developers" group.

To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [android-developers] Crash when running Bluetooth example from Android Docs

2014-02-14 Thread Tobiah

On 02/13/2014 10:46 PM, gjs wrote:

Hi,

On the same page -

BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
if (mBluetoothAdapter == null) {
 // Device does not support Bluetooth
}

Regards



Yeah, I knew that both devices had bluetooth and mBluetoothAdapter was not null.
I actually put that test in there afterward, and it came out false, and the
execution when on to crash as it had before.

Toby

--
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
--- 
You received this message because you are subscribed to the Google Groups "Android Developers" group.

To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[android-developers] payment suspension

2014-02-14 Thread BearTi
Hi,

how can I set a payment suspension. I don´t have any options in my wallet? 
I´m sellings Apps over the Play Store...

Is it even possible?

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


[android-developers] Re: Google Play services out of date Requires 3225100 but found 3136136

2014-02-14 Thread janvi
One more info is that I have used Google-Play-services for Push 
Notifications[GCM]

On Friday, February 14, 2014 2:44:36 PM UTC+5:30, janvi wrote:
>
> Hello All,
>
>
> Can any one tell me how to fix this bug??
>
> It is reported by the end-user's  and here Iam unable to reproduce it.
>
> As per my google search it is because of Google-Play-Service is not 
> compatible with SDK which we have used for development.
>
> Please correct me if Iam wrong and share the info on how to fix this issue.
>
> 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
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[android-developers] Google Play services out of date Requires 3225100 but found 3136136

2014-02-14 Thread janvi
Hello All,


Can any one tell me how to fix this bug??

It is reported by the end-user's  and here Iam unable to reproduce it.

As per my google search it is because of Google-Play-Service is not 
compatible with SDK which we have used for development.

Please correct me if Iam wrong and share the info on how to fix this issue.

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