Skip to content

Commit 613583d

Browse files
committed
rename android cpp library
1 parent 53ae865 commit 613583d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package/android/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
project(ReactNativeQuickSQLite)
1+
project(RNQuickSQLite)
22
cmake_minimum_required(VERSION 3.9.0)
33

4-
set (PACKAGE_NAME "react-native-quick-sqlite")
4+
set (PACKAGE_NAME "RNQuickSQLite")
55
set (CMAKE_VERBOSE_MAKEFILE ON)
66
set (CMAKE_CXX_STANDARD 17)
77
set (BUILD_DIR ${CMAKE_SOURCE_DIR}/build)

package/android/src/main/java/com/margelo/rnquicksqlite/SequelModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public String getName() {
2222
@ReactMethod(isBlockingSynchronousMethod = true)
2323
public boolean install() {
2424
try {
25-
System.loadLibrary("react-native-quick-sqlite");
25+
System.loadLibrary("RNQuickSQLite");
2626
QuickSQLiteBridge.instance.install(getReactApplicationContext());
2727
return true;
2828
} catch (Exception exception) {

0 commit comments

Comments
 (0)