6eb031de9ae03bef7ae7370b6843384c806f4eb3 |
06-Nov-2017 |
Sergey Avseyev <sergey.avseyev@gmail.com> |
Text files should not have executable bit set (#4480)
ndroid.mk
pplication.mk
|
a8923222033763f1a74f836c656af19d9f620378 |
13-Jul-2017 |
Stewart Miles <smiles@google.com> |
C++98 (stlport) support for core FlatBuffers and FlexBuffers. * Added internal - limited - implementation of flatbuffers::unique_ptr for STLs that don't ship with std::unique_ptr. In C++11 and beyond this is just an alias for std::unique_ptr. * Aliased used type traits structs is_scalar is_floating_point is_unsigned into flatbuffers namespace so they can be replaced in C++98 implementations. Right now these point at stlport's TR1 implementations. * Wrapped vector::data() in vector_data(). * Wrapped vector::emplace_back() in vector_emplace_back(). * Wrapper string::back() in string_back(). * Added variants of FlatBufferBuilder::CreateVector() and FlatBufferBuilder::CreateVectorOfStructs() that allow the use of plain function pointers. Generated code has also been modified to use plain functions to build objects rather than std::function() so all generated code will work in C++98 applications. * Added flexbuffers::Builder::Vector(), flexbuffers::Builder::TypedVector() and flexbuffers::Builder::Map() methods that allow the use of plain function pointers. * Changed Parser to internally use plain function pointers when parsing table and vector delimiters. * Added specializations of NumToString() for 64-bit types that aren't supported by stringstream in stlport. * Overloaded numeric_limits for 64-bit types not supported by stlport. * Replaced build_apk.sh (which was broken by deprecation of the "android" tool in the Android SDK) with build.gradle and the appropriate gradle wrapper to build an APK. * Switched Android build to build against all STL variants. * Updated travis configuration to build Android test and sample. Tested: * Verified all tests continue to work on Linux, OSX and Android. * Verified Travis build is green. Change-Id: I9e634363793f85b9f141d21454b10686020a2065
ndroid.mk
pplication.mk
|
d06e571b31179c0dd7986456a558fafb9b92f265 |
24-May-2016 |
Stewart Miles <smiles@google.com> |
Removed reference to deprecated NDK toolchain version. Change-Id: I8d39a66ca5642427619c60f349fa78917aec2455
pplication.mk
|
69a31b807a85e9a5ca4efb839f37ecb6dcf3eed5 |
04-Dec-2015 |
Mark Klara <mrhappyasthma@google.com> |
Revamping the FlatBuffers docs. Adding an API reference for the supported languages. General docs cleanup, including a new `tutorial` section that supports all of the supported languages. Added samples for each supported language to mirror the new tutorial page. Cleaned up all the links by making them `@ref` style links, instead of referencing the names of the generated `.html` files. Removed all generated files that were unnecessarily committed. Also fixed the C# tests (two were failing due to a missing file). Bug: b/25801305 Tested: Tested all samples on Ubuntu, Mac, and Android. Docs were generated using doxygen and viewed on Chrome. Change-Id: I2acaba6e332a15ae2deff5f26a4a25da7bd2c954
ndroid.mk
ain.cpp
|
ff1ac8ab5a62505adb10a12442a8018248a03dad |
26-Jan-2015 |
Alex Ames <amablue@google.com> |
Added new Android build target and makefile utils. Previously Android.mk only had a rule for the Flatbuffers test. There is now an empty module definition so that flatbuffers can be included as an Android module in other projects. Additionally, android/jni/include.mk has been added which contains some utility functions that can be used by projects using Flatbuffers to generate header build rules and set up dependencies. A sample project has been added to the samples directory to demonstrate how to use flatbuffers with Android. Tested by compiling Android project on Linux. Change-Id: I25d6da40f6531777b22f7371187e0a2f4e903ad4
ndroid.mk
pplication.mk
ain.cpp
chemas/animal.fbs
|