Skip to content
This repository was archived by the owner on Jun 3, 2025. It is now read-only.

Commit 8d391a1

Browse files
committed
Anjay-java 2.7.0
0 parents  commit 8d391a1

File tree

156 files changed

+16193
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

156 files changed

+16193
-0
lines changed

.gitattributes

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#
2+
# https://help.github.com/articles/dealing-with-line-endings/
3+
#
4+
# These are explicitly windows files and should use crlf
5+
*.bat text eol=crlf
6+

.gitignore

Lines changed: 283 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,283 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/c,c++,java,cmake,python,gradle
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=c,c++,java,cmake,python,gradle
3+
4+
### C ###
5+
# Prerequisites
6+
*.d
7+
8+
# Object files
9+
*.o
10+
*.ko
11+
*.obj
12+
*.elf
13+
14+
# Linker output
15+
*.ilk
16+
*.map
17+
*.exp
18+
19+
# Precompiled Headers
20+
*.gch
21+
*.pch
22+
23+
# Libraries
24+
*.lib
25+
*.a
26+
*.la
27+
*.lo
28+
29+
# Shared objects (inc. Windows DLLs)
30+
*.dll
31+
*.so
32+
*.so.*
33+
*.dylib
34+
35+
# Executables
36+
*.exe
37+
*.out
38+
*.app
39+
*.i*86
40+
*.x86_64
41+
*.hex
42+
43+
# Debug files
44+
*.dSYM/
45+
*.su
46+
*.idb
47+
*.pdb
48+
49+
# Kernel Module Compile Results
50+
*.mod*
51+
*.cmd
52+
.tmp_versions/
53+
modules.order
54+
Module.symvers
55+
Mkfile.old
56+
dkms.conf
57+
58+
### C++ ###
59+
# Prerequisites
60+
61+
# Compiled Object files
62+
*.slo
63+
64+
# Precompiled Headers
65+
66+
# Compiled Dynamic libraries
67+
68+
# Fortran module files
69+
*.mod
70+
*.smod
71+
72+
# Compiled Static libraries
73+
*.lai
74+
75+
# Executables
76+
77+
### CMake ###
78+
CMakeLists.txt.user
79+
CMakeCache.txt
80+
CMakeFiles
81+
CMakeScripts
82+
Testing
83+
Makefile
84+
cmake_install.cmake
85+
install_manifest.txt
86+
compile_commands.json
87+
CTestTestfile.cmake
88+
_deps
89+
90+
### CMake Patch ###
91+
# External projects
92+
*-prefix/
93+
94+
### Java ###
95+
# Compiled class file
96+
*.class
97+
98+
# Log file
99+
*.log
100+
101+
# BlueJ files
102+
*.ctxt
103+
104+
# Mobile Tools for Java (J2ME)
105+
.mtj.tmp/
106+
107+
# Package Files #
108+
*.jar
109+
*.war
110+
*.nar
111+
*.ear
112+
*.zip
113+
*.tar.gz
114+
*.rar
115+
116+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
117+
hs_err_pid*
118+
119+
### Python ###
120+
# Byte-compiled / optimized / DLL files
121+
__pycache__/
122+
*.py[cod]
123+
*$py.class
124+
125+
# C extensions
126+
127+
# Distribution / packaging
128+
.Python
129+
build/
130+
develop-eggs/
131+
dist/
132+
downloads/
133+
eggs/
134+
.eggs/
135+
lib/
136+
lib64/
137+
parts/
138+
sdist/
139+
var/
140+
wheels/
141+
pip-wheel-metadata/
142+
share/python-wheels/
143+
*.egg-info/
144+
.installed.cfg
145+
*.egg
146+
MANIFEST
147+
148+
# PyInstaller
149+
# Usually these files are written by a python script from a template
150+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
151+
*.manifest
152+
*.spec
153+
154+
# Installer logs
155+
pip-log.txt
156+
pip-delete-this-directory.txt
157+
158+
# Unit test / coverage reports
159+
htmlcov/
160+
.tox/
161+
.nox/
162+
.coverage
163+
.coverage.*
164+
.cache
165+
nosetests.xml
166+
coverage.xml
167+
*.cover
168+
*.py,cover
169+
.hypothesis/
170+
.pytest_cache/
171+
pytestdebug.log
172+
173+
# Translations
174+
*.mo
175+
*.pot
176+
177+
# Django stuff:
178+
local_settings.py
179+
db.sqlite3
180+
db.sqlite3-journal
181+
182+
# Flask stuff:
183+
instance/
184+
.webassets-cache
185+
186+
# Scrapy stuff:
187+
.scrapy
188+
189+
# Sphinx documentation
190+
docs/_build/
191+
doc/_build/
192+
193+
# PyBuilder
194+
target/
195+
196+
# Jupyter Notebook
197+
.ipynb_checkpoints
198+
199+
# IPython
200+
profile_default/
201+
ipython_config.py
202+
203+
# pyenv
204+
.python-version
205+
206+
# pipenv
207+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
208+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
209+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
210+
# install all needed dependencies.
211+
#Pipfile.lock
212+
213+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
214+
__pypackages__/
215+
216+
# Celery stuff
217+
celerybeat-schedule
218+
celerybeat.pid
219+
220+
# SageMath parsed files
221+
*.sage.py
222+
223+
# Environments
224+
.env
225+
.venv
226+
env/
227+
venv/
228+
ENV/
229+
env.bak/
230+
venv.bak/
231+
232+
# Spyder project settings
233+
.spyderproject
234+
.spyproject
235+
236+
# Rope project settings
237+
.ropeproject
238+
239+
# mkdocs documentation
240+
/site
241+
242+
# mypy
243+
.mypy_cache/
244+
.dmypy.json
245+
dmypy.json
246+
247+
# Pyre type checker
248+
.pyre/
249+
250+
# pytype static type analyzer
251+
.pytype/
252+
253+
### Gradle ###
254+
.gradle
255+
256+
# Ignore Gradle GUI config
257+
gradle-app.setting
258+
259+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
260+
!gradle-wrapper.jar
261+
262+
# Cache of project
263+
.gradletasknamecache
264+
265+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
266+
# gradle/wrapper/gradle-wrapper.properties
267+
268+
### Gradle Patch ###
269+
**/build/
270+
271+
# End of https://www.toptal.com/developers/gitignore/api/c,c++,java,cmake,python,gradle
272+
build/*
273+
.vscode/*
274+
doc/javadoc/*
275+
CMakeDoxyfile.in
276+
CMakeDoxygenDefaults.cmake
277+
CPackConfig.cmake
278+
CPackSourceConfig.cmake
279+
bindings/distributions/*
280+
bindings/docs/*
281+
bindings/generated/*
282+
bindings/scripts/*
283+
bindings/tmp/*

.gitmodules

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[submodule "deps/anjay"]
2+
path = deps/anjay
3+
url = https://github.com/AVSystem/Anjay.git
4+
[submodule "deps/jni.hpp"]
5+
path = deps/jni.hpp
6+
url = https://github.com/mapbox/jni.hpp.git
7+
[submodule "deps/mbedtls"]
8+
path = deps/mbedtls
9+
url = https://github.com/ARMmbed/mbedtls

0 commit comments

Comments
 (0)