mirror of
https://github.com/NekoX-Dev/NekoX.git
synced 2024-12-02 23:31:05 +01:00
Check if native lib loaded before opening db
This commit is contained in:
parent
d8c2966efc
commit
585ba77ea7
@ -62,6 +62,8 @@ public class MessagesStorage {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void openDatabase() {
|
public void openDatabase() {
|
||||||
|
NativeLoader.initNativeLibs(ApplicationLoader.applicationContext);
|
||||||
|
|
||||||
cacheFile = new File(ApplicationLoader.applicationContext.getFilesDir(), "cache4.db");
|
cacheFile = new File(ApplicationLoader.applicationContext.getFilesDir(), "cache4.db");
|
||||||
|
|
||||||
SharedPreferences preferences = ApplicationLoader.applicationContext.getSharedPreferences("dbconfig", Context.MODE_PRIVATE);
|
SharedPreferences preferences = ApplicationLoader.applicationContext.getSharedPreferences("dbconfig", Context.MODE_PRIVATE);
|
||||||
|
@ -28,7 +28,14 @@ public class NativeLoader {
|
|||||||
0, //mips
|
0, //mips
|
||||||
};
|
};
|
||||||
|
|
||||||
public static void initNativeLibs(Context context) {
|
private static volatile boolean nativeLoaded = false;
|
||||||
|
|
||||||
|
public static synchronized void initNativeLibs(Context context) {
|
||||||
|
if (nativeLoaded) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
nativeLoaded = true;
|
||||||
|
|
||||||
if (Build.VERSION.SDK_INT >= 9) {
|
if (Build.VERSION.SDK_INT >= 9) {
|
||||||
try {
|
try {
|
||||||
String folder = null;
|
String folder = null;
|
||||||
|
Loading…
Reference in New Issue
Block a user