Re: [android-developers] Saving data in wearable android

2017-02-15 Thread Anh
Thanks everyone! Never mind this topic. I will go with another solution. Forget Login page and remember UserID Anh On Wednesday, February 15, 2017 at 6:47:40 AM UTC-6, Marina Cuello wrote: > > I never played with that, but it seems like once you declare your app as > standalone some of that stuf

Re: [android-developers] Saving data in wearable android

2017-02-15 Thread Marina Cuello
I never played with that, but it seems like once you declare your app as standalone some of that stuff should be enabled for you: https://developer.android.com/training/wearables/apps/standalone-apps.html#shared-code Marina On Tue, Feb 14, 2017 at 7:17 PM, Anh wrote: > Hi Marina, > Thanks for y

Re: [android-developers] Saving data in wearable android

2017-02-15 Thread gwendaconrad via Android Developers
On Wed, 2/15/17, goodmanjohn589 via Android Developers wrote: Subject: Re: [android-developers] Saving data in wearable android To: android-developers@googlegroups.com Date: Wednesday, February 15, 2017, 12:01 PM

Re: [android-developers] Saving data in wearable android

2017-02-15 Thread goodmanjohn589 via Android Developers
On Wed, 2/15/17, ryan.pena via Android Developers wrote: Subject: Re: [android-developers] Saving data in wearable android To: android-developers@googlegroups.com Date: Wednesday, February 15, 2017, 5:23 AM

Re: [android-developers] Saving data in wearable android

2017-02-14 Thread ryan.pena via Android Developers
On Wed, 2/15/17, ryan.pena via Android Developers wrote: Subject: Re: [android-developers] Saving data in wearable android To: android-developers@googlegroups.com Date: Wednesday, February 15, 2017, 4:45 AM

Re: [android-developers] Saving data in wearable android

2017-02-14 Thread ryan.pena via Android Developers
On Wed, 2/15/17, taylor.james300 via Android Developers wrote: Subject: Re: [android-developers] Saving data in wearable android To: android-developers@googlegroups.com Date: Wednesday, February 15, 2017, 1:18 AM

Re: [android-developers] Saving data in wearable android

2017-02-14 Thread taylor.james300 via Android Developers
On Wed, 2/15/17, Anh wrote: Subject: Re: [android-developers] Saving data in wearable android To: "Android Developers" Date: Wednesday, February 15, 2017, 12:17 AM Hi Marina,Thanks for your advise but my app on smartwatch will ru

Re: [android-developers] Saving data in wearable android

2017-02-14 Thread Anh
Hi Marina, Thanks for your advise but my app on smartwatch will run alone. I meant no connection to the phone. That's why I need to save it on the local, smartwatch. Any ideas??? Anh On Monday, February 13, 2017 at 2:49:32 PM UTC-6, Marina Cuello wrote: > > I think you need to use the data sync A

Re: [android-developers] Saving data in wearable android

2017-02-13 Thread hanley.sondra via Android Developers
On Mon, 2/13/17, toneymessina via Android Developers wrote: Subject: Re: [android-developers] Saving data in wearable android To: android-developers@googlegroups.com Date: Monday, February 13, 2017, 11:57 PM

Re: [android-developers] Saving data in wearable android

2017-02-13 Thread toneymessina via Android Developers
On Mon, 2/13/17, sheritagunther via Android Developers wrote: Subject: Re: [android-developers] Saving data in wearable android To: android-developers@googlegroups.com Date: Monday, February 13, 2017, 11:38 PM

Re: [android-developers] Saving data in wearable android

2017-02-13 Thread sheritagunther via Android Developers
On Mon, 2/13/17, Marina Cuello wrote: Subject: Re: [android-developers] Saving data in wearable android To: android-developers@googlegroups.com Date: Monday, February 13, 2017, 10:44 PM I think you need to use the data sync API and save the

Re: [android-developers] Saving data in wearable android

2017-02-13 Thread Marina Cuello
I think you need to use the data sync API and save the shared preferences on the normal app side. https://developer.android.com/training/wearables/data-layer/data-items.html Marina On Mon, Feb 13, 2017 at 12:34 PM, Anh wrote: > Hello, > I am encountering an issue that saving userId in wearable

[android-developers] Saving data in wearable android

2017-02-13 Thread Anh
Hello, I am encountering an issue that saving userId in wearable app. I have a login page and need user enters userID and save it. In android mobile app, I used SharedPreferences successfully. However, for wearable app, I don't know how and what I can use to save UserID. I am searching on the int