Skip to content

Commit fef1a57

Browse files
authored
Merge pull request #9 from ptkNktq/release
Release
2 parents 013f5cc + 05a871e commit fef1a57

File tree

121 files changed

+3494
-797
lines changed

Some content is hidden

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

121 files changed

+3494
-797
lines changed

AndroidApp/.gitignore

Lines changed: 214 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,214 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/android,androidstudio
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=android,androidstudio
3+
4+
### Android ###
5+
# Built application files
6+
*.apk
7+
*.aar
8+
*.ap_
9+
*.aab
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+
# Uncomment the following line in case you need and you don't have the release build type files in your app
22+
# release/
23+
24+
# Gradle files
25+
.gradle/
26+
build/
27+
28+
# Local configuration file (sdk path, etc)
29+
local.properties
30+
31+
# Proguard folder generated by Eclipse
32+
proguard/
33+
34+
# Log Files
35+
*.log
36+
37+
# Android Studio Navigation editor temp files
38+
.navigation/
39+
40+
# Android Studio captures folder
41+
captures/
42+
43+
# IntelliJ
44+
*.iml
45+
.idea/workspace.xml
46+
.idea/tasks.xml
47+
.idea/gradle.xml
48+
.idea/assetWizardSettings.xml
49+
.idea/dictionaries
50+
.idea/libraries
51+
# Android Studio 3 in .gitignore file.
52+
.idea/caches
53+
.idea/modules.xml
54+
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
55+
.idea/navEditor.xml
56+
57+
# Keystore files
58+
# Uncomment the following lines if you do not want to check your keystore files in.
59+
#*.jks
60+
#*.keystore
61+
62+
# External native build folder generated in Android Studio 2.2 and later
63+
.externalNativeBuild
64+
.cxx/
65+
66+
# Google Services (e.g. APIs or Firebase)
67+
# google-services.json
68+
69+
# Freeline
70+
freeline.py
71+
freeline/
72+
freeline_project_description.json
73+
74+
# fastlane
75+
fastlane/report.xml
76+
fastlane/Preview.html
77+
fastlane/screenshots
78+
fastlane/test_output
79+
fastlane/readme.md
80+
81+
# Version control
82+
vcs.xml
83+
84+
# lint
85+
lint/intermediates/
86+
lint/generated/
87+
lint/outputs/
88+
lint/tmp/
89+
# lint/reports/
90+
91+
### Android Patch ###
92+
gen-external-apklibs
93+
output.json
94+
95+
# Replacement of .externalNativeBuild directories introduced
96+
# with Android Studio 3.5.
97+
98+
### AndroidStudio ###
99+
# Covers files to be ignored for android development using Android Studio.
100+
101+
# Built application files
102+
103+
# Files for the ART/Dalvik VM
104+
105+
# Java class files
106+
107+
# Generated files
108+
109+
# Gradle files
110+
.gradle
111+
112+
# Signing files
113+
.signing/
114+
115+
# Local configuration file (sdk path, etc)
116+
117+
# Proguard folder generated by Eclipse
118+
119+
# Log Files
120+
121+
# Android Studio
122+
/*/build/
123+
/*/local.properties
124+
/*/out
125+
/*/*/build
126+
/*/*/production
127+
*.ipr
128+
*~
129+
*.swp
130+
131+
# Keystore files
132+
*.jks
133+
*.keystore
134+
135+
# Google Services (e.g. APIs or Firebase)
136+
# google-services.json
137+
138+
# Android Patch
139+
140+
# External native build folder generated in Android Studio 2.2 and later
141+
142+
# NDK
143+
obj/
144+
145+
# IntelliJ IDEA
146+
*.iws
147+
/out/
148+
149+
# User-specific configurations
150+
.idea/caches/
151+
.idea/libraries/
152+
.idea/shelf/
153+
.idea/.name
154+
.idea/compiler.xml
155+
.idea/copyright/profiles_settings.xml
156+
.idea/encodings.xml
157+
.idea/misc.xml
158+
.idea/scopes/scope_settings.xml
159+
.idea/vcs.xml
160+
.idea/jsLibraryMappings.xml
161+
.idea/datasources.xml
162+
.idea/dataSources.ids
163+
.idea/sqlDataSources.xml
164+
.idea/dynamic.xml
165+
.idea/uiDesigner.xml
166+
.idea/jarRepositories.xml
167+
168+
# OS-specific files
169+
.DS_Store
170+
.DS_Store?
171+
._*
172+
.Spotlight-V100
173+
.Trashes
174+
ehthumbs.db
175+
Thumbs.db
176+
177+
# Legacy Eclipse project files
178+
.classpath
179+
.project
180+
.cproject
181+
.settings/
182+
183+
# Mobile Tools for Java (J2ME)
184+
.mtj.tmp/
185+
186+
# Package Files #
187+
*.war
188+
*.ear
189+
190+
# virtual machine crash logs (Reference: http://www.java.com/en/download/help/error_hotspot.xml)
191+
hs_err_pid*
192+
193+
## Plugin-specific files:
194+
195+
# mpeltonen/sbt-idea plugin
196+
.idea_modules/
197+
198+
# JIRA plugin
199+
atlassian-ide-plugin.xml
200+
201+
# Mongo Explorer plugin
202+
.idea/mongoSettings.xml
203+
204+
# Crashlytics plugin (for Android Studio and IntelliJ)
205+
com_crashlytics_export_strings.xml
206+
crashlytics.properties
207+
crashlytics-build.properties
208+
fabric.properties
209+
210+
### AndroidStudio Patch ###
211+
212+
!/gradle/wrapper/gradle-wrapper.jar
213+
214+
# End of https://www.toptal.com/developers/gitignore/api/android,androidstudio

AndroidApp/.idea/codeStyles/Project.xml

Lines changed: 138 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

AndroidApp/.idea/codeStyles/codeStyleConfig.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

AndroidApp/NotificationNotifier/.gitignore

Lines changed: 0 additions & 19 deletions
This file was deleted.

AndroidApp/NotificationNotifier/app/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)