From d155bf82caa98a6fc87b2c5edbbb31a5b1161654 Mon Sep 17 00:00:00 2001 From: Eric Lange Date: Fri, 24 Aug 2018 10:01:35 +0200 Subject: [PATCH] Resolved issues #40 and #51 Now using LiquidCoreCommon code in Android --- .gitignore | 1 + .idea/codeStyles/Project.xml | 29 + .idea/compiler.xml | 22 - .idea/copyright/profiles_settings.xml | 3 - .idea/gradle.xml | 3 +- .idea/misc.xml | 25 +- .idea/vcs.xml | 2 +- LiquidCoreAndroid/CMakeLists.txt | 10 +- LiquidCoreAndroid/build.gradle | 25 +- .../src/main/cpp/JNI/JNI_JSValue.cpp | 1 - .../src/main/cpp/node/NodeInstance.cpp | 844 -------- .../src/main/cpp/node/NodeInstance.h | 116 -- .../src/main/cpp/node/nodedroid_file.cc | 1771 ----------------- .../src/main/cpp/node/nodedroid_file.h | 61 - .../src/main/cpp/node/process_wrap.cc | 107 - LiquidCoreCommon/node/NodeInstance.cpp | 18 +- LiquidCoreCommon/node/NodeInstance.h | 5 +- LiquidCoreCommon/node/os_dependent.cpp | 4 +- 18 files changed, 66 insertions(+), 2981 deletions(-) create mode 100644 .idea/codeStyles/Project.xml delete mode 100644 .idea/compiler.xml delete mode 100644 .idea/copyright/profiles_settings.xml delete mode 100644 LiquidCoreAndroid/src/main/cpp/node/NodeInstance.cpp delete mode 100644 LiquidCoreAndroid/src/main/cpp/node/NodeInstance.h delete mode 100644 LiquidCoreAndroid/src/main/cpp/node/nodedroid_file.cc delete mode 100644 LiquidCoreAndroid/src/main/cpp/node/nodedroid_file.h delete mode 100644 LiquidCoreAndroid/src/main/cpp/node/process_wrap.cc diff --git a/.gitignore b/.gitignore index 7a97f207b5..aaf2a09ee3 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ /local.properties /.idea/workspace.xml /.idea/libraries +/.idea/caches .DS_Store /build /captures diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml new file mode 100644 index 0000000000..30aa626c23 --- /dev/null +++ b/.idea/codeStyles/Project.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml deleted file mode 100644 index 96cc43efa6..0000000000 --- a/.idea/compiler.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/copyright/profiles_settings.xml b/.idea/copyright/profiles_settings.xml deleted file mode 100644 index e7bedf3377..0000000000 --- a/.idea/copyright/profiles_settings.xml +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/.idea/gradle.xml b/.idea/gradle.xml index 5fcfbc383f..65f050f8c7 100644 --- a/.idea/gradle.xml +++ b/.idea/gradle.xml @@ -3,9 +3,8 @@