Skip to content

Commit 6478984

Browse files
committed
open source under AGPL v.3
0 parents  commit 6478984

File tree

427 files changed

+13282
-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.

427 files changed

+13282
-0
lines changed

.gitignore

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
bin
2+
gen
3+
obj
4+
libs
5+
local.properties
6+
.DS_Store
7+
.metadata
8+
.settings
9+
*~
10+
11+
12+
### Gradle template
13+
.gradle
14+
build/
15+
16+
# Ignore Gradle GUI config
17+
gradle-app.setting
18+
19+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
20+
!gradle-wrapper.jar
21+
22+
# Cache of project
23+
.gradletasknamecache
24+
25+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
26+
# gradle/wrapper/gradle-wrapper.properties
27+
28+
29+
### Android template
30+
# Built application files
31+
*.apk
32+
*.ap_
33+
34+
# Files for the ART/Dalvik VM
35+
*.dex
36+
37+
# Java class files
38+
*.class
39+
40+
# Generated files
41+
bin/
42+
gen/
43+
out/
44+
45+
# Gradle files
46+
.gradle/
47+
48+
# Local configuration file (sdk path, etc)
49+
50+
# Proguard folder generated by Eclipse
51+
proguard/
52+
53+
# Log Files
54+
*.log
55+
56+
# Android Studio Navigation editor temp files
57+
.navigation/
58+
59+
# Android Studio captures folder
60+
captures/
61+
62+
# Intellij
63+
*.iml
64+
.idea
65+
66+
# Keystore files
67+
*.jks
68+
keystore.properties

CONTRIBUTING.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
TODO write guide-lines for contributions.

CONTRIBUTORS.md

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
//TODO add a TOC
2+
3+
# Original author
4+
5+
@protolambda
6+
7+
8+
# Maintainer(s)
9+
10+
@protolambda
11+
12+
13+
# Main contributors
14+
15+
...
16+
17+
18+
19+
# Contributors
20+
21+
...
22+
23+

0 commit comments

Comments
 (0)