Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
.github/ | 03-May-2024 | - | 30 | 18 | ||
CMake/ | 03-May-2024 | - | 267 | 240 | ||
android/ | 03-May-2024 | - | 1,144 | 697 | ||
biicode/ | 03-May-2024 | - | 69 | 43 | ||
docs/ | 03-May-2024 | - | 8,194 | 6,576 | ||
go/ | 03-May-2024 | - | 1,578 | 969 | ||
grpc/ | 03-May-2024 | - | 2,133 | 1,692 | ||
include/flatbuffers/ | 03-May-2024 | - | 6,035 | 4,247 | ||
java/com/google/flatbuffers/ | 03-May-2024 | - | 1,199 | 449 | ||
js/ | 03-May-2024 | - | 1,160 | 482 | ||
net/FlatBuffers/ | 03-May-2024 | - | 1,507 | 885 | ||
php/ | 03-May-2024 | - | 1,655 | 847 | ||
python/ | 03-May-2024 | - | 1,137 | 709 | ||
reflection/ | 03-May-2024 | - | 111 | 82 | ||
samples/ | 03-May-2024 | - | 2,666 | 1,681 | ||
src/ | 03-May-2024 | - | 11,102 | 9,182 | ||
tests/ | 03-May-2024 | - | 18,559 | 13,270 | ||
.gitattributes | D | 03-May-2024 | 12 | 2 | 1 | |
.gitignore | D | 03-May-2024 | 1 KiB | 69 | 68 | |
.travis.yml | D | 03-May-2024 | 1.1 KiB | 32 | 22 | |
Android.mk | D | 03-May-2024 | 844 | 23 | 7 | |
CMakeLists.txt | D | 03-May-2024 | 7.6 KiB | 246 | 212 | |
CONTRIBUTING.md | D | 03-May-2024 | 2.2 KiB | 43 | 37 | |
LICENSE | D | 03-May-2024 | 11.1 KiB | 202 | 169 | |
LICENSE.txt | D | 03-May-2024 | 11.1 KiB | 203 | 169 | |
README.android | D | 03-May-2024 | 281 | 11 | 9 | |
appveyor.yml | D | 03-May-2024 | 1.2 KiB | 47 | 35 | |
biicode.conf | D | 03-May-2024 | 83 | 8 | 6 | |
composer.json | D | 03-May-2024 | 377 | 18 | 18 | |
package.json | D | 03-May-2024 | 647 | 28 | 27 | |
pom.xml | D | 03-May-2024 | 2.6 KiB | 91 | 87 | |
readme.md | D | 03-May-2024 | 2.5 KiB | 60 | 47 |
README.android
1URL: https://github.com/google/flatbuffers/releases/tag/v1.6.0 2Version: 1.6.0 3License: Apache License, Version 2.0 4License File: LICENSE 5Owners: siyamed 6 7Description: 8Cross platform serialization library. Used to read the metadata in a font. 9 10Local Modifications: 11No modifications.
readme.md
1![logo](http://google.github.io/flatbuffers/fpl_logo_small.png) FlatBuffers 2=========== 3 4[![Join the chat at https://gitter.im/google/flatbuffers](https://badges.gitter.im/google/flatbuffers.svg)](https://gitter.im/google/flatbuffers?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) 5[![Build Status](https://travis-ci.org/google/flatbuffers.svg?branch=master)](https://travis-ci.org/google/flatbuffers) [![Build status](https://ci.appveyor.com/api/projects/status/yg5idd2fnusv1n10?svg=true)](https://ci.appveyor.com/project/gwvo/flatbuffers) 6 7**FlatBuffers** is an efficient cross platform serialization library for games and 8other memory constrained apps. It allows you to directly access serialized data without 9unpacking/parsing it first, while still having great forwards/backwards compatibility. 10 11**Go to our [landing page][] to browse our documentation.** 12 13## Supported operating systems 14* Android 15* Windows 16* MacOS X 17* Linux 18 19## Supported programming languages 20* C++ 21* C# 22* C 23* Go 24* Java 25* JavaScript 26* PHP 27* Python 28 29*and many more in progress...* 30 31## Contribution 32* [FlatBuffers Google Group][] to discuss FlatBuffers with other developers and users. 33* [FlatBuffers Issues Tracker][] to submit an issue. 34* [stackoverflow.com][] with [`flatbuffers` tag][] for any questions regarding FlatBuffers. 35 36*To contribute to this project,* see [CONTRIBUTING][]. 37 38## Integration 39For applications on Google Play that integrate this tool, usage is tracked. 40This tracking is done automatically using the embedded version string 41(**`flatbuffer_version_string`**), and helps us continue to optimize it. Aside from 42consuming a few extra bytes in your application binary, it shouldn't affect 43your application at all. We use this information to let us know if FlatBuffers 44is useful and if we should continue to invest in it. Since this is open 45source, you are free to remove the version string but we would appreciate if 46you would leave it in. 47 48## Licensing 49*Flatbuffers* is licensed under the Apache License, Version 2.0. See [LICENSE][] for the full license text. 50 51<br> 52 53 [CONTRIBUTING]: http://github.com/google/flatbuffers/blob/master/CONTRIBUTING.md 54 [`flatbuffers` tag]: https://stackoverflow.com/questions/tagged/flatbuffers 55 [FlatBuffers Google Group]: https://groups.google.com/forum/#!forum/flatbuffers 56 [FlatBuffers Issues Tracker]: http://github.com/google/flatbuffers/issues 57 [stackoverflow.com]: http://www.stackoverflow.com 58 [landing page]: http://google.github.io/flatbuffers 59 [LICENSE]: https://github.com/google/flatbuffers/blob/master/LICENSE.txt 60