Skip to content

Commit 17901ce

Browse files
committed
Add Sample Project for DataBinding
1 parent bee72af commit 17901ce

40 files changed

+1485
-0
lines changed

DatabindingExample/.gitignore

Lines changed: 269 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,269 @@
1+
*.iml
2+
.gradle
3+
/local.properties
4+
/.idea/caches
5+
/.idea/libraries
6+
/.idea/modules.xml
7+
/.idea/workspace.xml
8+
/.idea/navEditor.xml
9+
/.idea/assetWizardSettings.xml
10+
.DS_Store
11+
/build
12+
/captures
13+
.externalNativeBuild
14+
.cxx
15+
16+
# Created by https://www.toptal.com/developers/gitignore/api/android,java,kotlin,intellij,gradle
17+
# Edit at https://www.toptal.com/developers/gitignore?templates=android,java,kotlin,intellij,gradle
18+
19+
### Android ###
20+
# Built application files
21+
*.apk
22+
*.aar
23+
*.ap_
24+
*.aab
25+
26+
# Files for the ART/Dalvik VM
27+
*.dex
28+
29+
# Java class files
30+
*.class
31+
32+
# Generated files
33+
bin/
34+
gen/
35+
out/
36+
# Uncomment the following line in case you need and you don't have the release build type files in your app
37+
# release/
38+
39+
# Gradle files
40+
.gradle/
41+
build/
42+
43+
# Local configuration file (sdk path, etc)
44+
local.properties
45+
46+
# Proguard folder generated by Eclipse
47+
proguard/
48+
49+
# Log Files
50+
*.log
51+
52+
# Android Studio Navigation editor temp files
53+
.navigation/
54+
55+
# Android Studio captures folder
56+
captures/
57+
58+
# IntelliJ
59+
*.iml
60+
.idea/workspace.xml
61+
.idea/tasks.xml
62+
.idea/gradle.xml
63+
.idea/assetWizardSettings.xml
64+
.idea/dictionaries
65+
.idea/libraries
66+
# Android Studio 3 in .gitignore file.
67+
.idea/caches
68+
.idea/modules.xml
69+
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
70+
.idea/navEditor.xml
71+
72+
# Keystore files
73+
# Uncomment the following lines if you do not want to check your keystore files in.
74+
#*.jks
75+
#*.keystore
76+
77+
# External native build folder generated in Android Studio 2.2 and later
78+
.externalNativeBuild
79+
.cxx/
80+
81+
# Google Services (e.g. APIs or Firebase)
82+
# google-services.json
83+
84+
# Freeline
85+
freeline.py
86+
freeline/
87+
freeline_project_description.json
88+
89+
# fastlane
90+
fastlane/report.xml
91+
fastlane/Preview.html
92+
fastlane/screenshots
93+
fastlane/test_output
94+
fastlane/readme.md
95+
96+
# Version control
97+
vcs.xml
98+
99+
# lint
100+
lint/intermediates/
101+
lint/generated/
102+
lint/outputs/
103+
lint/tmp/
104+
# lint/reports/
105+
106+
### Android Patch ###
107+
gen-external-apklibs
108+
output.json
109+
110+
# Replacement of .externalNativeBuild directories introduced
111+
# with Android Studio 3.5.
112+
113+
### Intellij ###
114+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
115+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
116+
117+
# User-specific stuff
118+
.idea/**/workspace.xml
119+
.idea/**/tasks.xml
120+
.idea/**/usage.statistics.xml
121+
.idea/**/dictionaries
122+
.idea/**/shelf
123+
124+
# Generated files
125+
.idea/**/contentModel.xml
126+
127+
# Sensitive or high-churn files
128+
.idea/**/dataSources/
129+
.idea/**/dataSources.ids
130+
.idea/**/dataSources.local.xml
131+
.idea/**/sqlDataSources.xml
132+
.idea/**/dynamic.xml
133+
.idea/**/uiDesigner.xml
134+
.idea/**/dbnavigator.xml
135+
136+
# Gradle
137+
.idea/**/gradle.xml
138+
.idea/**/libraries
139+
140+
# Gradle and Maven with auto-import
141+
# When using Gradle or Maven with auto-import, you should exclude module files,
142+
# since they will be recreated, and may cause churn. Uncomment if using
143+
# auto-import.
144+
# .idea/artifacts
145+
# .idea/compiler.xml
146+
# .idea/jarRepositories.xml
147+
# .idea/modules.xml
148+
# .idea/*.iml
149+
# .idea/modules
150+
# *.iml
151+
# *.ipr
152+
153+
# CMake
154+
cmake-build-*/
155+
156+
# Mongo Explorer plugin
157+
.idea/**/mongoSettings.xml
158+
159+
# File-based project format
160+
*.iws
161+
162+
# IntelliJ
163+
164+
# mpeltonen/sbt-idea plugin
165+
.idea_modules/
166+
167+
# JIRA plugin
168+
atlassian-ide-plugin.xml
169+
170+
# Cursive Clojure plugin
171+
.idea/replstate.xml
172+
173+
# Crashlytics plugin (for Android Studio and IntelliJ)
174+
com_crashlytics_export_strings.xml
175+
crashlytics.properties
176+
crashlytics-build.properties
177+
fabric.properties
178+
179+
# Editor-based Rest Client
180+
.idea/httpRequests
181+
182+
# Android studio 3.1+ serialized cache file
183+
.idea/caches/build_file_checksums.ser
184+
185+
### Intellij Patch ###
186+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
187+
188+
# *.iml
189+
# modules.xml
190+
# .idea/misc.xml
191+
# *.ipr
192+
193+
# Sonarlint plugin
194+
# https://plugins.jetbrains.com/plugin/7973-sonarlint
195+
.idea/**/sonarlint/
196+
197+
# SonarQube Plugin
198+
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
199+
.idea/**/sonarIssues.xml
200+
201+
# Markdown Navigator plugin
202+
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
203+
.idea/**/markdown-navigator.xml
204+
.idea/**/markdown-navigator-enh.xml
205+
.idea/**/markdown-navigator/
206+
207+
# Cache file creation bug
208+
# See https://youtrack.jetbrains.com/issue/JBR-2257
209+
.idea/$CACHE_FILE$
210+
211+
# CodeStream plugin
212+
# https://plugins.jetbrains.com/plugin/12206-codestream
213+
.idea/codestream.xml
214+
215+
### Java ###
216+
# Compiled class file
217+
218+
# Log file
219+
220+
# BlueJ files
221+
*.ctxt
222+
223+
# Mobile Tools for Java (J2ME)
224+
.mtj.tmp/
225+
226+
# Package Files #
227+
*.jar
228+
*.war
229+
*.nar
230+
*.ear
231+
*.zip
232+
*.tar.gz
233+
*.rar
234+
235+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
236+
hs_err_pid*
237+
238+
### Kotlin ###
239+
# Compiled class file
240+
241+
# Log file
242+
243+
# BlueJ files
244+
245+
# Mobile Tools for Java (J2ME)
246+
247+
# Package Files #
248+
249+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
250+
251+
### Gradle ###
252+
.gradle
253+
254+
# Ignore Gradle GUI config
255+
gradle-app.setting
256+
257+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
258+
!gradle-wrapper.jar
259+
260+
# Cache of project
261+
.gradletasknamecache
262+
263+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
264+
# gradle/wrapper/gradle-wrapper.properties
265+
266+
### Gradle Patch ###
267+
**/build/
268+
269+
# End of https://www.toptal.com/developers/gitignore/api/android,java,kotlin,intellij,gradle

0 commit comments

Comments
 (0)