Skip to content

Commit b0b52c5

Browse files
committedJan 16, 2017
[setup] first commit to library. Reimplementing Android databinding constructs but in Kotlin.
0 parents  commit b0b52c5

File tree

41 files changed

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

41 files changed

+1437
-0
lines changed
 

‎.gitignore

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# built application files
2+
*.apk
3+
*.ap_
4+
5+
# files for the dex VM
6+
*.dex
7+
8+
# Java class files
9+
*.class
10+
11+
# generated files
12+
bin/
13+
gen/
14+
15+
# Gradle files
16+
.gradle/
17+
build/
18+
19+
# Local configuration file (sdk path, etc)
20+
local.properties
21+
22+
# Eclipse project files
23+
.classpath
24+
.project
25+
26+
# Proguard folder generated by Eclipse
27+
proguard/
28+
29+
# Intellij project files
30+
*.iml
31+
*.ipr
32+
*.iws
33+
.idea/
34+
crashlytics-build.properties

‎app/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

0 commit comments

Comments
 (0)
Please sign in to comment.