mirror of
https://github.com/RoboSats/robosats.git
synced 2025-01-05 14:00:09 +00:00
7b8fcb3285
* Add android build workflow
* Initial webview on tsx template
* Insert ReactJS app from local
* Add Android app icon by @red_purdy (#174)
* Add files via upload
* Add files via upload
* Add files via upload
* Add files via upload
* Add files via upload
* Add files via upload
Co-authored-by: RedPurdy <104675727+RedPurdy@users.noreply.github.com>
* Fix local reactjs
* Add setup guide. Bundled dev main.js
* Add react native tor
* Move Android CHANGELOG.md to /mobile
* Add torified webview in react-native (#247)
* Add android build workflow
* Android Tor Requests
* Fetching internal files (i18n)
* react-native-tor does not implement PUT
* Get Files from Tor
* Revert "Add android build workflow"
This reverts commit 340bcf8d1c
.
* Fix Rebase Removals
* External sources
* react-native-tor crashes
* Last Refactor
* Fix/revert setup guide
* Add /mobile as volume to npm-dev container
On the fully dockerized dev environment the npm process cannot save files outside of /frontend directory. Now it can also save the builds to /mobile
* Fix UsafeAlert
* Run prettier
* Run lint:fix
* Main Profile Image fix
* Remove Tor Requests limitation
Co-authored-by: Reckless_Satoshi <reckless.satoshi@protonmail.com>
Co-authored-by: RedPurdy <104675727+RedPurdy@users.noreply.github.com>
Co-authored-by: KoalaSat <yv1vtrul@duck.com>
49 lines
1.5 KiB
Makefile
49 lines
1.5 KiB
Makefile
THIS_DIR := $(call my-dir)
|
|
|
|
include $(REACT_ANDROID_DIR)/Android-prebuilt.mk
|
|
|
|
# If you wish to add a custom TurboModule or Fabric component in your app you
|
|
# will have to include the following autogenerated makefile.
|
|
# include $(GENERATED_SRC_DIR)/codegen/jni/Android.mk
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_PATH := $(THIS_DIR)
|
|
|
|
# You can customize the name of your application .so file here.
|
|
LOCAL_MODULE := robosats_appmodules
|
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)
|
|
LOCAL_SRC_FILES := $(wildcard $(LOCAL_PATH)/*.cpp)
|
|
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)
|
|
|
|
# If you wish to add a custom TurboModule or Fabric component in your app you
|
|
# will have to uncomment those lines to include the generated source
|
|
# files from the codegen (placed in $(GENERATED_SRC_DIR)/codegen/jni)
|
|
#
|
|
# LOCAL_C_INCLUDES += $(GENERATED_SRC_DIR)/codegen/jni
|
|
# LOCAL_SRC_FILES += $(wildcard $(GENERATED_SRC_DIR)/codegen/jni/*.cpp)
|
|
# LOCAL_EXPORT_C_INCLUDES += $(GENERATED_SRC_DIR)/codegen/jni
|
|
|
|
# Here you should add any native library you wish to depend on.
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libfabricjni \
|
|
libfbjni \
|
|
libfolly_runtime \
|
|
libglog \
|
|
libjsi \
|
|
libreact_codegen_rncore \
|
|
libreact_debug \
|
|
libreact_nativemodule_core \
|
|
libreact_render_componentregistry \
|
|
libreact_render_core \
|
|
libreact_render_debug \
|
|
libreact_render_graphics \
|
|
librrc_view \
|
|
libruntimeexecutor \
|
|
libturbomodulejsijni \
|
|
libyoga
|
|
|
|
LOCAL_CFLAGS := -DLOG_TAG=\"ReactNative\" -fexceptions -frtti -std=c++17 -Wall
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|