Skip to content

Commit af97fe2

Browse files
committed
Merge branch 'main' into example-enable-newarch
2 parents f2efc3b + 613583d commit af97fe2

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/RNQuickSQLiteInitModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public String getName() {
1919
@Override
2020
public boolean install() {
2121
try {
22-
System.loadLibrary("react-native-quick-sqlite");
22+
System.loadLibrary("RNQuickSQLite");
2323
QuickSQLiteBridge.instance.install(getReactApplicationContext());
2424
return true;
2525
} catch (Exception exception) {

0 commit comments

Comments
 (0)