Skip to content

Commit 4d8c8c5

Browse files
committed
Merge branch 'master' of github.com:adamint/spotify-web-api-kotlin
2 parents d05abb7 + 78cb220 commit 4d8c8c5

File tree

123 files changed

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

123 files changed

+16065
-0
lines changed

.DS_Store

6 KB
Binary file not shown.

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Desktop (please complete the following information):**
27+
- OS: [e.g. iOS]
28+
- Browser [e.g. chrome, safari]
29+
- Version [e.g. 22]
30+
31+
**Smartphone (please complete the following information):**
32+
- Device: [e.g. iPhone6]
33+
- OS: [e.g. iOS8.1]
34+
- Browser [e.g. stock browser, safari]
35+
- Version [e.g. 22]
36+
37+
**Additional context**
38+
Add any other context about the problem here.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.gitignore

Lines changed: 337 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,337 @@
1+
2+
.DS_STORE
3+
# Created by https://www.toptal.com/developers/gitignore/api/gradle,kotlin,android,intellij+all,node
4+
# Edit at https://www.toptal.com/developers/gitignore?templates=gradle,kotlin,android,intellij+all,node
5+
6+
### Android ###
7+
# Built application files
8+
*.apk
9+
*.aar
10+
*.ap_
11+
*.aab
12+
13+
# Files for the ART/Dalvik VM
14+
*.dex
15+
16+
# Java class files
17+
*.class
18+
19+
# Generated files
20+
bin/
21+
gen/
22+
out/
23+
# Uncomment the following line in case you need and you don't have the release build type files in your app
24+
# release/
25+
26+
# Gradle files
27+
.gradle/
28+
build/
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 Navigation editor temp files
40+
.navigation/
41+
42+
# Android Studio captures folder
43+
captures/
44+
45+
# IntelliJ
46+
*.iml
47+
.idea/workspace.xml
48+
.idea/tasks.xml
49+
.idea/gradle.xml
50+
.idea/assetWizardSettings.xml
51+
.idea/dictionaries
52+
.idea/libraries
53+
# Android Studio 3 in .gitignore file.
54+
.idea/caches
55+
.idea/modules.xml
56+
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
57+
.idea/navEditor.xml
58+
59+
# Keystore files
60+
# Uncomment the following lines if you do not want to check your keystore files in.
61+
#*.jks
62+
#*.keystore
63+
64+
# External native build folder generated in Android Studio 2.2 and later
65+
.externalNativeBuild
66+
.cxx/
67+
68+
# Google Services (e.g. APIs or Firebase)
69+
# google-services.json
70+
71+
# Freeline
72+
freeline.py
73+
freeline/
74+
freeline_project_description.json
75+
76+
# fastlane
77+
fastlane/report.xml
78+
fastlane/Preview.html
79+
fastlane/screenshots
80+
fastlane/test_output
81+
fastlane/readme.md
82+
83+
# Version control
84+
vcs.xml
85+
86+
# lint
87+
lint/intermediates/
88+
lint/generated/
89+
lint/outputs/
90+
lint/tmp/
91+
# lint/reports/
92+
93+
### Android Patch ###
94+
gen-external-apklibs
95+
output.json
96+
97+
# Replacement of .externalNativeBuild directories introduced
98+
# with Android Studio 3.5.
99+
100+
### Intellij+all ###
101+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
102+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
103+
104+
# User-specific stuff
105+
.idea/**/workspace.xml
106+
.idea/**/tasks.xml
107+
.idea/**/usage.statistics.xml
108+
.idea/**/dictionaries
109+
.idea/**/shelf
110+
111+
# Generated files
112+
.idea/**/contentModel.xml
113+
114+
# Sensitive or high-churn files
115+
.idea/**/dataSources/
116+
.idea/**/dataSources.ids
117+
.idea/**/dataSources.local.xml
118+
.idea/**/sqlDataSources.xml
119+
.idea/**/dynamic.xml
120+
.idea/**/uiDesigner.xml
121+
.idea/**/dbnavigator.xml
122+
123+
# Gradle
124+
.idea/**/gradle.xml
125+
.idea/**/libraries
126+
127+
# Gradle and Maven with auto-import
128+
# When using Gradle or Maven with auto-import, you should exclude module files,
129+
# since they will be recreated, and may cause churn. Uncomment if using
130+
# auto-import.
131+
# .idea/artifacts
132+
# .idea/compiler.xml
133+
# .idea/jarRepositories.xml
134+
# .idea/modules.xml
135+
# .idea/*.iml
136+
# .idea/modules
137+
# *.iml
138+
# *.ipr
139+
140+
# CMake
141+
cmake-build-*/
142+
143+
# Mongo Explorer plugin
144+
.idea/**/mongoSettings.xml
145+
146+
# File-based project format
147+
*.iws
148+
149+
# IntelliJ
150+
151+
# mpeltonen/sbt-idea plugin
152+
.idea_modules/
153+
154+
# JIRA plugin
155+
atlassian-ide-plugin.xml
156+
157+
# Cursive Clojure plugin
158+
.idea/replstate.xml
159+
160+
# Crashlytics plugin (for Android Studio and IntelliJ)
161+
com_crashlytics_export_strings.xml
162+
crashlytics.properties
163+
crashlytics-build.properties
164+
fabric.properties
165+
166+
# Editor-based Rest Client
167+
.idea/httpRequests
168+
169+
# Android studio 3.1+ serialized cache file
170+
.idea/caches/build_file_checksums.ser
171+
172+
### Intellij+all Patch ###
173+
# Ignores the whole .idea folder and all .iml files
174+
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
175+
176+
.idea/
177+
178+
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
179+
180+
modules.xml
181+
.idea/misc.xml
182+
*.ipr
183+
184+
# Sonarlint plugin
185+
.idea/sonarlint
186+
187+
### Kotlin ###
188+
# Compiled class file
189+
190+
# Log file
191+
192+
# BlueJ files
193+
*.ctxt
194+
195+
# Mobile Tools for Java (J2ME)
196+
.mtj.tmp/
197+
198+
# Package Files #
199+
*.jar
200+
*.war
201+
*.nar
202+
*.ear
203+
*.zip
204+
*.tar.gz
205+
*.rar
206+
207+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
208+
hs_err_pid*
209+
210+
### Node ###
211+
# Logs
212+
logs
213+
npm-debug.log*
214+
yarn-debug.log*
215+
yarn-error.log*
216+
lerna-debug.log*
217+
218+
# Diagnostic reports (https://nodejs.org/api/report.html)
219+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
220+
221+
# Runtime data
222+
pids
223+
*.pid
224+
*.seed
225+
*.pid.lock
226+
227+
# Directory for instrumented libs generated by jscoverage/JSCover
228+
lib-cov
229+
230+
# Coverage directory used by tools like istanbul
231+
coverage
232+
*.lcov
233+
234+
# nyc test coverage
235+
.nyc_output
236+
237+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
238+
.grunt
239+
240+
# Bower dependency directory (https://bower.io/)
241+
bower_components
242+
243+
# node-waf configuration
244+
.lock-wscript
245+
246+
# Compiled binary addons (https://nodejs.org/api/addons.html)
247+
build/Release
248+
249+
# Dependency directories
250+
node_modules/
251+
jspm_packages/
252+
253+
# TypeScript v1 declaration files
254+
typings/
255+
256+
# TypeScript cache
257+
*.tsbuildinfo
258+
259+
# Optional npm cache directory
260+
.npm
261+
262+
# Optional eslint cache
263+
.eslintcache
264+
265+
# Microbundle cache
266+
.rpt2_cache/
267+
.rts2_cache_cjs/
268+
.rts2_cache_es/
269+
.rts2_cache_umd/
270+
271+
# Optional REPL history
272+
.node_repl_history
273+
274+
# Output of 'npm pack'
275+
*.tgz
276+
277+
# Yarn Integrity file
278+
.yarn-integrity
279+
280+
# dotenv environment variables file
281+
.env
282+
.env.test
283+
284+
# parcel-bundler cache (https://parceljs.org/)
285+
.cache
286+
287+
# Next.js build output
288+
.next
289+
290+
# Nuxt.js build / generate output
291+
.nuxt
292+
dist
293+
294+
# Gatsby files
295+
.cache/
296+
# Comment in the public line in if your project uses Gatsby and not Next.js
297+
# https://nextjs.org/blog/next-9-1#public-directory-support
298+
# public
299+
300+
# vuepress build output
301+
.vuepress/dist
302+
303+
# Serverless directories
304+
.serverless/
305+
306+
# FuseBox cache
307+
.fusebox/
308+
309+
# DynamoDB Local files
310+
.dynamodb/
311+
312+
# TernJS port file
313+
.tern-port
314+
315+
# Stores VSCode versions used for testing VSCode extensions
316+
.vscode-test
317+
318+
### Gradle ###
319+
.gradle
320+
321+
# Ignore Gradle GUI config
322+
gradle-app.setting
323+
324+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
325+
!gradle-wrapper.jar
326+
327+
# Cache of project
328+
.gradletasknamecache
329+
330+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
331+
# gradle/wrapper/gradle-wrapper.properties
332+
333+
### Gradle Patch ###
334+
**/build/
335+
336+
# End of https://www.toptal.com/developers/gitignore/api/gradle,kotlin,android,intellij+all,node
337+
docs

0 commit comments

Comments
 (0)