Update libra extract information

This commit is contained in:
Josh Freeman
2015-10-30 20:22:07 +00:00
parent 2f74e74030
commit e435a97073
+11
View File
@@ -10,6 +10,17 @@ Note that even if you download the APK when SE "update it", it may not have the
So in order to always have the most up to date SQLite file, you need a rooted android where you can view the installation of Libra and you can get the SQLite file from there.
# Extracting
- Once you download the APK, just unzip it. It's just a zip file, any program can do it!
- Database File: `assets/database/app_data.sqlite.zip`, extract to get an `app_data.sqlite` file.
- Images: `res/drawable-xhdpi-v4/`, nice big icons!
- Translations: `assets/strings/strings.zip` great if you want to translate your website. Some useful termonology.
# Viewing the code
There is a `classes.dex` file which can be decompiled. https://github.com/pxb1988/dex2jar worked for me, have fun with the Source Code, its not pretty =X
# Viewing the data
You can use a tool such as SQLLiteBrowser to view the data, but it will not output the SQLite file correctly. I've included some PHP code which can be used to connect to the SQLite file and you can then do normal SQL queries on the file.