Skip to content

Commit 6486a85

Browse files
authored
Merge branch 'main' into feature/cmake-preset-from-file
2 parents 9782648 + a6199ee commit 6486a85

File tree

92 files changed

+1282
-9790
lines changed

Some content is hidden

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

92 files changed

+1282
-9790
lines changed

.github/ISSUE_TEMPLATE/--general-question.md

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

.github/ISSUE_TEMPLATE/feature-request.md

Lines changed: 0 additions & 29 deletions
This file was deleted.
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
name: ➕ Feature Request
2+
description: If you have a feature request for the Firebase Unity SDK, file it here.
3+
title: "[FR]: "
4+
labels: ["new", "type: feature request"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
A good feature request ideally
10+
* is either immediately obvious (e.g. _Add Sign in with Apple support_), or
11+
* starts with a use case that is not achievable with the existing
12+
Firebase API and includes a brief API proposal that would make the use
13+
case possible.
14+
- type: textarea
15+
attributes:
16+
label: Description
17+
description: |
18+
Describe the feature request. Provide the following:
19+
1. Use case
20+
2. How the Firebase Unity SDK _currently_ handles it
21+
3. How you propose the Firebase Unity SDK _should_ handle it
22+
placeholder: |
23+
1. ...
24+
2. ...
25+
3. ...
26+
validations:
27+
required: true
28+
- type: textarea
29+
attributes:
30+
label: API Proposal
31+
description: |
32+
If your feature request requires API changes, describe the changes and the
33+
new API's signature and usage.
34+
validations:
35+
required: false
36+
- type: dropdown
37+
attributes:
38+
label: Firebase Product(s)
39+
description: Which Firebase products does this feature request apply to?
40+
multiple: true
41+
options:
42+
- All
43+
- AB Testing
44+
- Analytics
45+
- App Check
46+
- App Distribution
47+
- Authentication
48+
- Crashlytics
49+
- Database
50+
- DynamicLinks
51+
- Firestore
52+
- Functions
53+
- In-App Messaging
54+
- Installations
55+
- ML Model Downloader
56+
- Messaging
57+
- Performance
58+
- Remote Config
59+
- Storage
60+
- type: dropdown
61+
attributes:
62+
label: Targeted Platform(s)
63+
description: What platform(s) is the feature request for?
64+
multiple: true
65+
options:
66+
- Apple Platforms
67+
- Android
68+
- Desktop
Lines changed: 133 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,133 @@
1+
name: ❓ General question
2+
description: Please use this template to report issues with the Firebase Unity SDK.
3+
title: '[Question] '
4+
labels:
5+
- new
6+
- 'type: question'
7+
body:
8+
- type: textarea
9+
attributes:
10+
label: What is your question?
11+
description: Describe the question.
12+
validations:
13+
required: true
14+
- type: input
15+
attributes:
16+
label: Firebase Unity SDK Version
17+
description: What version of the Firebase Unity SDK has this issue?
18+
placeholder: 11.8.1
19+
validations:
20+
required: true
21+
- type: input
22+
attributes:
23+
label: Unity editor version
24+
description: What version of the Unity editor is being used?
25+
placeholder: 2022.3.13f1
26+
validations:
27+
required: true
28+
- type: dropdown
29+
attributes:
30+
label: Installation Method
31+
description: How did you add Firebase to your project?
32+
options:
33+
- .unitypackage
34+
- Unity Package Manager
35+
validations:
36+
required: true
37+
- type: dropdown
38+
attributes:
39+
label: Problematic Firebase Component(s)
40+
description: Which Firebase components are causing issues?
41+
multiple: true
42+
options:
43+
- All
44+
- AB Testing
45+
- Analytics
46+
- App Check
47+
- App Distribution
48+
- Authentication
49+
- Crashlytics
50+
- Database
51+
- DynamicLinks
52+
- Firestore
53+
- Functions
54+
- In-App Messaging
55+
- Installations
56+
- ML Model Downloader
57+
- Messaging
58+
- Performance
59+
- Remote Config
60+
- Storage
61+
- type: dropdown
62+
attributes:
63+
label: Other Firebase Component(s) in use
64+
description: Which other Firebase components are being used?
65+
multiple: true
66+
options:
67+
- All
68+
- AB Testing
69+
- Analytics
70+
- App Check
71+
- App Distribution
72+
- Authentication
73+
- Crashlytics
74+
- Database
75+
- DynamicLinks
76+
- Firestore
77+
- Functions
78+
- In-App Messaging
79+
- Installations
80+
- ML Model Downloader
81+
- Messaging
82+
- Performance
83+
- Remote Config
84+
- Storage
85+
- type: textarea
86+
attributes:
87+
label: Additional SDKs you are using
88+
description: 'What additional, non-Firebase SDKs are being used?'
89+
placeholder: 'Facebook, AdMob, etc.'
90+
validations:
91+
required: false
92+
- type: dropdown
93+
attributes:
94+
label: Targeted Platform(s)
95+
description: What platform(s) is the issue affecting?
96+
multiple: true
97+
options:
98+
- Apple Platforms
99+
- Android
100+
- Desktop
101+
validations:
102+
required: true
103+
- type: dropdown
104+
attributes:
105+
label: Unity editor platform
106+
description: What platform are you using the Unity editor on?
107+
multiple: true
108+
options:
109+
- Mac
110+
- Windows
111+
- Linux
112+
validations:
113+
required: true
114+
- type: dropdown
115+
attributes:
116+
label: Scripting Runtime
117+
description: What scripting runtime is being used?
118+
multiple: true
119+
options:
120+
- Mono
121+
- IL2CPP
122+
validations:
123+
required: true
124+
- type: dropdown
125+
attributes:
126+
label: Release Distribution Type
127+
description: What release distribution is being used?
128+
multiple: true
129+
options:
130+
- 'Pre-built SDK from https://firebase.google.com/download/unity'
131+
- Open-source from this repo
132+
validations:
133+
required: true

.github/ISSUE_TEMPLATE/issue.md

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

0 commit comments

Comments
 (0)