Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sloy/preferator
Edit your application SharedPreferences from the device
https://github.com/sloy/preferator
android-library application-sharedpreferences
Last synced: 3 months ago
JSON representation
Edit your application SharedPreferences from the device
- Host: GitHub
- URL: https://github.com/sloy/preferator
- Owner: Sloy
- Created: 2016-12-24T19:44:42.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2020-11-09T15:25:58.000Z (about 4 years ago)
- Last Synced: 2024-10-15T02:57:19.129Z (4 months ago)
- Topics: android-library, application-sharedpreferences
- Language: Kotlin
- Homepage:
- Size: 266 KB
- Stars: 185
- Watchers: 5
- Forks: 18
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Preferator
[![Bintray](https://img.shields.io/bintray/v/sloy/maven/preferator.svg)](https://bintray.com/sloy/maven/preferator/) [![Build Status](https://travis-ci.org/Sloy/preferator.svg?branch=master)](https://travis-ci.org/Sloy/preferator)
This Android library let's you edit your application SharedPreferences from the device itself.
# Screenshot
## Usage
It's a one-liner:
```java
// From a button click in your debug menu or something
Preferator.launch(context);
```
And you're good to go!## Download
Add it to your build.gradle:
```groovy
dependencies{
debugCompile 'com.sloydev:preferator:1.4.0'
releaseCompile 'com.sloydev:preferator-no-op:1.4.0'
}
```## License
```
Copyright 2016 Rafa VázquezLicensed 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 athttp://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.
```