[android-developers] DropBox

2013-11-26 Thread Arun Kumar K
Hi Guys, I am integrate my android app with drop-box...What i need is i am get the share file/folder link now i want to know how to share that link with my friends? -- *Regards* *Arun* -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] BLE support in Android

2013-11-26 Thread Guillermo Polonsky
Hi, Which is the first Android version with BLE support? In particular, Does Samsung galaxy s2 support BLE? Thanks in advance. Guillermo -- 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] Application crashes on Formatted Android Phone

2013-11-26 Thread Krishna Mahadik
Hello Guys, I am facing awkward problem. Android Mobile Users who has formatted their handsets are not able to run my application. In rest of Android Mobiles the application is running just fine. Can anyone enlighten me what could be the possible reason and how can i over come such a problem.

Re: [android-developers] Re: Google seems unresponsive to reports about two adware developers I found

2013-11-26 Thread Michael Palmer
I am now more concerned about Electric Plasma HDhttps://play.google.com/store/apps/details?id=com.lzc.live.wallpaper.electrichl=en. It is not named identically to my app, but it is the same sort of adware/malware as the Electric Plasma Live Wallpaper knockoff and it has achieved more

Re: [android-developers] Android 4.4 Encryption Code Not Backwards Compatible

2013-11-26 Thread Pent
What does key.getAlgorithm() return on 4.4 and previous versions? PBEWithSHA256And256BitAES-CBC-BC on both. What does ecipher.getProvider().getName() return on 4.4 and previous versions? BC on both (bouncy castle I guess) Note that Using Cipher.getInstance() without specifying

Re: [android-developers] Re: Google seems unresponsive to reports about two adware developers I found

2013-11-26 Thread John Coryat
Michael, I suggest you just move on. You've reported those apps. There's nothing more to do. If Google eventually sees fit to remove them, then fine. If it takes them five years, that's just the way it is. -John Coryat On Tuesday, November 26, 2013 8:43:23 AM UTC-6, Michael Palmer wrote: I

[android-developers] Re: Android 4.4 Encryption Code Not Backwards Compatible

2013-11-26 Thread Pent
I forgot: if I pad initVector up to 16 bytes, and using the code I posted in the first post, I get this from the cipher init() call: java.security.InvalidKeyException: invalid parameter passed to AES init - com.android.org.bouncycastle.crypto.params.ParametersWithIV So it seems that

[android-developers] Google banned AdSense account, and will not pay money earned with Paid App

2013-11-26 Thread Paulo Cesar
Hi everybody, I have a app published for more then one year, Lumiè, for photo enchantments. So, early in Android, payments were sent to AdSense, before they migrated to Google Checkouts. Thing is, I had more then $4.000,00 in Google AdSense, but never was able to receive the money. Last month,

Re: [android-developers] Re: Android 4.4 Encryption Code Not Backwards Compatible

2013-11-26 Thread Nikolay Elenkov
On Wed, Nov 27, 2013 at 1:10 AM, Pent supp...@apps.dinglisch.net wrote: I forgot: if I pad initVector up to 16 bytes, and using the code I posted in the first post, I get this from the cipher init() call: java.security.InvalidKeyException: invalid parameter passed to AES init -

Re: [android-developers] Re: Android 4.4 Encryption Code Not Backwards Compatible

2013-11-26 Thread Pent
The reason it worked before is that it was probably falling back to using the IV included with the key (Cf. the class name). PBE algorithms can derive both the key and the IV from the password. Bingo! Changing the IV on an older device doesn't affect decryption :-) Convert your key

[android-developers] Re: Android 4.4 Encryption Code Not Backwards Compatible

2013-11-26 Thread Pent
. no, because it's different for each passphrase. So the problem is that I'm specifying an IV at all now, so it's not doing it's internal derivation from the password ? Pent -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Re: Android 4.4 Encryption Code Not Backwards Compatible

2013-11-26 Thread Pent
Yep, that's it, if I pass a null parameter spec it can decode the old files on 4.4. Can't thank you enough for your help! Pent -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Re: Android 4.4 Encryption Code Not Backwards Compatible

2013-11-26 Thread Nikolay Elenkov
On Wed, Nov 27, 2013 at 2:53 AM, Pent supp...@apps.dinglisch.net wrote: Yep, that's it, if I pass a null parameter spec it can decode the old files on 4.4. Or just use the Cipher.init() version that takes only two parameters: ecipher.init( Cipher.ENCRYPT_MODE, key) -- You received this

Re: [android-developers] Re: Android 4.4 Encryption Code Not Backwards Compatible

2013-11-26 Thread Pent
Or just use the Cipher.init() version that takes only two parameters: ecipher.init( Cipher.ENCRYPT_MODE, key) This experience has taught me to specify all possible parameters when dealing with encryption :-) Pent -- You received this message because you are subscribed to the Google

[android-developers] Problem signing up for Google Play for Education

2013-11-26 Thread Cliff Davies
My application was reviewed for Google Play for Education and had issues that needed to be addressed. I was instructed to visit developer.android.com/edu and sign uphttps://services.google.com/fb/forms/playedu but I get Internal Server Error 500 on every attempt to sign up. Has anyone else had

[android-developers] Re: How to direct adb commands to specified device?

2013-11-26 Thread Jose_GD
It seems -s works only with real devices' serial numbers (and emulator generated names, AFAIK), not with IP addresses. El miércoles, 28 de septiembre de 2011 09:32:23 UTC-3, Vasyl Boyko escribió: Hello. How to direct adb commands to specified device? I have two devices: adb devices

[android-developers] How do I validate an android.net.http.SslCertificate with an X509TrustManager?

2013-11-26 Thread Heath Borders
Cross-Posted on Stackoverflow: http://stackoverflow.com/q/20228800/9636 Android's WebViewClient calls onReceivedSslError when it encounters an untrusted cert. However, the SslError object I receive in that call doesn't have any way public way to get to the underlying X509Certificate to

[android-developers] Re: How do I validate an android.net.http.SslCertificate with an X509TrustManager?

2013-11-26 Thread Heath Borders
Added a feature request: https://code.google.com/p/android/issues/detail?id=62883thanks=62883ts=1385503421 On Tuesday, November 26, 2013 3:59:41 PM UTC-6, Heath Borders wrote: Cross-Posted on Stackoverflow: http://stackoverflow.com/q/20228800/9636 Android's WebViewClient calls