⚙️ Preferences Manager is an Open Source application that allows you to seamlessly edit application's preferences.

Overview

Android-PreferencesManager

Preferences Manager is an Open Source application that allows you to seamlessly edit application's preferences.

This application requires a rooted phone! Without root access, it can't do anything.

Android provides several options for developers to save application data. The most frequent solution is the Shared Preferences framework. It's a simple way to store private primitive data in key-value pairs. Unfortunately, this method is not very secure... It consists in a simple XML file stored in the private folder, specific to the app. But in the case of a rooted device, theses files can be read, edited and even deleted.

Preferences Manager allows you to edit these preferences in a simple and easy way. You can for instance increase your highscores, modify your progression, or just debug your application preferences.

Disclaimer : I take no responsibility for any fault or damage caused by any procedures within this application. Do only use it if you really know what you are doing. I don't assume any liability if you brick your device or any application. If an application does not work properly anymore, you can clear its data from the Settings app. You may not use the application for any illegal or unauthorized purpose!

Android-PreferencesManager on Google Play Store Android-PreferencesManager on F-Droid

Screenshots

Screenshot Screenshot Screenshot Screenshot Screenshot Screenshot

Video

Youtube Video

Pull requests

Feel free to contribute to PreferencesManager.
Either you found a bug or have created a new and awesome feature, just create a pull request.
If you want to start to create a new feature or have any other questions regarding PreferencesManager, file an issue.

Developed By

Credits

License

Copyright (C) 2013 Simon Marquis (http://www.simon-marquis.fr)

Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this file except in compliance with the License. You may obtain a copy of
the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
License for the specific language governing permissions and limitations under
the License.
Comments
  • Scrollable xml selector is hard to use

    Scrollable xml selector is hard to use

    Please think about using simple list view for displaying available xml. If application have >5 xml prefs, it's very hard to find the right one. There are no any sorting, xmls are dispayed in random order.

    opened by CODeRUS 6
  • preferences manager not working

    preferences manager not working

    Hi simon., i`m using LG P880 handphone and my handphone already root . My lg using stock rom not custom rom. But when i try to launch your application, preferences manager., the application display a pop up window mentioned that my lg phone dont have root access. Why is this happen? Tqvm for your help, .

    opened by awakenNdroid 6
  • Probable Memory Leak

    Probable Memory Leak

    After a double background-foreground event of the AppListActivity there are in heap memory 2 instances more of:

    class fr.simon.marquis.preferencesmanager.roboto.RobotoTextView @ 0x12cd9000 class fr.simon.marquis.preferencesmanager.ui.AppAdapter$HeaderViewHolder @ 0x12e20580 class fr.simon.marquis.preferencesmanager.ui.AppAdapter$ViewHolder @ 0x12e20640

    It should not be like this because the background-foreground events return to the same GUI state and the memory should stay in the same state as well. It could be a symptom of a bad management of the onStart-onStop lifecycle.

    I have encountered this problem on an Android emulator running 7.1.1 os version.

    opened by Robigus92 5
  • Problems with cm13/toybox

    Problems with cm13/toybox

    Since cm replaced busybox with toybox, if you try to start the app with cm13, you just get the "Problem detected" error msg, but there's no way to change the path to busybox in the settings.

    oandbackup has such a path-setting, so its rather easy to just change it to /system/bin/toybox and everything is back to normal.

    Is there any chance to get such a setting for Preferences Manager?

    Many thanks in advance!

    opened by Spleeeno 4
  • doesn't work in CM 12.1

    doesn't work in CM 12.1

    In cyanogenmod 12.1, PreferencesManager opens and gets root and displays list of apps, but clicking on any app produces error "sh: [43]: find: can't execute: Permission denied" followed by "no preferences for this file"

    It used to work on CM9

    opened by mnalis 1
  • No preference files found

    No preference files found

    It seems Preference Manager cannot find any preference files for any of the apps I have tried. I used the terminal to find the preference files and they seem to be located here:

    /data/data/{packagename}/shared_prefs/{packagename}_preferences.xml
    

    I've looked a bit through the code and found that the app searches recursively through:

    /data/data/{packagename}/
    

    I'm not sure why it won't find the XML file. Other 'preference editors' seem to have the same problem on my phone (stock Nexus 5 with Superuser).

    I'd like to see this fixed, so I downloaded the source code, but using Eclipse I wasn't able to build it. What do you use to build this project? Can you include an build.xml for Ant or build.gradle for Gradle?

    bug 
    opened by FrozenCow 1
  • Reload

    Reload

    When the preferences that are being viewed in Preferences Manager are edited externally (for example by the app they belong to), Preferences Manager will not reload them and overwrite them with its cached version once any preference is changed by the user.

    This is sometimes useful to reset a file to a previous state, but a reload button would be great.

    opened by fynngodau 0
  • Color picker

    Color picker

    A lot of apps store colors as integers. It'd be nice to have a color picker and RGB/HEX input available for these.

    I guess recognizing such color values isn't easy (maybe some fuzzy logic, like whether the value makes sense as a color and the name contains some string like "color"?) the color picker should be available as an extra option from the menu.

    wontfix 
    opened by ztNFny 0
  • Application without title

    Application without title

    Applications without title are throwing this exception:

    java.lang.RuntimeException: An error occured while executing doInBackground()
    at android.os.AsyncTask$3.done(AsyncTask.java:299)
    at java.util.concurrent.FutureTask.finishCompletion(FutureTask.java:352)
    at java.util.concurrent.FutureTask.setException(FutureTask.java:219)
    at java.util.concurrent.FutureTask.run(FutureTask.java:239)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1080)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:573)
    at java.lang.Thread.run(Thread.java:856)
    Caused by: java.lang.StringIndexOutOfBoundsException: length=0; index=0
    at fr.simon.marquis.preferencesmanager.model.AppEntry.formatChar(AppEntry.java:146)
    at fr.simon.marquis.preferencesmanager.model.AppEntry.loadLabels(AppEntry.java:134)
    at fr.simon.marquis.preferencesmanager.model.AppEntry.<init>(AppEntry.java:65)
    at fr.simon.marquis.preferencesmanager.util.Utils.getApplications(Utils.java:84)
    at fr.simon.marquis.preferencesmanager.ui.AppListActivity$GetApplicationsTask.doInBackground(AppListActivity.java:207)
    at fr.simon.marquis.preferencesmanager.ui.AppListActivity$GetApplicationsTask.doInBackground(AppListActivity.java:1)
    at android.os.AsyncTask$2.call(AsyncTask.java:287)
    at java.util.concurrent.FutureTask.run(FutureTask.java:234)
    ... 3 more
    

    Issue found by Levent Kılıç

    bug 
    opened by SimonMarquis 0
  • Update

    Update

    Hello, this PR contains the following changes:

    • Updated dependencies
    • Replaced libsuperuser with libsu from topjohnwu
    • Added italian translation
    • Added support for Java 8
    • Updated gradle
    • Refactoring

    Everything should work correctly.

    opened by alex193a 0
Releases(1.8.3)
Secret Codes is an Open Source application that allows you to browse through hidden codes of your Android phone.

####Secret Codes is an Open Source application that allows you to browse through hidden codes of your Android phone. This application will scan throug

Simon Marquis 251 Jan 6, 2023
An open source application to make your own android applications without coding!

Stif An Open source project for building Android Application at a go both with and without coding. This project was inspired from Scratch and Sketchwa

Nethical org 5 Aug 28, 2021
Money Manager Ex is a free, open-source, cross-platform, easy-to-use personal finance software

Money Manager Ex is a free, open-source, cross-platform, easy-to-use personal finance software. It primarily helps organize one's finances and keeps track of where, when and how the money goes.

Money Manager EX 1.2k Dec 31, 2022
Attendance-Manager - Attendance Manager, a attendance recording app that helps stay at your 75% attendance

Android-Study-Jams Attendance tracker app Problem Statement: There has been a ne

Gdsc_JMI 1 Jan 9, 2022
A mobile application that allows you to get random information every time you enter the application.

Knowledge Repository A mobile application that allows you to get random information every time you enter the application. Google Play Store : Screensh

Nisa Efendioğlu 2 Jul 10, 2022
Application that allows to search some products and display them in a list, also allows to add some product to the shopping cart and remove it

Application that allows to search some products and display them in a list, also allows to add some product to the shopping cart and remove it

Victor 3 Aug 18, 2022
androidx window manager sample taken from the original source and modified for easy deploy and test

androidx-window-samples This project contains the WindowManager samples located in the androidx WM project location The goal of this project is to pro

Cesar Valiente 0 Nov 22, 2021
Android App Development using Android Studio Project for The Swastika. It is edit profile view.

Edit_Profile_View Android App Development using Android Studio Project for The Swastika. It is edit profile view. To start with this project first is

Shradha Suryawanshi 1 Jun 12, 2022
ShopKeeper - A simple android app for sellers. The seller can add, edit and delete products that are bought by customers

ShopKeeper - A simple android app for sellers. The seller can add, edit and delete products that are bought by customers

Amit Kumar guha 1 Feb 23, 2022
NimTome is a Free and open-source spell tracker application for Dungeons and Dragons

Nimtome: An open source application to manage all your spells in D&D About This project came to life as a homework assignment, but it became a lot bit

null 2 Jan 11, 2022
The Free & Open Source Android Application for reading (Light) Novels

Shosetsu The Free & Open Source Android Application for reading (Light) Novels! We appreciate any help in improving the app, so let us know by opening

ShosetsuOrg 541 Jan 6, 2023
This component allows you to interact with remote machine via SSH. You can execute commands or run scripts located on that machine

th2 act ssh (1.2.0) Overview Provides user with the ability to execute specified scripts or commands with the parameter he needs Custom resources for

th2 1 Dec 18, 2022
App that allows you juice lemons until you have a glass of lemonade!! 🍹

Project: Lemonade App - Starter Code Starter code for the first independent project for [Android Basics in Kotlin] Introduction This is the starter co

Shaima Alghamdi 4 Nov 28, 2022
💰 Expense Manager is simple, intuitive, stable and modern app that is just designed for you.

Expense Manager is simple, intuitive, stable and modern app that is just designed for you. Everything you need at your fingertips to manage the expenditures and budgets.

Behzod Bozorboev 13 Oct 20, 2022
Money Manager app that helps you to add your daily small incomes and expenses and track them easily.

Simple Money Manager This app is a simple money manager app which helps you to add your daily small incomes and expenses and track them easily. Screen

Yash Bansal 2 Nov 21, 2021
Cryptac is a mobile application that allows you to track the main important information about your favorite cryptos

Cryptac is a mobile application that allows you to track the main important information about your favorite cryptos.

null 1 Jan 21, 2022
The application is a PoC that helps in identifying modern bankers, potentially malicious and remote controlling applications abusing Android AccessibilityService.

Motivation Project aims to help in: identifying keyloggers and events hijacking malicious applications such as Anubis/TeaBot, identifying a "fake bank

Krzysztof Pranczk 33 Dec 9, 2022