lizhanwei
2020-01-08 acec36334bb1fa0990f0d85180a84ecc3ed2c71e
提交c++
5个文件已修改
6 ■■■■ 已修改文件
lib/build.gradle 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
lib/src/main/cpp/native-lib.cpp 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
lib/src/main/cpp/test_items/park_bottom.cpp 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
lib/src/main/cpp/test_items/park_edge.cpp 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
lib/src/main/cpp/test_items/turn_a90.cpp 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
lib/build.gradle
@@ -14,7 +14,7 @@
        externalNativeBuild {
            cmake {
                cppFlags ""
                cppFlags "-std=c++11 -frtti -fexceptions"
            }
        }
        ndk {
lib/src/main/cpp/native-lib.cpp
@@ -2,6 +2,7 @@
#include <string>
#include <pthread.h>
#include <unistd.h>
#include <cstdlib>
#include "common/serial_port.h"
#include "jni_log.h"
#include "common/net.h"
lib/src/main/cpp/test_items/park_bottom.cpp
@@ -9,6 +9,7 @@
#include "../jni_log.h"
#include "../driver_test.h"
#include <vector>
#include <cstdlib>
using namespace std;
lib/src/main/cpp/test_items/park_edge.cpp
@@ -9,6 +9,7 @@
#include "../native-lib.h"
#include <vector>
#include <cstdlib>
using namespace std;
lib/src/main/cpp/test_items/turn_a90.cpp
@@ -9,6 +9,7 @@
#include "../jni_log.h"
#include <vector>
#include <cstdlib>
using namespace std;