Android :: Google Apps Found To Be Sharing Data

Sep 30, 2010

BBC News - Google Android apps found to be sharing data

Quote:

Android :: Google apps found to be sharing data


Android :: Sharing Data On Two Apps

Oct 20, 2010

I am new in android development. i was wondering if i could share some data between two applications in android. One way is to place the text file on SD Card but i dont want to do this.Second way is to place in data folder, and i dont know how to.3rd way is to place the data in shared memory so both applications can see it.also i dont want the user to see or delete this file,only my two applications can change this file or data.Please help me.I've been wondering on this for 2 days.

View 5 Replies View Related

General :: Sharing Google Play Account Without Sharing Everything Else?

Sep 19, 2012

I have my Google account also setup on my wife's phone so we can share purchased apps. However, everything else is shared too. For example, even though I have sync for everything on my account turned off, my calendar still showed up on my wife's phone until I disabled it in the calendar app. Also, I can't remove my Google Talk account from her phone so my messages show up on her phone.

This is on a pair of stock Samsung Galaxy S3 phones.

View 2 Replies View Related

HTC EVO 4G :: Internet Sharing Tethering Dilemma / Found Work Around Finally

Jun 5, 2010

i'm here at work and have been trying for the last hour to get my phone to work as a modem. I got the same error message over and over again after connecting it to my computer "Error Code 67, your PCS Vision username and password may be incorrect." I installed HTC Sync, and it still doesn't work. So, assuming to myself that tethering for just one computer would be free, I call up Sprint tech support to find out what the problem is. First person didn't know what I was talking about so I was transferred to a really nice lady who helped me reprogram the phone but that didn't work so she sent me to another woman from tech support who had me go into System Updates and select Update Profile. I did that twice while talking to her and nothing fixed the problem.I kept getting error 67.So then, I get transferred to "Advanced" tech support and I talk to a really cool guy who goes out of his way to find a loop hole, but no success. So, he explains to me that after looking at it that they don't offer the "phone as modem" option anymore to my account type, and even then it would be $15 a month to just tether one phone. He said he could add the wifi hotspot option but I told him I don't want to pay $30/month for something I only use on Saturdays and when I travel. So after a hour on the phone, I got nowhere... but then I went onto the App Store and found Easy Tether-Lite and after 5 minutes I am sitting here writing this thread. (The full version said it supports https but idk what that means and I can surf the web now).

I only have one concern now though.I'm really happy this works but i'm scared now because this App was too easy to setup. I feel like I may be charged up the ass by Sprint somehow by finding this loophole or I may get penalized. My family and I are on the Everything Data where all data is unlimited so I don't think I should have a problem but after paying $30 extra a month for data with AT&T and finding this work around i'm getting paranoid that i'm going to get a bill at the end of the month charging me for tethering. So I guess i'll see what happens, but i'm glad for now.

View 3 Replies View Related

Android :: Sharing Data Between Activities

Apr 7, 2010

I was playing a bit with adapters cursors and activities. Let's assume i have a cursor containing a query I've made (it doesn't matter if it's to DB or content provider). Now lets assume i bind some of the data (first two rows) to a list activity. Every click on one of those items should open a new list activity (i pass on the cursor index in the activity bundle). Now the question is, which sharing method will be most efficient and right from code point of view ?

1. I thought of trying to send the cursor object in the intent itself (hoping it implemented runnable) but I'm not so sure it's that efficient since the query may contain many rows which will need to be parceled, and i the other intents uses only a few (say 4-5 columns of each row) it's a real waste.

2. Thought of trying to create the array list for my other list screen adapter and serialize it to the intent (again use serialize and intent to pass on the data) but again i fear for efficiency penalty.

3. my last solution was to use static cursor member in my first activity, with package permission, it will work and be relatively efficient, but I'm not so sure regarding memory efficiency and code structure, i'm not fond of using static variables in any case.

Is there another sharing method that i don't know off, if two activities share the same process and application, then they also share memory space, then it should be easy to pass variables from one to another, the question is what's the easiest way without serializing ?

View 6 Replies View Related

Android :: Sharing Data Between Tab Activities

Aug 10, 2010

I did some digging, but couldn't find a clear answer. I have an application with TabActivity as the main activity. I have some computing and network communication that needs to be done when user clicks on the big red jolly "DO IT" button. One tab hosts the form with "DO IT" button, while the other tabs display the results from computing (each tab displays different part of results). The computing is done as AsyncTask as it's supposed to be (afaik).

Now the question is, what is the best way to share the results between the tabbed activities? It can be done with ContentProvider + database from what I have read, although that seems like a bit too much for my needs. I have also considered an option to save the results to some cache file activities could read in onCreate, onResume etc and display the data. Are there any other convenient ways to share the data? (To make it more clear, the data aren't simple, so doing it through preferences etc is impossible.)

View 5 Replies View Related

Android :: Sharing Data Across Activities

Mar 13, 2009

I was looking out for ways to share data between various activities that one may need to create for his applications . Using "Parcel" and Bundle one can do data exchange , but looks like this is a bit cumbersome process specifically if you have to share large array objects with too many fields.

As android.app.Application maintains global state for the application , we can use this class to store global data and access it across activities. Is this a good way ? Are there any implications on allocating large objects in the your class which extends from android.app.Application ?

View 6 Replies View Related

Android :: Sharing Data Between Users

Aug 25, 2010

I'm writing a game that includes an editor for users to create their own levels. I'd like players to be able to share the levels they've created with other players. I'm trying to figure out the best way of implementing that, and hoping for any advice on the subject.

One obvious option is to set up a server for sharing levels. The game would connect directly to the server to let players share their creations or download levels created by other players. This provides seamless integration and a good user experience, but I'd really prefer not to use this approach. For one thing, I don't want the cost and responsibility of setting up and maintaining the server. And I would be taking on a basically unlimited obligation; otherwise, if I decided to shut down the server a few years from now, the game would suddenly lose a large part of its value.

Another idea I had is to use the Android Market as the way to distribute sets of levels. That way, Google is taking care of running the server for me. Clearly there are programs that work this way, since I've seen lots of themes and expansion packs for particular applications in the Market. While this could work, I'm not very happy with it. Asking an ordinary user to sign up for a developer account on the Market and learn how to post files through it is unreasonable, not to mention they would have to pay $25.

The approach I'm currently leaning toward is allowing levels to be exported as ordinary files. People could then just email them to each other, post them on any website they wanted, etc. Ideally I would want to set up a file type association so they could simply open an email attachment or click a link in the web browser, and my game would automatically be launched to import it. I haven't yet looked into whether that's possible.

View 3 Replies View Related

Android :: Sharing Data Between Tabs

Jul 21, 2010

I am getting some glitches while making a tab enabled application.

I want to share data, between two tabs of mine application.

How can i achieve the same.

View 3 Replies View Related

Android :: Sharing Data Amongst Activities And Services

Aug 23, 2010

I am working on a small android project where it is necessary to share some data amongst several activities and a service that runs in a separate process. I would just like to know what are my options in terms of sharing data? Application class? IPC? File-based? Broadcasts?

View 3 Replies View Related

Android :: Sharing Data Between An Service And An Application

Jun 28, 2009

In order to share data between one of my own Android service and an application i am looking for the best way to do this. I have seen the shared memory drivers inside the GNU Linux kernel, but no Java api. Maybe the specific Google IPC Blinder cad be used for my need ?

View 10 Replies View Related

Android :: Options For Sharing App Data On Multiple Phones

Aug 22, 2010

I'm looking for suggestions for ways to share Android app data between phones running the same app. For example, lets say I have an app that stores a database of book reviews. If person A has a book review that person B doesn't have, what are the options for getting that information from person A's phone to person B's phone?

Currently, I'm aware of the following options:

- Upload data from person A's phone to a server, then download data from server to Person B's phone.
- Write code to have the phones sync up using bluetooth
- Write code to send SMS messages


I'm wondering if there are any more options besides these, and if there's actually a best-practice for accomplishing this?

Ideally, I want the users to simply click a button in the app to make the sharing take place, so I don't want to go down the bluetooth route because that requires the user to do a bit of setup (or assumes they already have set things up in the form of bluetooth settings).

Since the data can be of variable length and potentially large, I believe that would rule out text messaging.

As far as the server route goes, from what I understand this seems to be an ok way of doing things, but my problem is that I have no experience with having users potentially sign in to a server and then uploading data. I don't know of the cost concerns (if any), or of potential security concerns (allowing just anyone to upload data, I'm not sure if I would have to take steps to ensure someone couldn't bypass the app and upload malicious data).

View 3 Replies View Related

Android :: Sharing Data Between Activities / Activity2 A Pointer To Object1

Jul 22, 2009

I have been using SharedPreferences to share data between activities. But I would very much like to find a better way. I would simply like both Activity1 and Activity2 to share Object1. Activity1 will create Object1 and then start Activity2. What is the smartest way to give Activity2 a pointer to Object1?

To summarize: Activities don't have constructors! How do I send data to them from their parent activity?

View 17 Replies View Related

HTC EVO 4G :: Sharing Wifi Data

Jun 5, 2010

Has anyone tried sharing a wifi connection through the evo? I have a really old laptop without a wireless card and would like to be able to pick up wifi signal from my router with evo and use usb to share with my pc. Haven't tried yet and will when i get home bit just wondering if anyone had tried this or knows if it'll work.

View 3 Replies View Related

Android : No Location Folder Found Under Data Directory For 1.1?

Apr 15, 2009

No location folder found under data->location->gps directory for 1.1, which contains the mock provider file.

View 2 Replies View Related

Android : Sharing Apps By QR Code?

Dec 22, 2009

Fred meets Bob at the pub and shows off the latest app he's installed.Bob likes it and wants to have it on his phone, too. Q: What's the best way for Fred to help Bob install an application? Hint: On a Palm, Fred would just 'beam' the app to Bob's pda (we're assuming that it's a freely downloadable app, not requiring payment or registration). On an Android phone, can Fred somehow share it over Bluetooth, or display a QR Code for the app so that Bob can use his Barcode Scanner to get it from the Market (or slimeme.org, or wherever)? As far as I know, no file manager has a "display barcode" function (like Contacts does when you have Barcode Scanner installed), so I'm forced to describe the app, or go into the application list and dig out its "com.vendor.app" name. This seems decidedly un-slick.

View 3 Replies View Related

Samsung I7500 :: Sync Google Apps Without Background Data

Dec 10, 2009

I'm wondering if anyone's experienced this. I'm using II5 firmware with Galaxo 1.1 None of my google apps seems to ever sync if I turn off background data. It'd be cool if there was a way to let it use background data only when the phone is unlocked, but whatever it's alright.So, fr gmail you can manually go in and chose to "Refresh", but for Calendar and Contacts there is no way to do this within the app.. Also, it never seems to sync even when you use it for a while.Has anyone found a way to sync calendar or contacts without turning on background data?

View 3 Replies View Related

General :: Android 4.2 Sharing Apps Across Users?

Nov 24, 2012

Is it possible to share apps installed on the device across multiple users?

View 1 Replies View Related

Android :: Phonebook Sharing Google ADC's Top 20 Is Now Open Source

Jan 12, 2010

Today is quite a big day to me. After all the work, studies and sleepless nights that I've been through, I've decided to share all that with the community opening the source of Phonebook Sharing. We have been chosen by the Android powered users as well as by Google as one of the ADC's Top 20 Social Networking applications. This application explores and makes use of many many features available by the platform (Android 1.5 / 1.6) as well as custom components/features that the platform does not provide yet, such as ListView pagination. Not just the Android client but also the J2EE server, I've made available quite a few interessting things such as Video Streaming and EJB3 stuff. I've also built a fake server that responds to all the request events made by the android client therefore you will be able to run client/ server and see how the communication goes. I'm still wrapping up the project building some documentation on our Wiki section.

View 2 Replies View Related

Android :: Juice Defender - Apn Not Found - Mobile Data Not Working Error

Oct 12, 2010

I have a rooted Evo, running warm's tpt rom. Juice Defender was working fine for me until last night. I noticed it wasnt in the notification bar. (I do not have any task killers)

I am getting the following erros when I set it up:

mobile data control doesnt work
mobile data control (apn method) doesnt work

The log shows:
apn not found

View 1 Replies View Related

General :: Limiting Google-based Sync To Settings And Data Not Apps

Aug 28, 2013

I have a few Android devices and I play around with them quite a bit - flashing ROMs, etc. - and there's one thing that tends to irk me: When setting up my Google account on the device, there's the following checkbox:

Bring apps, settings and other data that you previously backup up to your Google account

Is there any way to limit this to settings and other data? I've used a TON of Android apps, and there are many, free and paid, that I have no desire to use again. I know a more robust solution (Titanium Backup, etc.) is better, but I'm not always running with root and I'm not looking for extremely-fine-grain control. I simply want to skip installing apps I haven't used in months! I know I could simply uninstall the apps, but there are a ton. I'm willing to uncheck the box if I can get a clear understanding of what I'll be missing if I don't sync. I don't have much time to experiment with it at the moment. For example, I don't remember if known wi-fi networks are synced (compare to Windows 8, which does - if I remember correctly - along with tons of other data)

View 2 Replies View Related

HTC EVO 4G : Looking For Way Of Sharing Apps

Jun 11, 2010

I'm new to Android with a HTC Evo and was curious about the app system of Android. The paid apps for the Android are they shareable? I was wondering if that was possible like how Apple let's you authorize 5 different computers to transfer your app purchases to others. Does the Android Market have that ability or do you have to buy it separately by each phone? I've searched the forums, but nobody seem to have an answer. Was hoping some of you veteran android users, would know.

View 4 Replies View Related

Android :: Google Calendar Info Sync / Sharing On Droid

Apr 25, 2010

My husband & I both have Droids and use the calendar daily. Usually we just invite each other as guests to every event we add. We decided to share each others calendars in hopes that the calendar info would show up on the Droid calendar, but its not, only on the computer.

View 1 Replies View Related

Android :: Sending Directions Found Using Google Maps To Others

Nov 10, 2010

Anybody know how to "see title". After entering source and destination information via google maps, is there a way to forward the resulting directions whether it be via text, email, or otherwise to another person. Alternatively, is there a way to forward basic GPS location info via the same methods. I have not been able to find this option via HTC Footprints either.

View 4 Replies View Related

General :: Google+ Photos And FB Sharing

Dec 14, 2013

I recently switched from iOS to Android (I have a Nexus 7 2013). I don't have a ton of photos but I want something similar to iTunes that will sync my photos on my PC with my tablet. I tried many options but eventually chose to install Picasa on my PC and sync my albums to web. Great, I thought, because now all my photos appear on my tablet and aren't taking up space on it. But now I'm having issues with the Facebook app. If I go into it and try to add a photo it only shows me my camera photos. If I go into the gallery app or Google+ Photos and try to share a photo, it gives me an error. It doesn't have this problem for any other app, I can easily add photos or share to Twitter or Instagram.

View 3 Replies View Related

Android :: Select Android Applications Sharing Data Without User Notification

Sep 30, 2010

Come one, come all -- let's gather and act shocked, shall we? It's no secret that Google's Android Market is far easier to penetrate than Apple's App Store, which is most definitely a double-edged sword. On one hand, you aren't stuck waiting a lifetime for Apple to approve a perfectly sound app; on the other, you may end up accidentally downloading some Nazi themes that scar you for life. A curious team of scientists from Intel Labs, Penn State and Duke University recently utilized a so-called TaintDroid extension in order to log and monitor the actions of 30 Android apps -- 30 that were picked from the 358 most popular. Their findings? That half of their sample (15, if you're rusty in the math department) shared location information and / or other unique identifiers (IMEI numbers, phone numbers, SIM numbers, etc.) with advertisers. Making matters worse, those 15 didn't actually inform end-users that data was being shared, and some of 'em beamed out information while applications were dormant. Unfortunately for us all, the researchers didn't bother to rat out the 15 evil apps mentioned here, so good luck resting easy knowing that your library of popular apps could be spying on you right now.

Update: A Google spokesperson pinged up with an official response to the study, and you can peek it after the break.Update 2: Looks as if the full study (PDF) has been outed, with the 30 total apps named. Here they are: The Weather Channel, Cestos, Solitaire, Movies, Babble, Manga Browser, Bump, Wertago, Antivirus, ABC - Animals, Traffic Jam, Hearts, Blackjack, Horoscope, 3001 Wisdom Quotes Lite, Yellow Pages, Dastelefonbuch, Astrid, BBC News Live Stream, Ringtones, Layer, Knocking, Barcode Scanner, Coupons, Trapster, Spongebob Slide, ProBasketBall, MySpace, ixMAT, and Evernote.

View 6 Replies View Related

HTC EVO 4G :: Picasa Picture Sharing - Add Google Account

Jun 11, 2010

Is anyone else having an issue sharing pics with it? Everytime I try it takes me to the "Add a Google Account" setup screen?

View 1 Replies View Related

How To Run Multiple Apps Sharing Same Screen Simultaneously

Jul 16, 2010

i have a requirement where i need to run multiple applications simultaneously sharing the same screen space at one time. For Ex. one part of the screen might be displaying a youtube video, while to right of it, the user might be chatting with his friend, and below some application download progress...

In Short, different applications sharing same screen.I guess this has already been done as i when i google for droid tablets, i can see images that show multiple apps running simultaneously, displayed side-by-side to each other. how it can be done and if i can simulate it on ADT and AVD?

View 2 Replies View Related

HTC Droid Eris :: Google Maps For Android Gets Biking Directions - Navigation Shortcut - Sharing

May 11, 2010

I've seen more than a few users in the OTA section commenting on the new Navigation Shortcut for Google Maps. This is NOT part of the OTA, per se, but is due to a Google Maps for Mobile update that coincidentally debuted today.

This is from the Official Google Mobile Blog:

Quote:

View 16 Replies View Related

General :: Google Now - Contact Not Found

Nov 15, 2013

Whenever I try to use Google Now to send a text or make a phone call I just get "contact not found" screen. It worked fine earlier and then my phone did an update today and it no longer seems to work. It will find contacts from my gmail account but does not find any of the contacts on my phone.

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved