We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f2efc3b + 613583d commit af97fe2Copy full SHA for af97fe2
package/android/CMakeLists.txt
@@ -1,7 +1,7 @@
1
-project(ReactNativeQuickSQLite)
+project(RNQuickSQLite)
2
cmake_minimum_required(VERSION 3.9.0)
3
4
-set (PACKAGE_NAME "react-native-quick-sqlite")
+set (PACKAGE_NAME "RNQuickSQLite")
5
set (CMAKE_VERBOSE_MAKEFILE ON)
6
set (CMAKE_CXX_STANDARD 17)
7
set (BUILD_DIR ${CMAKE_SOURCE_DIR}/build)
package/android/src/main/java/com/margelo/rnquicksqlite/RNQuickSQLiteInitModule.java
@@ -19,7 +19,7 @@ public String getName() {
19
@Override
20
public boolean install() {
21
try {
22
- System.loadLibrary("react-native-quick-sqlite");
+ System.loadLibrary("RNQuickSQLite");
23
QuickSQLiteBridge.instance.install(getReactApplicationContext());
24
return true;
25
} catch (Exception exception) {
0 commit comments