Skip to content

Commit cadb63a

Browse files
committed
第一次提交
1 parent 90104fd commit cadb63a

File tree

363 files changed

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

363 files changed

+19502
-0
lines changed

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*.sh text eol=lf
2+
*.bat text eol=crlf
3+
*.cmd text eol=crlf

.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: 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 project 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 project 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 project 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
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
name: Submit Suggestion
2+
description: Please let me know the shortcomings of the project, so that I can improve it!
3+
title: "[Suggestion]:"
4+
labels: ["help wanted"]
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: What are the shortcomings you have noticed in the project? [Required]
15+
description: You can describe any aspects of the project that you are not satisfied with.
16+
validations:
17+
required: true
18+
- type: dropdown
19+
id: input_id_2
20+
attributes:
21+
label: Has a similar suggestion been made in the issue list? [Required]
22+
description: If a similar suggestion has already been made, I will not address it again.
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: Is the suggestion mentioned in the project documentation? [Required]
34+
description: The documentation provides answers to frequently asked questions. Please check if the information you are looking for is already provided.
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: Did you consult the project documentation but couldn't find a solution? [Required]
46+
description: If you have consulted the documentation but still couldn't find a solution, you can select "Yes."
47+
multiple: false
48+
options:
49+
- "Not Selected"
50+
- "Yes"
51+
- "No"
52+
validations:
53+
required: true
54+
- type: textarea
55+
id: input_id_5
56+
attributes:
57+
label: How do you suggest improving it? [Optional]
58+
description: You can provide your ideas or approaches for the author's reference.
59+
validations:
60+
required: false
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
name: 提出疑问
2+
description: 提出你的困惑,我会给你解答
3+
title: "[疑惑]:"
4+
labels: ["question"]
5+
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
## [【警告:请务必按照 issue 模板填写,不要抱有侥幸心理,一旦发现 issue 没有按照模板认真填写,一律直接关闭】](https://github.com/getActivity/IssueTemplateGuide)
11+
- type: textarea
12+
id: input_id_1
13+
attributes:
14+
label: 问题描述【必填】
15+
description: 请描述一下你的问题(注意:如果确定是项目 bug 请不要在这里提,否则一概不受理)
16+
validations:
17+
required: true
18+
- type: dropdown
19+
id: input_id_2
20+
attributes:
21+
label: 项目文档是否提及了该问题【必答】
22+
description: 文档会提供最常见的问题解答,可以先看看是否有自己想要的
23+
multiple: false
24+
options:
25+
- "未选择"
26+
- ""
27+
- ""
28+
validations:
29+
required: true
30+
- type: dropdown
31+
id: input_id_3
32+
attributes:
33+
label: 是否已经查阅项目文档但还未能解决的【必答】
34+
description: 如果查阅了文档但还是没有解决的话,可以选择是
35+
multiple: false
36+
options:
37+
- "未选择"
38+
- ""
39+
- ""
40+
validations:
41+
required: true
42+
- type: dropdown
43+
id: input_id_4
44+
attributes:
45+
label: issue 列表中是否有人曾提过类似的问题【必答】
46+
description: 可以在 issue 列表在搜索问题关键字,参考一下别人的解决方案
47+
multiple: false
48+
options:
49+
- "未选择"
50+
- ""
51+
- ""
52+
validations:
53+
required: true
54+
- type: dropdown
55+
id: input_id_5
56+
attributes:
57+
label: 是否已经搜索过了 issue 列表但还未能解决的【必答】
58+
description: 如果搜索过了 issue 列表但是问题没有解决的话,可以选择是
59+
multiple: false
60+
options:
61+
- "未选择"
62+
- ""
63+
- ""
64+
validations:
65+
required: true
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
name: 提交建议
2+
description: 请告诉我项目的不足之处,让我做得更好!
3+
title: "[建议]:"
4+
labels: ["help wanted"]
5+
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
## [【警告:请务必按照 issue 模板填写,不要抱有侥幸心理,一旦发现 issue 没有按照模板认真填写,一律直接关闭】](https://github.com/getActivity/IssueTemplateGuide)
11+
- type: textarea
12+
id: input_id_1
13+
attributes:
14+
label: 你觉得项目有什么不足之处?【必答】
15+
description: 你可以描述项目有什么令你不满意的地方
16+
validations:
17+
required: true
18+
- type: dropdown
19+
id: input_id_2
20+
attributes:
21+
label: issue 是否有人曾提过类似的建议?【必答】
22+
description: 一旦出现重复提问我将不会再次解答
23+
multiple: false
24+
options:
25+
- "未选择"
26+
- ""
27+
- ""
28+
validations:
29+
required: true
30+
- type: dropdown
31+
id: input_id_3
32+
attributes:
33+
label: 项目文档是否提及了该问题【必答】
34+
description: 文档会提供最常见的问题解答,可以先看看是否有自己想要的
35+
multiple: false
36+
options:
37+
- "未选择"
38+
- ""
39+
- ""
40+
validations:
41+
required: true
42+
- type: dropdown
43+
id: input_id_4
44+
attributes:
45+
label: 是否已经查阅项目文档但还未能解决的【必答】
46+
description: 如果查阅了文档但还是没有解决的话,可以选择是
47+
multiple: false
48+
options:
49+
- "未选择"
50+
- ""
51+
- ""
52+
validations:
53+
required: true
54+
- type: textarea
55+
id: input_id_5
56+
attributes:
57+
label: 你觉得该怎么去完善会比较好?【非必答】
58+
description: 你可以提供一下自己的想法或者做法供作者参考
59+
validations:
60+
required: false

.github/workflows/android.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Android CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v2
12+
- name: set up JDK 1.8
13+
uses: actions/setup-java@v1
14+
with:
15+
java-version: 1.8

.gitignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
.gradle
2+
.idea
3+
.cxx
4+
.externalNativeBuild
5+
build
6+
captures
7+
8+
._*
9+
*.iml
10+
jd-gui.cfg
11+
.DS_Store
12+
local.properties
13+
14+
**/jadx-*/

0 commit comments

Comments
 (0)