[android-developers] How to calibrate accelerometer sensor on Google Nexus 6P?

2016-07-07 Thread gjs
Wave device around in large figure 8 -- 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

[android-developers] Re: Saving Data on External Storage

2016-07-02 Thread gjs
See https://developer.android.com/training/basics/data-storage/files.html and https://developer.android.com/reference/android/content/Context.html#getExternalFilesDir(java.lang.String) On Friday, July 1, 2016 at 11:35:27 PM UTC+10, Paolo Turatti wrote: > > Hello everybody! > > I am not able to

[android-developers] Re: Can't get rid of the title

2016-07-02 Thread gjs
https://www.google.com.au/webhp?sourceid=chrome-instant=1=2=UTF-8#q=Android+hide+title+bar On Saturday, July 2, 2016 at 12:08:55 AM UTC+10, ERPMusicVideos wrote: > > Hi, > I'm in trouble. Can't get rid of the title when the app is open > (VideoEnabledWebView)... have tried almost like

[android-developers] Re: Access Problem External SD-Card Android 6.01

2016-07-02 Thread gjs
See https://developer.android.com/training/basics/data-storage/files.html and https://developer.android.com/reference/android/content/Context.html#getExternalFilesDir(java.lang.String) On Saturday, July 2, 2016 at 1:09:35 AM UTC+10, Susanne wrote: > > Hello, > > > > Thanks a lot for your

[android-developers] Re: Wi-Fi Direct without connections

2016-07-02 Thread gjs
"... method is feasible to do the collision avoidance job or not?" Probably NOT. Consider vehicles travelling in opposite directions on a two lane road. Even with perfect instantaneous communications between any two oncoming vehicles, the inaccuracy in smartphone GPS position (lat, lon) of

[android-developers] How to implement the bluetooth-based button for google cardboard?

2016-06-30 Thread gjs
Find suitable by device with button eg TI Sensor Tag http://www.ti.com/ww/en/wireless_connectivity/sensortag2015/?INTC=SensorTag=sensortag Examine sample code to access buttons, implement in your app to control whatever when using cardboard. -- You received this message because you are

[android-developers] Learning SQLite databases

2016-06-11 Thread gjs
https://www.sqlite.org/docs.html -- 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,

[android-developers] Re: Android Bluetooth Increase Speed Performance

2016-06-07 Thread gjs
Improve transfer speed by buffering the reads and writes (in pre-allocated fixed sized arrays) and DON'T allocate a new byte buffer in the middle of your while loop... On Tuesday, June 7, 2016 at 3:18:13 AM UTC+10, Devin Chen wrote: > > > I am trying to increase the transfer speed on android

[android-developers] Re: Phone accelerometer sampling rate and bandwidth

2016-06-07 Thread gjs
I'd suggest two things, (1) Read the Android source code eg: https://source.android.com/devices/halref/sensors_8h_source.html + CTS eg http://static.googleusercontent.com/media/source.android.com/en//compatibility/android-cdd.pdf (2) Answer your own questions by writing a test app to measure

[android-developers] HttpUrlConnection issues

2016-06-05 Thread gjs
Use another thread -- 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] Re: Detail on location attributes

2016-05-25 Thread gjs
Location:getTime() is a long value, representing milliseconds since 1/1/1970 All of these values are usually updated every 1 second, the lat and lon values change even when stationary due to 'jitter' in the computed values. See

[android-developers] Re: Why won't my app work on devices running 6.0?

2016-05-25 Thread gjs
Trimble GNSS Status app doesn't work in Android 6 the way it did in prior Android versions because of the manner in which the app was (ab?)using Mock Locations, a setting intended for developers not end users. Google fixed this in Android 6.

[android-developers] running android camera and viewing it on full screen

2016-05-24 Thread gjs
https://github.com/googlesamples/android-Camera2Basic -- 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

Re: [android-developers] call audio routing

2016-05-13 Thread gjs
https://en.wikipedia.org/wiki/Interactive_voice_response -- 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.

[android-developers] Looking for an example of AudioRecord on Android

2016-05-11 Thread gjs
http://stackoverflow.com/questions/6150592/need-a-simple-example-for-audio-recording?lq=1 -- 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] content providers

2016-05-09 Thread gjs
https://commonsware.com/Android/previews/content-provider-theory -- 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] content providers

2016-05-09 Thread gjs
http://www.vogella.com/tutorials/AndroidSQLite/article.html -- 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] Data monitoring

2016-05-09 Thread gjs
http://developer.android.com/reference/android/os/FileObserver.html -- 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] Can I get help with inapp purchases a simple step by step guide not missing one step

2016-05-09 Thread gjs
http://developer.android.com/google/play/billing/billing_integrate.html -- 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] vision barcode api - aztec codes

2016-05-06 Thread gjs
https://github.com/zxing/zxing/issues/357 -- 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

[android-developers] Re: Android 4.3 (API 18) google maps development problem

2016-05-06 Thread gjs
You need internet connection to download Google map tiles. GPS is just used to decide which map tiles to download and display. -- 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

[android-developers] Google API problem after publishing

2016-05-04 Thread gjs
https://developers.google.com/maps/documentation/android-api/signup -- 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] Re: Android trademark protection

2016-05-02 Thread gjs
https://support.google.com/googleplay/contact/brand_developer -- 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

Re: [android-developers] Saving state of custom adapter

2016-04-29 Thread gjs
http://developer.android.com/training/basics/activity-lifecycle/recreating.html -- 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] Re: Why does 'adb devices' show 'unauthorized' with no 'allow' prompt on the device?

2016-04-28 Thread gjs
Enable developer options on your Android 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

[android-developers] Re: android phone to purchase for testing

2016-04-24 Thread gjs
Hi, Will any Android phone work with the current highest API - NO or would the phone limit what API I can test on it? - YES I am basically looking for the cheapest phone I can use to test an Android Studio project using the current highest API. - Look at the Google Nexus Phones they are

[android-developers] Activity TextView displayed incorrect value received from Service Thread.

2016-04-23 Thread gjs
Try volatile https://docs.oracle.com/javase/tutorial/essential/concurrency/atomic.html -- 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] Re: Creating Multiple APKs for Different API Levels

2016-04-23 Thread gjs
http://developer.android.com/google/play/publishing/multiple-apks.html -- 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] Re: Creating Multiple APKs for Different API Levels

2016-04-23 Thread gjs
http://developer.android.com/google/play/publishing/multiple-apks.html -- 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] Re: Creating Multiple APKs for Different API Levels

2016-04-23 Thread gjs
http://developer.android.com/google/play/publishing/multiple-apks.html -- 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] Re: ayuda

2016-04-21 Thread gjs
Create a new Gmail account and try that. On Thursday, April 21, 2016 at 8:27:07 AM UTC+10, Engel Adalid wrote: > > hola me puenden ayudar a resolver este problema?? quiero subir una > aplicacion a la playstore pero mi correo no se puede convertir a cuenta de > desarrollador > -- You received

[android-developers] Re: Google Play Services Error - Google Maps on Android App

2016-04-21 Thread gjs
Hi, Examine Android device Log and learn debugging. Regards On Wednesday, April 20, 2016 at 6:11:48 PM UTC+10, Viplav Kambli wrote: > > Am developing a basic Google Map on Android Eclipse. > > Upon installing & building the Google Play Services, the app shuts down > while loading on my testing

[android-developers] Re: How to make sure my Device time is correct before my android app opens

2016-04-21 Thread gjs
Hi, You app can obtain correct time from Location API or GPS http://developer.android.com/training/location/index.html or NTP eg: https://github.com/Free-Software-for-Android/NTPSync Regards On Wednesday, April 20, 2016 at 6:31:27 PM UTC+10, Tafadzwa Innocent Chin'ombe wrote: > > > public

[android-developers] Re: developing vs job opportunity

2016-04-20 Thread gjs
Sadly this ML was hijacked and overrun by recruiters a few months back, they are blatantly disregarding the Developer posting guidelines but nobody from Google is policing this anymore. Soon it will just be recruiters and nothing else... On Wednesday, April 20, 2016 at 1:12:03 AM UTC+10,

[android-developers] Re: How do I make my custom video app not exit when it's been idle for a while?

2016-04-15 Thread gjs
Hi, Take a look at http://developer.android.com/training/scheduling/wakelock.html You probably also need to set the Display Sleep time in Android Settings as well. Regards On Friday, April 15, 2016 at 12:07:03 PM UTC+10, David Karr wrote: > > I've assembled a custom video recorder app based

[android-developers] Re: Clone DataInputStream

2016-04-08 Thread gjs
Hi, If you have the value in one variable can you not just copy it into the other variable as well, instead of cloning the input stream ? Regards On Thursday, April 7, 2016 at 7:18:49 PM UTC+10, jvb2008 wrote: > > Hello all, > > I am creating an app for Android and I need to save in two

[android-developers] Re: Android Studio Does not run on School Issued devices.

2016-04-08 Thread gjs
Hi, Probably as you say because of - The issue is that when it is run, it displays a message that Windows Firewall has blocked several features - perhaps arrange for temporary firewall traversal to test this theory and also report it to https://code.google.com/p/android/issues as suggested,

[android-developers] Re: Create pdf in android programmtically

2016-04-08 Thread gjs
Hi, See http://developer.android.com/reference/android/graphics/pdf/PdfDocument.html Regards On Friday, April 8, 2016 at 4:03:25 PM UTC+10, sardar khan wrote: > > Hy every one can any one guide me how to create pdf in android > programmatically. i want to write some text and some images to

[android-developers] Re: How to upload an app with a trademark?

2016-03-26 Thread gjs
See - https://support.google.com/googleplay/android-developer/answer/6320428 Provide advance notice to the Google Play App Review team The Google Play App Review team accepts advance notice about your upcoming app or store listing publishing event. We only accept advance notice in the

[android-developers] Re: Camcorder app produces video that is out of focus, and upside down

2016-03-26 Thread gjs
016 at 12:29:57 AM UTC-7, gjs wrote: >> >> Hi again, >> >> Well I suspect you are also getting low resolution / low quality video >> due to missing - >> >> mediaRecorder.setProfile(CamcorderProfile.get(CamcorderProfile.QUALITY_HIGH)); >> >> >

[android-developers] Re: Direct client Requirement for C# developer for Timonium, MD location !!!

2016-03-25 Thread gjs
- *Posts about job openings or from recruiters are considered spam.* This list gets too many, and it drowns out the actual conversations. Making these types of posts will get your account banned without warning. On Friday, March 25, 2016 at 1:18:40 AM UTC+11, Shaik Sadiq wrote: >

[android-developers] Re: Camcorder app produces video that is out of focus, and upside down

2016-03-25 Thread gjs
/ properties of the video you have already recorded. Regards On Friday, March 25, 2016 at 11:58:15 AM UTC+11, David Karr wrote: > > > > On Thursday, March 24, 2016 at 3:49:52 PM UTC-7, gjs wrote: >> >> Hi, >> >> Re - I imagine I'm doing something horribly

[android-developers] Re: Camcorder app produces video that is out of focus, and upside down

2016-03-24 Thread gjs
Runnable() { @Override public void run() { doAutoFocus(.. } }, 500 ); Regards On Thursday, March 24, 2016 at 12:11:11 PM UTC+11, David Karr wrote: > > On Wednesday, March 23, 2016 at 12:06:47 AM UTC-7, gjs wrote: > > Hi, > > For the focus / fuzzy is

[android-developers] Android Development for Reading Temperature data from multiple SensorTag_CC2650

2016-03-24 Thread gjs
Hi, Read the sample code supplied by TI for the SensorTag. Regards -- 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] Urgent Need::::::::::::: Hadoop Admin ,Woonsocket , RI ,12+ Months

2016-03-24 Thread gjs
Posts about job openings or from recruiters are considered spam. This list gets too many, and it drowns out the actual conversations. Making these types of posts will get your account banned without warning. -- You received this message because you are subscribed to the Google Groups "Android

[android-developers] Urgent Need::::::::::::: Sr. Service Now Developer , Cincinnati, OH ,12+ Months

2016-03-24 Thread gjs
Posts about job openings or from recruiters are considered spam. This list gets too many, and it drowns out the actual conversations. Making these types of posts will get your account banned without warning. -- You received this message because you are subscribed to the Google Groups "Android

[android-developers] Urgent req for PROJECT MANAGER @ Minneapolis, MN

2016-03-24 Thread gjs
Posts about job openings or from recruiters are considered spam. This list gets too many, and it drowns out the actual conversations. Making these types of posts will get your account banned without warning. -- You received this message because you are subscribed to the Google Groups "Android

[android-developers] Req: .Net Development Manager

2016-03-24 Thread gjs
Posts about job openings or from recruiters are considered spam. This list gets too many, and it drowns out the actual conversations. Making these types of posts will get your account banned without warning. -- You received this message because you are subscribed to the Google Groups "Android

[android-developers] Req SAP 02C

2016-03-24 Thread gjs
Posts about job openings or from recruiters are considered spam. This list gets too many, and it drowns out the actual conversations. Making these types of posts will get your account banned without warning. -- You received this message because you are subscribed to the Google Groups "Android

[android-developers] Urgent req for Solution Aarchitect @ Atlanta, GA

2016-03-24 Thread gjs
Posts about job openings or from recruiters are considered spam. This list gets too many, and it drowns out the actual conversations. Making these types of posts will get your account banned without warning. -- You received this message because you are subscribed to the Google Groups "Android

[android-developers] Re: Android Camera

2016-03-23 Thread gjs
Sure read http://developer.android.com/training/camera/cameradirect.html On Wednesday, March 23, 2016 at 3:53:18 AM UTC+11, Luca Bondin wrote: > > Is there a way of turning on the camera as part of an activity? I don't > need my app to take photos, I just need the camera view appearing on

[android-developers] Re: Camcorder app produces video that is out of focus, and upside down

2016-03-23 Thread gjs
Hi, For the focus / fuzzy issue try initiating auto focusing of the camera before you start recording your video - http://developer.android.com/reference/android/hardware/Camera.html#autoFocus(android.hardware.Camera.AutoFocusCallback) - you can also do this whilst the video is recording as

[android-developers] Re: Urgent Need:::::::::::::Windows Admin + App packaging , Woonsocket, RI ,6-12+ Months

2016-03-23 Thread gjs
- *Posts about job openings or from recruiters are considered spam.* This list gets too many, and it drowns out the actual conversations. Making these types of posts will get your account banned without warning. On Wednesday, March 23, 2016 at 3:54:20 AM UTC+11, sudhanshu pandey

[android-developers] Re: Looking : Java Developer with Sencha @ Boston MA

2016-03-23 Thread gjs
- *Posts about job openings or from recruiters are considered spam.* This list gets too many, and it drowns out the actual conversations. Making these types of posts will get your account banned without warning. On Wednesday, March 23, 2016 at 4:07:03 AM UTC+11, Dev wrote: > >

[android-developers] Re: Urgent Req::::::::::::: Senior Storage Engineer ,Cumberland, RI/Scottsdale, AZ /Dublin, Ohio ,6-12+ Months

2016-03-23 Thread gjs
- *Posts about job openings or from recruiters are considered spam.* This list gets too many, and it drowns out the actual conversations. Making these types of posts will get your account banned without warning. On Wednesday, March 23, 2016 at 5:12:37 AM UTC+11, sudhanshu pandey

[android-developers] Re: SAP ARM IN Redmond , WA

2016-03-23 Thread gjs
- *Posts about job openings or from recruiters are considered spam.* This list gets too many, and it drowns out the actual conversations. Making these types of posts will get your account banned without warning. On Wednesday, March 23, 2016 at 8:34:04 AM UTC+11, Navuluri Venkat

[android-developers] Re: Urgent Need:::::::::::::Windows Admin + App packaging , Cumberland, RI ,6-12+ Months

2016-03-22 Thread gjs
- *Posts about job openings or from recruiters are considered spam.* This list gets too many, and it drowns out the actual conversations. Making these types of posts will get your account banned without warning. On Tuesday, March 22, 2016 at 12:45:41 AM UTC+11, sudhanshu pandey

[android-developers] Re: Urgent req for Software Developer @ Boca Raton, FL

2016-03-22 Thread gjs
- *Posts about job openings or from recruiters are considered spam.* This list gets too many, and it drowns out the actual conversations. Making these types of posts will get your account banned without warning. On Tuesday, March 22, 2016 at 6:58:18 AM UTC+11, Shaik Sadiq wrote:

[android-developers] Re: Urgent Need:::::::::::::Unix Infrastructure Engineer , RI / AZ, 6-12+ Months

2016-03-22 Thread gjs
- *Posts about job openings or from recruiters are considered spam.* This list gets too many, and it drowns out the actual conversations. Making these types of posts will get your account banned without warning. On Tuesday, March 22, 2016 at 3:43:15 AM UTC+11, sudhanshu pandey

[android-developers] Re: Urgent req for Project Coordinator @ New Orleans, LA

2016-03-22 Thread gjs
- *Posts about job openings or from recruiters are considered spam.* This list gets too many, and it drowns out the actual conversations. Making these types of posts will get your account banned without warning. On Tuesday, March 22, 2016 at 1:23:10 AM UTC+11, Shaik Sadiq wrote:

[android-developers] Re: Need Biztalk Server Admin - Houston,TX

2016-03-22 Thread gjs
- *Posts about job openings or from recruiters are considered spam.* This list gets too many, and it drowns out the actual conversations. Making these types of posts will get your account banned without warning. On Tuesday, March 22, 2016 at 8:45:28 AM UTC+11, Raj @ Reqroute

Re: [android-developers] Re: When I get gps location in background.I got ANR

2016-03-21 Thread gjs
code is here( > https://github.com/GisKook/testservice).So the service is in UI thread > too? > Thanks, > zhangkai > > 2016-03-20 16:13 GMT+08:00 gjs <garyjam...@gmail.com >: > >> Hi, >> >> ANR usually means you are doing too much work on a UI thr

[android-developers] Re: How to search for contacts with phone number

2016-03-21 Thread gjs
Hi, If you were a Developer - http://developer.android.com/training/contacts-provider/retrieve-names.html For a User, maybe try Contacts->More->Settings->Contacts to display->select 'Device'. That's how it is on a Samsung Galaxy S6 (Active) with Android 5.1 not sure about S5 & S3 mini.

Re: [android-developers] Question regarding "massive" application downloads

2016-03-21 Thread gjs
Hi, Some people may not trust apps that require that they must to first turn on 'Unknown sources' in Android Security Settings to 'Allow installation of apps from sources other than Google Play Store'. Regards On Monday, March 21, 2016 at 5:41:04 AM UTC+11, Nalin Savara wrote: > > Alan... >

[android-developers] Re: How to use offline Google Map in my MapView?

2016-03-21 Thread gjs
t; Le dimanche 20 mars 2016 09:08:55 UTC+1, gjs a écrit : >> >> Hi, >> >> You can download, cache and use Open Street Map tiles in an Android Map >> view when there is no internet coverage, if you search in Stack Overflow >> for TileProvider you might

[android-developers] Re: Need a Front End & Back End Developer for an Android App / Technical Co-founder for a Startup in Bangalore

2016-03-21 Thread gjs
- *Posts about job openings or from recruiters are considered spam.* This list gets too many, and it drowns out the actual conversations. Making these types of posts will get your account banned without warning. On Monday, March 21, 2016 at 3:47:00 AM UTC+11, Edward Rodrigues

[android-developers] Re: When I get gps location in background.I got ANR

2016-03-20 Thread gjs
Hi, ANR usually means you are doing too much work on a UI thread, long running tasks should be run on other non UI threads. Regards On Saturday, March 19, 2016 at 5:43:30 PM UTC+11, Kai Zhang wrote: > > Hello, > I start a service(main service) from broadcast receiver(No 1).I know that > If I

[android-developers] Re: How to use offline Google Map in my MapView?

2016-03-20 Thread gjs
Hi, You can download, cache and use Open Street Map tiles in an Android Map view when there is no internet coverage, if you search in Stack Overflow for TileProvider you might find some examples eg http://stackoverflow.com/questions/14784841/tileprovider-using-local-tiles?rq=1 and

[android-developers] Re: Question regarding "massive" application downloads

2016-03-20 Thread gjs
sing because as your issue is not clear to me, maybe due to language translation of your original question... Regards On Sunday, March 20, 2016 at 12:40:49 AM UTC+11, Alain Bonnefoy wrote: > > Please reread the question > Alain > > Le samedi 19 mars 2016 12:08:56 UTC+1, gjs a

[android-developers] Re: Urgent Need : Android Developer@Madison, WI

2016-03-19 Thread gjs
- *Posts about job openings or from recruiters are considered spam.* This list gets too many, and it drowns out the actual conversations. Making these types of posts will get your account banned without warning. On Thursday, March 17, 2016 at 4:17:18 AM UTC+11, Dev Vishnu wrote:

[android-developers] Re: Urgent Need - Genesys Developer CA / NJ

2016-03-19 Thread gjs
- *Posts about job openings or from recruiters are considered spam.* This list gets too many, and it drowns out the actual conversations. Making these types of posts will get your account banned without warning. On Friday, March 18, 2016 at 6:16:43 AM UTC+11, Raj @ Reqroute

[android-developers] Re: How much internet is spent for each Restful request

2016-03-19 Thread gjs
Hi, See in the following example code ( modified from an older version of https://developer.sony.com/downloads/camera-file/sony-camera-remote-api-beta-sdk/ ) In the httpPost(...) method there is an example code to count the total number of bytes downloaded as well as show elapsed time

[android-developers] Re: Need : SiteCore Developer : WI - long term contract

2016-03-19 Thread gjs
- *Posts about job openings or from recruiters are considered spam.* This list gets too many, and it drowns out the actual conversations. Making these types of posts will get your account banned without warning. On Friday, March 18, 2016 at 4:52:29 AM UTC+11, Raj @ Reqroute

[android-developers] Re: List of Available consultants for new projects..

2016-03-19 Thread gjs
- *Posts about job openings or from recruiters are considered spam.* This list gets too many, and it drowns out the actual conversations. Making these types of posts will get your account banned without warning. On Friday, March 18, 2016 at 12:48:21 AM UTC+11, sam isolvers wrote:

[android-developers] Re: Writing strings to text file android

2016-03-19 Thread gjs
Hi, Try reading this http://developer.android.com/training/basics/data-storage/files.html and this http://developer.android.com/reference/android/content/Context.html#openFileOutput(java.lang.String, int) in particular use - - MODE_APPEND

[android-developers] Re: list of available consultants for new projects....

2016-03-19 Thread gjs
- *Posts about job openings or from recruiters are considered spam.* This list gets too many, and it drowns out the actual conversations. Making these types of posts will get your account banned without warning. On Friday, March 18, 2016 at 12:48:21 AM UTC+11, sam isolvers wrote:

[android-developers] Re: Urgent req for Apache Spark Developer @ New York, NY

2016-03-19 Thread gjs
- *Posts about job openings or from recruiters are considered spam.* This list gets too many, and it drowns out the actual conversations. Making these types of posts will get your account banned without warning. On Thursday, March 17, 2016 at 6:20:00 AM UTC+11, Shaik Sadiq wrote:

[android-developers] Question regarding "massive" application downloads

2016-03-19 Thread gjs
What is https://play.google.com for ? -- 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

[android-developers] Re: Urgent req for Apache Spark Developer @ New York, NY.

2016-03-19 Thread gjs
- *Posts about job openings or from recruiters are considered spam.* This list gets too many, and it drowns out the actual conversations. Making these types of posts will get your account banned without warning. On Friday, March 18, 2016 at 12:50:36 AM UTC+11, Shaik Sadiq wrote:

[android-developers] References for when you want to code outside

2016-03-19 Thread gjs
Tether your laptop to your phones wifi and use the cell network for Internet connectivity. -- 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] Re: NEED : EDI Developer (All Payor Database Exp.) - NY

2016-03-19 Thread gjs
- *Posts about job openings or from recruiters are considered spam.* This list gets too many, and it drowns out the actual conversations. Making these types of posts will get your account banned without warning. On Friday, March 18, 2016 at 5:02:05 AM UTC+11, Raj @ Reqroute

[android-developers] Re: Urgent req for Hyperion Lead @ Bloomfield, CT.

2016-03-19 Thread gjs
- *Posts about job openings or from recruiters are considered spam.* This list gets too many, and it drowns out the actual conversations. Making these types of posts will get your account banned without warning. On Thursday, March 17, 2016 at 1:16:31 AM UTC+11, Shaik Sadiq wrote:

[android-developers] Re: Urgent Need: Sr Backend Java/Telecom Exp/Warren NJ and Alpharetta GA

2016-03-18 Thread gjs
- *Posts about job openings or from recruiters are considered spam.* This list gets too many, and it drowns out the actual conversations. Making these types of posts will get your account banned without warning. On Friday, March 18, 2016 at 2:24:19 AM UTC+11, Dev Vishnu wrote: >

[android-developers] Re: How much internet is spent for each Restful request

2016-03-16 Thread gjs
Hi, I'd suggest you conduct some tests to try to work this out for yourself by writing some test code to measure the elapsed time (in milliseconds eg using System.currentTimeMillis() ) and the counting the number of total bytes downloaded when you (a) include the News Description & (b) when

[android-developers] Re: Wii Balance Board and Android (already paired) - how to get Data

2016-03-02 Thread gjs
Hi, Just search a bit and you'll find https://play.google.com/store/apps/details?id=eu.paulburton.fitscales and https://github.com/paulburton/fitscales Regards On Wednesday, March 2, 2016 at 8:26:26 PM UTC+11, Dirk Bellstaedt wrote: > > Hello, > i want to use Wii Balance Board with my

Re: [android-developers] Re: GPS Issue with Android Marshmallow

2016-03-02 Thread gjs
Hi, re : Could you check this app (http://app.trekken.com.br) to see if it works? It should start automatically and record your trip while you are driving. No sorry, I actually develop my own GPS related app(s) and one of these already provides the same / similar functionality & is working

[android-developers] Re: Image adquisicion app

2016-03-02 Thread gjs
Read http://developer.android.com/training/camera/cameradirect.html -- 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] Google Maps Android GPS App

2016-03-02 Thread gjs
Hi You can probably do this by also using the various maps API eg https://developers.google.com/maps/documentation/directions/intro#Waypoints Regards -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and

[android-developers] Re: Android Wear development

2016-03-01 Thread gjs
Hi, Sure why not, if you know some android already you are 'half way' there already. In fact many android (phone) apps will actually work to varying degrees on android wear devices, but they do suffer certain limiting restrictions - tiny screen size, usually no camera, no google maps and some

[android-developers] Re: Updated Hot-List of Available consultants

2016-02-29 Thread gjs
well howD partna you need2 touchbase with https://groups.google.com/forum/#!topic/android-developers/EnfFXiIJ3FQ dik On Tuesday, March 1, 2016 at 1:33:56 AM UTC+11, sam isolvers wrote: > > Hello Partner, > > Good morning, Hope you are doing good, > > Please find below updated Hot-List of my

[android-developers] Re: GPS Issue with Android Marshmallow

2016-02-29 Thread gjs
Hi, I checked https://code.google.com/p/android/issues/detail?id=190376 and also tested with Nexus 5 running Android V6.0.1 (that's the device most mentioned in the ticket) and GPS is working ok for me on the Nexus 5. GPS is also working ok for me with Android V6 on Nexus 5X, 6, 6P, 7 & 9.

Re: [android-developers] Re: Android Wear Ibeacon and Bluetooth

2016-02-29 Thread gjs
done! -- 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] Image adquisicion app

2016-02-29 Thread gjs
Keh? -- 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] Re: Android Wear Ibeacon and Bluetooth

2016-02-28 Thread gjs
Hi, Not sure if this helps you much, but I too have a Sony Smart Watch 3 and can confirm that it does indeed work ok with Bluetooth devices including Bluetooth Low Energy devices. I just tested my Sony Smart Watch 3 working ok with a TI Sensor tag B/LE device, eg reading the barometer sensor -

[android-developers] Client / Server Style Android App

2016-02-27 Thread gjs
Hi Try https://cloud.google.com/solutions/mobile/appengine-endpoints-mobile-app Regards -- 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] Re: "Google Maps API key" - How does it work? Where, and how (in what form) do i store it securely?

2016-02-24 Thread gjs
Hi, RTFM perhaps ? - https://developers.google.com/maps/documentation/android-api/signup You should store your maps api key safely & securely for future reference, offsite backup copies or version control is a good approach, at a minimum email it to yourself. However you don't really need to

[android-developers] Re: Working around API-purchase-logic-flaws for consumables in Google Play's Billing API v3 (Relevant to everyone using consumables with API v3)

2016-02-23 Thread gjs
Hi, I'd suggest you use the In-App purchase testing facilities Google provides - https://developer.android.com/google/play/billing/billing_testing.html - to test your theories about perceived failure scenarios. When In-App purchases was initially introduced Google also recommended using your

[android-developers] Re: Application getting wrong location until open inbuilt Google Map application

2016-02-17 Thread gjs
Hi, Try checking http://developer.android.com/reference/android/location/Location.html#hasAccuracy() and http://developer.android.com/reference/android/location/Location.html#getAccuracy() on the Location object provided your location listener associated with Fused Location API, if that

[android-developers] Re: Urgent Need Automation Tester (Coded UI) Long-term Contracts

2016-02-17 Thread gjs
Try Setting -> Factory Reset that should fix your error... On Thursday, February 18, 2016 at 4:16:28 AM UTC+11, Javed Khan wrote: > > Please share profile: ja...@globalwebmaster.us > > > > Hi, > > Hope you are doing great. > > We have new job opportunity with our client. I am sending the

[android-developers] Re: Immediate Need||UX Architect/ Project Manager(12+ Months,DC)

2016-02-17 Thread gjs
Try Setting -> Factory Reset that should fix your error... On Thursday, February 18, 2016 at 6:05:49 AM UTC+11, pragyan dixit wrote: > > > > Hi, > Hope you are doing great. > I have a urgent direct client requirement , Please send me your updated > profile. > > Below is the Complete Requirement

  1   2   3   4   5   6   7   >