From 162257dcf533ea357023f2e627ea5c937b488784 Mon Sep 17 00:00:00 2001 From: Sacha Froment Date: Mon, 12 Nov 2018 17:43:23 +0100 Subject: [PATCH] fix(android): fix not init ble func Signed-off-by: Sacha Froment --- client/react-native/gomobile/core/core.go | 2 ++ client/react-native/gomobile/{ => core}/other.go | 0 2 files changed, 2 insertions(+) rename client/react-native/gomobile/{ => core}/other.go (100%) diff --git a/client/react-native/gomobile/core/core.go b/client/react-native/gomobile/core/core.go index c510c4a802..8c2f21e2bf 100644 --- a/client/react-native/gomobile/core/core.go +++ b/client/react-native/gomobile/core/core.go @@ -70,6 +70,8 @@ func Initialize(loggerNative Logger) error { return err } + initBleFunc() + return nil } diff --git a/client/react-native/gomobile/other.go b/client/react-native/gomobile/core/other.go similarity index 100% rename from client/react-native/gomobile/other.go rename to client/react-native/gomobile/core/other.go