Skip to content
This repository has been archived by the owner on Feb 12, 2025. It is now read-only.

Fix backups #270

Merged
merged 2 commits into from
May 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 0 additions & 26 deletions app/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,6 @@ cmake_minimum_required(VERSION 3.4.1)
# You can define multiple libraries, and CMake builds them for you.
# Gradle automatically packages shared libraries with your APK.

add_library( # Sets the name of the library.
secp256k1

# Sets the library as a shared library.
SHARED

# Provides a relative path to your source file(s).
src/main/cpp/secp256k1/src/secp256k1.c
src/main/cpp/secp256k1/src/org_bitcoin_NativeSecp256k1.c
src/main/cpp/secp256k1/src/org_bitcoin_Secp256k1Context.c)

add_library( # Sets the name of the library.
sqlitejdbc

Expand All @@ -36,14 +25,6 @@ add_library( # Sets the name of the library.
# you want to add. CMake verifies that the library exists before
# completing its build.

target_compile_options(secp256k1 PUBLIC -DHAVE_CONFIG_H)

target_include_directories(secp256k1 PUBLIC
src/main/cpp/secp256k1
src/main/cpp/secp256k1/src
)


target_compile_options(sqlitejdbc PUBLIC
-DSQLITE_HAVE_ISNAN
-DSQLITE_HAVE_USLEEP
Expand Down Expand Up @@ -76,13 +57,6 @@ find_library( # Sets the name of the path variable.
# can link multiple libraries, such as libraries you define in this
# build script, prebuilt third-party libraries, or system libraries.

target_link_libraries( # Specifies the target library.
secp256k1

# Links the target library to the log library
# included in the NDK.
${log-lib} )

target_link_libraries( # Specifies the target library.
sqlitejdbc

Expand Down
1 change: 1 addition & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ dependencies {
exclude group: 'ch.qos.logback'
}
// eclair core
implementation 'fr.acinq.secp256k1:secp256k1-kmp-jni-android:0.5.1'
implementation 'fr.acinq.eclair:eclair-core_2.11:0.4.11-android-SNAPSHOT'
// database orm
implementation 'org.greenrobot:greendao:3.2.2'
Expand Down
Loading