Skip to content

Commit 217f23f

Browse files
author
developersancho
committed
created project
0 parents  commit 217f23f

37 files changed

+1142
-0
lines changed

.gitignore

+140
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
1+
# Created by https://www.gitignore.io/api/androidstudio
2+
# Edit at https://www.gitignore.io/?templates=androidstudio
3+
4+
### AndroidStudio ###
5+
# Covers files to be ignored for android development using Android Studio.
6+
7+
# Built application files
8+
*.apk
9+
*.ap_
10+
11+
# Files for the ART/Dalvik VM
12+
*.dex
13+
14+
# Java class files
15+
*.class
16+
17+
# Generated files
18+
bin/
19+
gen/
20+
out/
21+
22+
# Gradle files
23+
.gradle
24+
.gradle/
25+
build/
26+
27+
# Signing files
28+
.signing/
29+
30+
# Local configuration file (sdk path, etc)
31+
local.properties
32+
33+
# Proguard folder generated by Eclipse
34+
proguard/
35+
36+
# Log Files
37+
*.log
38+
39+
# Android Studio
40+
/*/build/
41+
/*/local.properties
42+
/*/out
43+
/*/*/build
44+
/*/*/production
45+
captures/
46+
.navigation/
47+
*.ipr
48+
*~
49+
*.swp
50+
51+
# Android Patch
52+
gen-external-apklibs
53+
54+
# External native build folder generated in Android Studio 2.2 and later
55+
.externalNativeBuild
56+
57+
# NDK
58+
obj/
59+
60+
# IntelliJ IDEA
61+
*.iml
62+
*.iws
63+
/out/
64+
65+
# User-specific configurations
66+
.idea/caches/
67+
.idea/libraries/
68+
.idea/shelf/
69+
.idea/workspace.xml
70+
.idea/tasks.xml
71+
.idea/.name
72+
.idea/compiler.xml
73+
.idea/copyright/profiles_settings.xml
74+
.idea/encodings.xml
75+
.idea/misc.xml
76+
.idea/modules.xml
77+
.idea/scopes/scope_settings.xml
78+
.idea/dictionaries
79+
.idea/vcs.xml
80+
.idea/jsLibraryMappings.xml
81+
.idea/datasources.xml
82+
.idea/dataSources.ids
83+
.idea/sqlDataSources.xml
84+
.idea/dynamic.xml
85+
.idea/uiDesigner.xml
86+
.idea/assetWizardSettings.xml
87+
88+
# OS-specific files
89+
.DS_Store
90+
.DS_Store?
91+
._*
92+
.Spotlight-V100
93+
.Trashes
94+
ehthumbs.db
95+
Thumbs.db
96+
97+
# Legacy Eclipse project files
98+
.classpath
99+
.project
100+
.cproject
101+
.settings/
102+
103+
# Mobile Tools for Java (J2ME)
104+
.mtj.tmp/
105+
106+
# Package Files #
107+
*.war
108+
*.ear
109+
110+
# virtual machine crash logs (Reference: http://www.java.com/en/download/help/error_hotspot.xml)
111+
hs_err_pid*
112+
113+
## Plugin-specific files:
114+
115+
# mpeltonen/sbt-idea plugin
116+
.idea_modules/
117+
118+
# JIRA plugin
119+
atlassian-ide-plugin.xml
120+
121+
# Mongo Explorer plugin
122+
.idea/mongoSettings.xml
123+
124+
# Crashlytics plugin (for Android Studio and IntelliJ)
125+
com_crashlytics_export_strings.xml
126+
crashlytics.properties
127+
crashlytics-build.properties
128+
fabric.properties
129+
130+
### AndroidStudio Patch ###
131+
132+
!/gradle/wrapper/gradle-wrapper.jar
133+
134+
# End of https://www.gitignore.io/api/androidstudio
135+
136+
# Variant
137+
debug
138+
release
139+
staging
140+

.idea/codeStyles/Project.xml

+122
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/codeStyleConfig.xml

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

+19
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations.xml

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)