Skip to content
This repository has been archived by the owner on Dec 18, 2024. It is now read-only.

Merge master > develop #64

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
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
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
> [!IMPORTANT]
> This repo is no longer maintained, use [fiosdk_typescript](https://github.com/fioprotocol/fiosdk_typescript) or [fio.sdk-lite](https://github.com/fioprotocol/fio.sdk-lite)

# FIO Kotlin SDK
The Foundation for Interwallet Operability (FIO) is a consortium of leading blockchain wallets, exchanges and payments providers that seeks to accelerate blockchain adoption by reducing the risk, complexity, and inconvenience of sending and receiving cryptoassets.

Expand Down Expand Up @@ -89,6 +92,8 @@ Use the following steps to determine the fee and pass it to the signed call.
2. Call the API Signed call with the fee

# Creating your own FIO Private/Public Keys?
> [!IMPORTANT]
> Private key generation in the SDK is available only for testing purposes only. Do not generate private keys for production application using these methods. Instead pass securely generated private keys or seed phrase to the SDK constructor.
The SDK provides FIO Key generation. Here are the key details, if the SDK is not used for Key Generation.

FIO Keys use SLIP-235 for BIP-0044.
Expand Down Expand Up @@ -127,6 +132,3 @@ Documentation folder added to the project
## Version 0.9.2
Updated and cleaned up SDK code base.
Finalization of method names and parameter names and order



4 changes: 2 additions & 2 deletions androidfioserializationprovider/src/main/cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# Sets the minimum version of CMake required to build the native library.

cmake_minimum_required(VERSION 3.4.1)
cmake_minimum_required(VERSION 3.10.2...3.10.2)

set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++17")

Expand Down Expand Up @@ -43,7 +43,7 @@ find_library( # Sets the name of the path variable.

target_link_libraries( # Specifies the target library.
abieos-lib

-Wl,--build-id=none
# Links the target library to the log library
# included in the NDK.
${log-lib})