Linked Questions
37 questions linked to/from Android: Retrieving shared preferences of other application
0 votes
1 answer
170 views
Acess a sharedpreference file from different app [duplicate]
I am triying to acess to a shared preferences file wich was created in a different applicaction. I followed some tutorials but not works. This is my case: App1 (com.example.remoteservice) ...
2 votes
1 answer
88 views
update/ write SharedPreferences of first app by second app [duplicate]
I have two apps first app store the login token in SharedPreferences and i access it in second app by SharedPreferences. The scenario is now change. If the user is using second app and not login ...
-3 votes
3 answers
13k views
How to implement Single Sign On on Android [closed]
I would like to implement Single Sign On on Android. I have a set of mobile apps which need to speak with a server to identify the user. When one of the applications is recognised as belonging to ...
11 votes
2 answers
12k views
Android Shared Preferences across different applications
I've been developing an Android application which interacts with other applications installed on the device via a sharedpreference file. This file was created as MODE.WORLD_READABLE and every ...
1 vote
4 answers
4k views
How to share data Between two Application
I am trying to share some data between two applications with SharePreferences. (If i am goning wrong way please tell me the correct way to send data between diffrent applications). my code is like ...
-1 votes
2 answers
5k views
Use Shared Preferences of other application
I found the same questions on stack and used this way public void setProgramAllProgress(int all){ SharedPreferences prefs = CApplication.getAppContext().getSharedPreferences(BASE_PATH, ...
1 vote
4 answers
3k views
SharedPreferences to a custom path - Android
I want to keep my SharedPreferences xml in a different place where default path is the application package. Can we set a custom path for android SharedPreferences and use it while it is in that path ...
7 votes
1 answer
4k views
Implement Single Sign on in for Android Applications
I have 4-5 Android applications and I want to implement Single Sign on for all these apps. So that if user has logged into any one of that apps he won't be asked to log in again for other ...
0 votes
1 answer
2k views
Android: Retrieving shared preferences of other application (rooted device)
I am running a vulnerable android application on a rooted device using the Genymotion and i am trying to read shared preferences and a file in files directory inside different android application like:...
1 vote
2 answers
1k views
Changing orientation of another application
I am creating an application which will change the orientation of some other already installed application, Reading the orientation of other application installed was simple through ApplicationInfo ...
1 vote
2 answers
1k views
Android Preferences - How Shareable is Shareable?
I'm using PreferenceActivity to let Android handle some persistent key/value pairs for my app. According to the Android Preference docs : Note that saved preferences are accessible only to the ...
0 votes
2 answers
308 views
phonegap android plugin for user preferences
I have two android apps, one written in Java and the other written in javascript wrapped in a phonegap application. I need my java app to set a user preference (string) and the js app to get this ...
-1 votes
2 answers
1k views
I am unable to get Shared Preferences of other application
I am new to Android.I am trying access SharedPreferences of one application in another application. But i am not getting those values. My code was posted below. Create.java in SharedPref1 package ...
2 votes
1 answer
1k views
Sharing data between my apps (like KeyChain in IOS)
I am looking for the mechanism in Android similar to KeyChain in IOS. Basically I need to be able to share storage data between my "family" of apps. It means that other apps should not be able to ...
0 votes
3 answers
1k views
Android : SharedPreferences not updated
My 2 android applications communicate throught a AIDL file : Application A <== AIDL ==> Application B (service) Application A calls methods of Application B (service) that returns some JSON ...