All Projects → Ansh1234 → Appdatareader

Ansh1234 / Appdatareader

A library for reading Shared Preferences and Database values within the application.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Appdatareader

Contacts
A flutter project with Implementation of a Contacts app in 4 ways (API, Custom, Preferences and Sqflite).
Stars: ✭ 100 (-20.63%)
Mutual labels:  sqlite, sharedpreferences
Android Debug Database
A library for debugging android databases and shared preferences - Make Debugging Great Again
Stars: ✭ 7,946 (+6206.35%)
Mutual labels:  sqlite, sharedpreferences
Quiz-App
A Quiz Android application 📱 built using Java ♨️ and showing best practices of 🛠️ Room
Stars: ✭ 33 (-73.81%)
Mutual labels:  sharedpreferences, sqlite
Kripton
A Java/Kotlin library for Android platform, to manage bean's persistence in SQLite, SharedPreferences, JSON, XML, Properties, Yaml, CBOR.
Stars: ✭ 110 (-12.7%)
Mutual labels:  sqlite, sharedpreferences
Secure Preferences
Android Shared preference wrapper than encrypts the values of Shared Preferences. It's not bullet proof security but rather a quick win for incrementally making your android app more secure.
Stars: ✭ 1,527 (+1111.9%)
Mutual labels:  sharedpreferences
Servicestack.ormlite
Fast, Simple, Typed ORM for .NET
Stars: ✭ 1,532 (+1115.87%)
Mutual labels:  sqlite
Ketai
Ketai sensor library for Processing (Android mode)
Stars: ✭ 114 (-9.52%)
Mutual labels:  sqlite
Jianso movie
🎬 电影资源爬虫,电影图片抓取脚本,Flask|Nginx|wsgi
Stars: ✭ 114 (-9.52%)
Mutual labels:  sqlite
Transformalize
Configurable Extract, Transform, and Load
Stars: ✭ 125 (-0.79%)
Mutual labels:  sqlite
Cs61a
Structure and Interpretation of Computer Programs
Stars: ✭ 123 (-2.38%)
Mutual labels:  sqlite
Eaglet
最简單直接的 Koa2 的脚手架
Stars: ✭ 118 (-6.35%)
Mutual labels:  sqlite
Github To Sqlite
Save data from GitHub to a SQLite database
Stars: ✭ 116 (-7.94%)
Mutual labels:  sqlite
Sqift
Powerful Swift wrapper for SQLite
Stars: ✭ 119 (-5.56%)
Mutual labels:  sqlite
Sql Kit
*️⃣ Build SQL queries in Swift. Extensible, protocol-based design that supports DQL, DML, and DDL.
Stars: ✭ 115 (-8.73%)
Mutual labels:  sqlite
Prefs
Simple Android SharedPreferences wrapper.
Stars: ✭ 125 (-0.79%)
Mutual labels:  sharedpreferences
Powerup Android
PowerUp is an educational choose-your-own-adventure game that utilizes a users uploaded curriculum to empower pre-adolescents to take charge of their reproductive health. This is the Android version of the game.
Stars: ✭ 114 (-9.52%)
Mutual labels:  sqlite
Belleorm
A Sqlite ORM library for Kotlin, Java & Android.
Stars: ✭ 117 (-7.14%)
Mutual labels:  sqlite
Myblog
python写的博客,支持3种数据库,现在挂在evilbinary.org
Stars: ✭ 121 (-3.97%)
Mutual labels:  sqlite
Movieapp
🎬 MovieApp is a Flutter application built to demonstrate the use of modern development tools with best practices implementation like Modularization, BLoC, Dependency Injection, Dynamic Theme, Cache, Shimmer, Testing, Flavor, CI/CD, etc.
Stars: ✭ 117 (-7.14%)
Mutual labels:  sharedpreferences
Sqlite3 To Mysql
Make an Sqlite3 export MySQL readable.
Stars: ✭ 116 (-7.94%)
Mutual labels:  sqlite

AppDataReader

A library for reading and writing Shared Preferences and Database values of the application within the device.

Advantages of using this library

  • No Java Code. Only gradle dependency.
  • Read all the Database Values in the device without the need of a browser.
  • See all the Shared Preferences at once or file by file.
  • Edit the table data by clicking the value of a column in a row.
  • Query the database with various types of queries like SELECT, UPDATE, DELETE, INSERT and RAW QUERY. Querying is made simpler by making an interactive UI for various types of queries.
  • Copy the value of an individual column of Shared Preference and Database tables to Clipboard.
  • With the help of some additional gradle code, this library will pick up the compileSdk Version, targetSdk Version and Build Tools Version from the main project.

Install the library

compile 'com.awesomedroidapps:inappstoragereader:1.0.2'

Or if the library is to be used only for debug builds and not release builds, then

debugCompile 'com.awesomedroidapps:inappstoragereader:1.0.2'

The library is using some dependencies for building the UI i.e. RecyclerView v23.2.0, CardView v23.2.0 and the Support Library v23.2.0. In case, your project is also using these dependencies, but with a different version, then declare the following variables in the build.gradle file of the root project.

project.ext {
    rvv = '23.1.0' //RecyclerView  version
    slv = '23.1.0' // Support AppCompat v7 library version.
    clv = '23.1.0' //CardView Library Version
    csv = 23 // compile Sdk version
    tsv = 23 //Target Sdk version
    btv = '23.0.2' // Build tools version.
 }

The library declares an activity AppDataListActivity with action android.intent.action.MAIN in the AndroidManifest.xml. So as soon as your application is installed, this activity will also be placed in the launcher of the phone. Search for App Data on the launcher.

Demo

Checkout the Live Demo of the application here

View Database and Shared Preferences

                                              

Query The Database

           


Tentative features for the next release

  • Copy an entire row to Clipboard.
  • Export an entire table in csv and json format.

=====

Checkout my other projects

RxDownloader- Demo of Downloading Songs/Images through Android Download Manager using RxJava2

RxFbLiveVideoEmoticons - Demo of Fb Live Video Reactions using RxJava2.

WebViewDemo - A demo project for showing how to use WebViews in Android.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].