Skip to content

Commit 2592909

Browse files
committed
第一次提交
0 parents  commit 2592909

Some content is hidden

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

43 files changed

+3278
-0
lines changed

.github/FUNDING.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# These are supported funding model platforms
2+
3+
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4+
patreon: # Replace with a single Patreon username
5+
open_collective: # Replace with a single Open Collective username
6+
ko_fi: # Replace with a single Ko-fi username
7+
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8+
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9+
liberapay: # Replace with a single Liberapay username
10+
issuehunt: # Replace with a single IssueHunt username
11+
otechie: # Replace with a single Otechie username
12+
custom: https://raw.githubusercontent.com/getActivity/Donate/master/picture/pay_ali.png

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: false
Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
name: Submit Manufacturer Adaptation Issue
2+
description: Issues related to new adaptations or incorrect adaptations of manufacturer systems
3+
title: "[Adaptation]:"
4+
labels: ["adaptation"]
5+
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
## [【Warning: Please fill in according to the issue template. Do not take chances. Any issue found not seriously filled in according to the template will be closed directly】](https://github.com/getActivity/IssueTemplateGuide)
11+
- type: input
12+
id: input_id_1
13+
attributes:
14+
label: Framework Version【Required】
15+
description: Please enter the version of the framework you are using
16+
validations:
17+
required: true
18+
- type: dropdown
19+
id: input_id_2
20+
attributes:
21+
label: Does the latest version of the framework have this issue【Required】
22+
description: If you are using an older version, it is recommended to upgrade to see if the issue still exists
23+
multiple: false
24+
options:
25+
- "Not selected"
26+
- "Yes"
27+
- "No"
28+
validations:
29+
required: true
30+
- type: dropdown
31+
id: input_id_3
32+
attributes:
33+
label: Does the framework documentation mention this issue【Required】
34+
description: The documentation provides answers to the most common questions. You can check if it contains what you need first
35+
multiple: false
36+
options:
37+
- "Not selected"
38+
- "Yes"
39+
- "No"
40+
validations:
41+
required: true
42+
- type: dropdown
43+
id: input_id_4
44+
attributes:
45+
label: Has anyone raised a similar issue in the issue list【Required】
46+
description: You can search for keywords in the issue list to refer to others' solutions
47+
multiple: false
48+
options:
49+
- "Not selected"
50+
- "Yes"
51+
- "No"
52+
validations:
53+
required: true
54+
- type: dropdown
55+
id: input_id_5
56+
attributes:
57+
label: Have you searched the issue list but still couldn't solve it【Required】
58+
description: If you have searched the issue list but the problem remains unsolved, you can select "Yes"
59+
multiple: false
60+
options:
61+
- "Not selected"
62+
- "Yes"
63+
- "No"
64+
validations:
65+
required: true
66+
- type: input
67+
id: input_id_6
68+
attributes:
69+
label: Device Information with the Issue【Required】
70+
description: Please fill in the brand and model of the device with the issue
71+
validations:
72+
required: true
73+
- type: input
74+
id: input_id_7
75+
attributes:
76+
label: Android Version with the Issue【Required】
77+
description: Please fill in the Android version where the issue occurs
78+
validations:
79+
required: true
80+
- type: input
81+
id: input_id_8
82+
attributes:
83+
label: Manufacturer's OS Type with the Issue【Required】
84+
description: Please enter the manufacturer's OS name of the device
85+
validations:
86+
required: true
87+
- type: input
88+
id: input_id_9
89+
attributes:
90+
label: Manufacturer's OS Version with the Issue【Required】
91+
description: Please enter the manufacturer's OS version of the device
92+
validations:
93+
required: true
94+
- type: textarea
95+
id: input_id_10
96+
attributes:
97+
label: System Properties of the Device with the Issue【Required】
98+
description: Please use the adb shell getprop command to obtain all system properties and fill them in here
99+
validations:
100+
required: true
101+
- type: textarea
102+
id: input_id_11
103+
attributes:
104+
label: Screenshot of Device Information with the Issue【Required】
105+
description: If it's a mobile phone, please take a screenshot of the "About Phone" page and upload it here. The screenshot should include the manufacturer's OS name and version. The same applies to other devices
106+
validations:
107+
required: true
Lines changed: 173 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,173 @@
1+
name: Submit Bug
2+
description: Please let me know the issues with the framework, and I will assist you in resolving them!
3+
title: "[Bug]:"
4+
labels: ["bug"]
5+
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
## [Warning: Please make sure to fill in the issue template accurately. If an issue is found to be filled incorrectly, it will be closed without further notice.](https://github.com/getActivity/IssueTemplateGuide)
11+
- type: input
12+
id: input_id_1
13+
attributes:
14+
label: Framework Version [Required]
15+
description: Please enter the version of the framework you are using.
16+
validations:
17+
required: true
18+
- type: textarea
19+
id: input_id_2
20+
attributes:
21+
label: Issue Description [Required]
22+
description: Please describe the issue you are facing.
23+
validations:
24+
required: true
25+
- type: textarea
26+
id: input_id_3
27+
attributes:
28+
label: Steps to Reproduce [Required]
29+
description: Please provide steps to reproduce the issue.
30+
validations:
31+
required: true
32+
- type: dropdown
33+
id: input_id_4
34+
attributes:
35+
label: Is the Issue Reproducible? [Required]
36+
multiple: false
37+
options:
38+
- "Not Selected"
39+
- "Yes"
40+
- "No"
41+
validations:
42+
required: true
43+
- type: input
44+
id: input_id_5
45+
attributes:
46+
label: Project targetSdkVersion [Required]
47+
validations:
48+
required: true
49+
- type: input
50+
id: input_id_6
51+
attributes:
52+
label: Device Information [Required]
53+
description: Please provide the brand and model of the device where the issue occurred.
54+
validations:
55+
required: true
56+
- type: input
57+
id: input_id_7
58+
attributes:
59+
label: Android Version [Required]
60+
description: Please provide the Android version where the issue occurred.
61+
validations:
62+
required: true
63+
- type: dropdown
64+
id: input_id_8
65+
attributes:
66+
label: Issue Source Channel [Required]
67+
multiple: true
68+
options:
69+
- Encountered by myself
70+
- Identified in Bugly
71+
- User feedback
72+
- Other channels
73+
- type: input
74+
id: input_id_9
75+
attributes:
76+
label: Is it specific to certain device models? [Required]
77+
description: Specify whether the issue is specific to certain devices (e.g., specific brand or Android version).
78+
validations:
79+
required: true
80+
- type: dropdown
81+
id: input_id_10
82+
attributes:
83+
label: Does the latest version of the framework have this issue? [Required]
84+
description: If you are using an older version, it is recommended to upgrade and check if the issue still persists.
85+
multiple: false
86+
options:
87+
- "Not Selected"
88+
- "Yes"
89+
- "No"
90+
validations:
91+
required: true
92+
- type: dropdown
93+
id: input_id_11
94+
attributes:
95+
label: Is the issue mentioned in the framework documentation? [Required]
96+
description: The documentation provides answers to frequently asked questions. Please check if the information you are looking for is already provided.
97+
multiple: false
98+
options:
99+
- "Not Selected"
100+
- "Yes"
101+
- "No"
102+
validations:
103+
required: true
104+
- type: dropdown
105+
id: input_id_12
106+
attributes:
107+
label: Did you consult the framework documentation but couldn't find a solution? [Required]
108+
description: If you have consulted the documentation but still couldn't find a solution, you can select "Yes."
109+
multiple: false
110+
options:
111+
- "Not Selected"
112+
- "Yes"
113+
- "No"
114+
validations:
115+
required: true
116+
- type: dropdown
117+
id: input_id_13
118+
attributes:
119+
label: Has a similar issue been reported in the issue list? [Required]
120+
description: You can search the issue list for keywords related to your problem and refer to the solutions provided by others.
121+
multiple: false
122+
options:
123+
- "Not Selected"
124+
- "Yes"
125+
- "No"
126+
validations:
127+
required: true
128+
- type: dropdown
129+
id: input_id_14
130+
attributes:
131+
label: Have you searched the issue list but couldn't find a solution? [Required]
132+
description: If you have searched the issue list and couldn't find a solution, you can select "Yes."
133+
multiple: false
134+
options:
135+
- "Not Selected"
136+
- "Yes"
137+
- "No"
138+
validations:
139+
required: true
140+
- type: dropdown
141+
id: input_id_15
142+
attributes:
143+
label: Can the issue be reproduced with a demo project? [Required]
144+
description: Check if the issue can be reproduced in a minimal demo project to isolate potential issues in your own code.
145+
multiple: false
146+
options:
147+
- "Not Selected"
148+
- "Yes"
149+
- "No"
150+
validations:
151+
required: true
152+
- type: textarea
153+
id: input_id_16
154+
attributes:
155+
label: Provide Error Stack Trace
156+
description: If there is an error, please provide the stack trace. Note, Do not include obfuscated code in the stack trace.
157+
render: text
158+
validations:
159+
required: false
160+
- type: textarea
161+
id: input_id_17
162+
attributes:
163+
label: Provide Screenshots or Videos
164+
description: Provide screenshots or videos if necessary. This field is optional.
165+
validations:
166+
required: false
167+
- type: textarea
168+
id: input_id_18
169+
attributes:
170+
label: Provide a Solution
171+
description: If you have already found a solution, this field is optional.
172+
validations:
173+
required: false
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
name: Ask a Question
2+
description: Ask your questions, and I will provide you with answers.
3+
title: "[Question]:"
4+
labels: ["question"]
5+
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
## [Warning: Please make sure to fill in the issue template accurately. If an issue is found to be filled incorrectly, it will be closed without further notice.](https://github.com/getActivity/IssueTemplateGuide)
11+
- type: textarea
12+
id: input_id_1
13+
attributes:
14+
label: Question Description [Required]
15+
description: Please describe your question (Note, If it is a framework bug, please do not raise it here, as it will not be accepted).
16+
validations:
17+
required: true
18+
- type: dropdown
19+
id: input_id_2
20+
attributes:
21+
label: Is the issue mentioned in the framework documentation? [Required]
22+
description: The documentation provides answers to frequently asked questions. Please check if the information you are looking for is already provided.
23+
multiple: false
24+
options:
25+
- "Not Selected"
26+
- "Yes"
27+
- "No"
28+
validations:
29+
required: true
30+
- type: dropdown
31+
id: input_id_3
32+
attributes:
33+
label: Did you consult the framework documentation but couldn't find a solution? [Required]
34+
description: If you have consulted the documentation but still couldn't find a solution, you can select "Yes."
35+
multiple: false
36+
options:
37+
- "Not Selected"
38+
- "Yes"
39+
- "No"
40+
validations:
41+
required: true
42+
- type: dropdown
43+
id: input_id_4
44+
attributes:
45+
label: Has a similar issue been reported in the issue list? [Required]
46+
description: You can search the issue list for keywords related to your problem and refer to the solutions provided by others.
47+
multiple: false
48+
options:
49+
- "Not Selected"
50+
- "Yes"
51+
- "No"
52+
validations:
53+
required: true
54+
- type: dropdown
55+
id: input_id_5
56+
attributes:
57+
label: Have you searched the issue list but couldn't find a solution? [Required]
58+
description: If you have searched the issue list and couldn't find a solution, you can select "Yes."
59+
multiple: false
60+
options:
61+
- "Not Selected"
62+
- "Yes"
63+
- "No"
64+
validations:
65+
required: true

0 commit comments

Comments
 (0)