I want to extract DB of GPS location in APK. I decompiled the APK and open DBM.Java File as follows:
public DBM open() {
return open(this.databasePath);
}
public DBM open(String path) {
try {
if (!path.endsWith(SQLITE_EXTENTION) && SamaUtils.absoluteFileExist(AppViewer.getContext(), path + SQLITE_EXTENTION)) {
path = path + SQLITE_EXTENTION;
}
this.portalDB = SQLiteDatabase.openDatabase(path, null, 268435456);
return this;
}
catch (Exception e) {
e.printStackTrace();
return null;
}
}
How I can extract the DB of GPS Location in this APK?