[android-developers] Re: Weird accelerometer maximum value

2012-10-22 Thread Chrystian Vieyra
My Asus TF300T also returns an unusually high maximum range value, my other devices return a reasonable range, so I also have been wondering what that value actually is. On Monday, October 22, 2012 3:48:19 AM UTC-5, intersum wrote: Hi, When I use function *getMaximumRange()* to get maximum

[android-developers] Re: Phone can't download my app

2012-07-30 Thread Chrystian Vieyra
Perhaps something on the Build.prop that CyanogenMod uses is causing the app not being compatible with the phone, why don't you check the build.prop file? Have you checked the android developer console to see if you have any users with a galaxy SII? On Monday, July 30, 2012 4:33:48 PM

[android-developers] Re: Is Java 7 ok to use now?

2012-06-22 Thread Chrystian Vieyra
I have been using Java 7 for the past few months and so far I have not had any issues. On Thursday, June 21, 2012 12:54:14 PM UTC-5, Spooky wrote: Last I heard, Java 7 and the SDK weren't getting along with each other very well (if at all). Is this still the case? Or is Java 7 ok now?

[android-developers] Re: SQLite sharing between apps

2012-02-22 Thread Chrystian Vieyra
You could share the database via content providers or by sharing the user id both applications will be able to access each other resources. -- 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: SQLite sharing between apps

2012-02-22 Thread Chrystian Vieyra
android:sharedUserIdThe name of a Linux user ID that will be shared with other applications. By default, Android assigns each application its own unique user ID. However, if this attribute is set to the same value for two or more applications, they will all share the same ID — provided that

[android-developers] Re: ADB with docking station

2012-02-21 Thread Chrystian Vieyra
Have you tried wireless adb? -- 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] Re: button

2011-11-07 Thread Chrystian Vieyra
Button.setTextColor(color); -- 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] Re: Layout

2011-10-03 Thread Chrystian Vieyra
Why do you need a back button on your layout? The current CCC states that device implementations MUST make these functions available to the user at all times, regardless of application state. These functions SHOULD be implemented via dedicated buttons. A physical back button is standard, having

Re: [android-developers] Re: question about other markets

2011-08-08 Thread Chrystian Vieyra
Amazon is waiving the $99 program fee for developer's first year of the program. -- 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

[android-developers] Re: question about other markets

2011-08-07 Thread Chrystian Vieyra
I think the only other big market is amazon app store. I am not a big fan of amazon app store, as amazon gets to set the app price, they take about two to three weeks to review the apps and they do not provide error reports. -- You received this message because you are subscribed to the Google

Re: [android-developers] Re: question about other markets

2011-08-07 Thread Chrystian Vieyra
https://developer.amazon.com/help/faq.html -- 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] Re: Motion Sensor in Android

2011-08-03 Thread Chrystian Vieyra
That video is making use of the front facing camera. Crunchfish sells that api. -- 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

[android-developers] Re: Motion Sensor in Android

2011-08-03 Thread Chrystian Vieyra
The tablet on the video is making use of its front facing camera, Crunchfish sells the api to do that. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe

[android-developers] Re: how to run apk remotely

2011-08-03 Thread Chrystian Vieyra
Have you considered creating a simulator of your app on silverlight or flash? -- 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

[android-developers] Re: Samsung Galaxy Tab as a development target?

2011-07-18 Thread Chrystian Vieyra
You can use the Galaxy tab as a development target, simply plug in the supplied cable to the computer. -- 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

[android-developers] Re: Samsung Galaxy Tab as a development target?

2011-07-18 Thread Chrystian Vieyra
http://www.amazon.com/gp/customer-media/product-gallery/B00519RW1U/ref=cm_ciu_pdp_images_0?ie=UTF8index=0 -- 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

[android-developers] Re: Can I sell hardware+app together on Android Market?

2011-07-17 Thread Chrystian Vieyra
The android market is for selling software, not software and hardware. How would you handle special refunds? It seems that the best approach to your app would be to contact Google and see if they can give you a special android market contract or you can try to sell your app on a different

[android-developers] Re: emulator problem

2011-07-16 Thread Chrystian Vieyra
There is a problem with R12 where the SDK location cannot contain any spaces. You need to change the sdk location path in Eclipse. -- 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] Re: Billing System

2011-07-05 Thread Chrystian Vieyra
You must collect the payment via an authorized Android Market Payment Processor. -- 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

[android-developers] Re: How to speed up emulator a little ?

2011-07-04 Thread Chrystian Vieyra
There is nothing you can do to speed up the emulator. During google io it was announced that the emulator will be supporting hardware gl, which will make the emulator significantly faster. Besides waiting for a faster emulator perhaps you should consider testing your app using a service like

[android-developers] Re: Network error in emulator

2011-06-25 Thread Chrystian Vieyra
adb shell # sqlite3 /data/data/com.android.providers.settings/databases/settings.db sqlite INSERT INTO system VALUES(99,’http_proxy', 'proxy:port'); sqlite.exit -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] Re: Comments and Contacting Users

2011-06-25 Thread Chrystian Vieyra
Unfortunately there is no way to contact the users, I really wish we had a way to communicate with our customers and help them. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Re: Device administration disabling

2011-06-23 Thread Chrystian Vieyra
As far as I know it is not possible to prevent the user from disabling device administrators. -- 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

Re: [android-developers] How to give a APK file to customer for testing

2011-06-22 Thread Chrystian Vieyra
I second that. By the way, Treking I have been using your app for over a year, good job! -- 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

[android-developers] Re: How to give a APK file to customer for testing

2011-06-22 Thread Chrystian Vieyra
I second that!! On Jun 22, 1:43 pm, TreKing treking...@gmail.com wrote: On Wed, Jun 22, 2011 at 12:42 AM, yogesh bansal yogeshbansa...@gmail.comwrote:  Then the purpose of the customer is solved. Now he has the apk file with him and He can use it freely and after that he can refuse to

[android-developers] Re: Android AVD 3.0 Problem

2011-03-10 Thread Chrystian Vieyra
I don't quite understand your problem, are you trying to do Android development using Visual Studio?? On Mar 10, 8:16 am, Ali Murtaza mralimurt...@gmail.com wrote: Hi All I have just installed the Android 3.0. I am facing a problem. I am using Window XP, I have installed the .NET 4.0 version

[android-developers] Re: How to improve Honeycomb emulator performance?

2011-03-01 Thread Chrystian Vieyra
Android 3.0 emulation is very very slow, the android development team had this note in the SDK release notes: Known issues with emulator performance: Because the Android emulator must simulate the ARM instruction set architecture on your computer, emulator performance is slow. We’re working hard

[android-developers] Re: how to read calendar

2010-07-12 Thread Chrystian Vieyra
http://developer.android.com/reference/java/util/Calendar.html On Jun 9, 6:14 am, Mark Murphy mmur...@commonsware.com wrote: pramod.deore wrote: Can we readcalendarin Vcard format? There is noCalendarin the Android SDK, sorry. -- Mark Murphy (a Commons