Skip to content

Commit

Permalink
rename android cpp library
Browse files Browse the repository at this point in the history
  • Loading branch information
chrispader committed Oct 4, 2024
1 parent 53ae865 commit 613583d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package/android/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project(ReactNativeQuickSQLite)
project(RNQuickSQLite)
cmake_minimum_required(VERSION 3.9.0)

set (PACKAGE_NAME "react-native-quick-sqlite")
set (PACKAGE_NAME "RNQuickSQLite")
set (CMAKE_VERBOSE_MAKEFILE ON)
set (CMAKE_CXX_STANDARD 17)
set (BUILD_DIR ${CMAKE_SOURCE_DIR}/build)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public String getName() {
@ReactMethod(isBlockingSynchronousMethod = true)
public boolean install() {
try {
System.loadLibrary("react-native-quick-sqlite");
System.loadLibrary("RNQuickSQLite");
QuickSQLiteBridge.instance.install(getReactApplicationContext());
return true;
} catch (Exception exception) {
Expand Down

0 comments on commit 613583d

Please sign in to comment.