Skip to content
This repository was archived by the owner on Jun 24, 2025. It is now read-only.

Commit 408d604

Browse files
authored
Updates to Mapbox 8.0.0
This is major version release. It contains A LOT of breaking changes.
1 parent e970a16 commit 408d604

59 files changed

Lines changed: 1288 additions & 786 deletions

Some content is hidden

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

.gitignore

Lines changed: 365 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,367 @@
1-
.gradle
2-
.idea
1+
2+
# Created by https://www.gitignore.io/api/git,linux,macos,gradle,android,windows,intellij,androidstudio
3+
# Edit at https://www.gitignore.io/?templates=git,linux,macos,gradle,android,windows,intellij,androidstudio
4+
5+
### Android ###
6+
# Built application files
7+
*.apk
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+
22+
# Gradle files
23+
.gradle/
24+
build/
25+
26+
# Local configuration file (sdk path, etc)
27+
local.properties
28+
29+
# Proguard folder generated by Eclipse
30+
proguard/
31+
32+
# Log Files
33+
*.log
34+
35+
# Android Studio Navigation editor temp files
36+
.navigation/
37+
38+
# Android Studio captures folder
39+
captures/
40+
41+
# IntelliJ
342
*.iml
4-
/local.properties
5-
/.idea/workspace.xml
6-
/.idea/libraries
43+
.idea/workspace.xml
44+
.idea/tasks.xml
45+
.idea/gradle.xml
46+
.idea/assetWizardSettings.xml
47+
.idea/dictionaries
48+
.idea/libraries
49+
.idea/caches
50+
# Android Studio 3 in .gitignore file.
51+
.idea/caches/build_file_checksums.ser
52+
.idea/modules.xml
53+
54+
# Keystore files
55+
# Uncomment the following lines if you do not want to check your keystore files in.
56+
#*.jks
57+
#*.keystore
58+
59+
# External native build folder generated in Android Studio 2.2 and later
60+
.externalNativeBuild
61+
62+
# Google Services (e.g. APIs or Firebase)
63+
# google-services.json
64+
65+
# Freeline
66+
freeline.py
67+
freeline/
68+
freeline_project_description.json
69+
70+
# fastlane
71+
fastlane/report.xml
72+
fastlane/Preview.html
73+
fastlane/screenshots
74+
fastlane/test_output
75+
fastlane/readme.md
76+
77+
# Version control
78+
vcs.xml
79+
80+
# lint
81+
lint/intermediates/
82+
lint/generated/
83+
lint/outputs/
84+
lint/tmp/
85+
# lint/reports/
86+
87+
### Android Patch ###
88+
gen-external-apklibs
89+
output.json
90+
91+
### AndroidStudio ###
92+
# Covers files to be ignored for android development using Android Studio.
93+
94+
# Built application files
95+
96+
# Files for the ART/Dalvik VM
97+
98+
# Java class files
99+
100+
# Generated files
101+
102+
# Gradle files
103+
.gradle
104+
105+
# Signing files
106+
.signing/
107+
108+
# Local configuration file (sdk path, etc)
109+
110+
# Proguard folder generated by Eclipse
111+
112+
# Log Files
113+
114+
# Android Studio
115+
/*/build/
116+
/*/local.properties
117+
/*/out
118+
/*/*/build
119+
/*/*/production
120+
*.ipr
121+
*~
122+
*.swp
123+
124+
# Android Patch
125+
126+
# External native build folder generated in Android Studio 2.2 and later
127+
128+
# NDK
129+
obj/
130+
131+
# IntelliJ IDEA
132+
*.iws
133+
/out/
134+
135+
# User-specific configurations
136+
.idea/caches/
137+
.idea/libraries/
138+
.idea/shelf/
139+
.idea/.name
140+
.idea/compiler.xml
141+
.idea/copyright/profiles_settings.xml
142+
.idea/encodings.xml
143+
.idea/misc.xml
144+
.idea/scopes/scope_settings.xml
145+
.idea/vcs.xml
146+
.idea/jsLibraryMappings.xml
147+
.idea/datasources.xml
148+
.idea/dataSources.ids
149+
.idea/sqlDataSources.xml
150+
.idea/dynamic.xml
151+
.idea/uiDesigner.xml
152+
153+
# OS-specific files
7154
.DS_Store
8-
/build
9-
*.apk
155+
.DS_Store?
156+
._*
157+
.Spotlight-V100
158+
.Trashes
159+
ehthumbs.db
160+
Thumbs.db
161+
162+
# Legacy Eclipse project files
163+
.classpath
164+
.project
165+
.cproject
166+
.settings/
167+
168+
# Mobile Tools for Java (J2ME)
169+
.mtj.tmp/
170+
171+
# Package Files #
172+
*.war
173+
*.ear
174+
175+
# virtual machine crash logs (Reference: http://www.java.com/en/download/help/error_hotspot.xml)
176+
hs_err_pid*
177+
178+
## Plugin-specific files:
179+
180+
# mpeltonen/sbt-idea plugin
181+
.idea_modules/
182+
183+
# JIRA plugin
184+
atlassian-ide-plugin.xml
185+
186+
# Mongo Explorer plugin
187+
.idea/mongoSettings.xml
188+
189+
# Crashlytics plugin (for Android Studio and IntelliJ)
190+
com_crashlytics_export_strings.xml
191+
crashlytics.properties
192+
crashlytics-build.properties
193+
fabric.properties
194+
195+
### AndroidStudio Patch ###
196+
197+
!/gradle/wrapper/gradle-wrapper.jar
198+
199+
### Git ###
200+
# Created by git for backups. To disable backups in Git:
201+
# $ git config --global mergetool.keepBackup false
202+
*.orig
203+
204+
# Created by git when using merge tools for conflicts
205+
*.BACKUP.*
206+
*.BASE.*
207+
*.LOCAL.*
208+
*.REMOTE.*
209+
*_BACKUP_*.txt
210+
*_BASE_*.txt
211+
*_LOCAL_*.txt
212+
*_REMOTE_*.txt
213+
214+
### Intellij ###
215+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
216+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
217+
218+
# User-specific stuff
219+
.idea/**/workspace.xml
220+
.idea/**/tasks.xml
221+
.idea/**/usage.statistics.xml
222+
.idea/**/dictionaries
223+
.idea/**/shelf
224+
225+
# Generated files
226+
.idea/**/contentModel.xml
227+
228+
# Sensitive or high-churn files
229+
.idea/**/dataSources/
230+
.idea/**/dataSources.ids
231+
.idea/**/dataSources.local.xml
232+
.idea/**/sqlDataSources.xml
233+
.idea/**/dynamic.xml
234+
.idea/**/uiDesigner.xml
235+
.idea/**/dbnavigator.xml
236+
237+
# Gradle
238+
.idea/**/gradle.xml
239+
.idea/**/libraries
240+
241+
# Gradle and Maven with auto-import
242+
# When using Gradle or Maven with auto-import, you should exclude module files,
243+
# since they will be recreated, and may cause churn. Uncomment if using
244+
# auto-import.
245+
# .idea/modules.xml
246+
# .idea/*.iml
247+
# .idea/modules
248+
249+
# CMake
250+
cmake-build-*/
251+
252+
# Mongo Explorer plugin
253+
.idea/**/mongoSettings.xml
254+
255+
# File-based project format
256+
257+
# IntelliJ
258+
259+
# mpeltonen/sbt-idea plugin
260+
261+
# JIRA plugin
262+
263+
# Cursive Clojure plugin
264+
.idea/replstate.xml
265+
266+
# Crashlytics plugin (for Android Studio and IntelliJ)
267+
268+
# Editor-based Rest Client
269+
.idea/httpRequests
270+
271+
# Android studio 3.1+ serialized cache file
272+
273+
# JetBrains templates
274+
**___jb_tmp___
275+
276+
### Intellij Patch ###
277+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
278+
279+
# *.iml
280+
# modules.xml
281+
# .idea/misc.xml
282+
# *.ipr
283+
284+
# Sonarlint plugin
285+
.idea/sonarlint
286+
287+
### Linux ###
288+
289+
# temporary files which can be created if a process still has a handle open of a deleted file
290+
.fuse_hidden*
291+
292+
# KDE directory preferences
293+
.directory
294+
295+
# Linux trash folder which might appear on any partition or disk
296+
.Trash-*
297+
298+
# .nfs files are created when an open file is removed but is still being accessed
299+
.nfs*
300+
301+
### macOS ###
302+
# General
303+
.AppleDouble
304+
.LSOverride
305+
306+
# Icon must end with two \r
307+
Icon
308+
309+
# Thumbnails
310+
311+
# Files that might appear in the root of a volume
312+
.DocumentRevisions-V100
313+
.fseventsd
314+
.TemporaryItems
315+
.VolumeIcon.icns
316+
.com.apple.timemachine.donotpresent
317+
318+
# Directories potentially created on remote AFP share
319+
.AppleDB
320+
.AppleDesktop
321+
Network Trash Folder
322+
Temporary Items
323+
.apdisk
324+
325+
### Windows ###
326+
# Windows thumbnail cache files
327+
ehthumbs_vista.db
328+
329+
# Dump file
330+
*.stackdump
331+
332+
# Folder config file
333+
[Dd]esktop.ini
334+
335+
# Recycle Bin used on file shares
336+
$RECYCLE.BIN/
337+
338+
# Windows Installer files
339+
*.cab
340+
*.msi
341+
*.msix
342+
*.msm
343+
*.msp
344+
345+
# Windows shortcuts
346+
*.lnk
347+
348+
### Gradle ###
349+
350+
# Ignore Gradle GUI config
351+
gradle-app.setting
352+
353+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
354+
!gradle-wrapper.jar
355+
356+
# Cache of project
357+
.gradletasknamecache
358+
359+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
360+
# gradle/wrapper/gradle-wrapper.properties
361+
362+
### Gradle Patch ###
363+
**/build/
364+
365+
# End of https://www.gitignore.io/api/git,linux,macos,gradle,android,windows,intellij,androidstudio
366+
367+
api_keys.xml

.idea/runConfigurations.xml

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

0 commit comments

Comments
 (0)