Skip to content

Commit 300da71

Browse files
committed
新增 issue 模板
1 parent 270e035 commit 300da71

File tree

4 files changed

+91
-0
lines changed

4 files changed

+91
-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
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
---
2+
name: 提交 Bug
3+
about: 请告诉我框架存在的问题,我会协助你解决此问题!
4+
labels: bug
5+
assignees: getActivity
6+
7+
---
8+
9+
## 【警告:请务必按照 issue 模板填写,不要抱有侥幸心理,一旦发现 issue 没有按照模板认真填写,一律直接关闭】
10+
11+
## 问题描述
12+
13+
* 框架版本【必填】:XXX
14+
15+
* 问题描述【必填】:XXX
16+
17+
* 复现步骤【必填】:XXX
18+
19+
* 是否必现【必填】:填是/否
20+
21+
* 出现问题的手机信息【必填】:请填写出现问题的品牌和机型
22+
23+
* 出现问题的安卓版本【必填】:请填写出现问题的 Android 版本
24+
25+
## 请回答
26+
27+
* 是部分机型还是所有机型都会出现【必答】:部分/全部(例如:某为,某 Android 版本会出现)
28+
29+
* AndroidProject 最新的版本是否存在这个问题【必答】:是/否(如果用的是旧版本的话,建议升级看问题是否还存在)
30+
31+
* 是否已经查阅框架文档还未能解决的【必答】:是/否(文档会提供最常见的问题解答,可以看看是否有自己想要的)
32+
33+
* issue 是否有人曾提过类似的问题【必答】:是/否(看看曾经有人提过类似的问题,先参考一下别人是怎么解决的)
34+
35+
* 是否可以通过 AndroidProject 工程来复现该问题【必答】:是/否(排查一下是不是自己的项目代码写得有问题导致的)
36+
37+
* 使用原生的权限 API 是否会出现该问题【必答】:是/否(排查一下是不是 AndroidProject 的代码存在问题导致的)
38+
39+
## 其他
40+
41+
* 提供报错堆栈(如果有报错的话必填,注意不要拿被混淆过的代码堆栈上来)
42+
43+
* 提供截图或视频(根据需要提供,此项不强制)
44+
45+
* 提供解决方案(如果已经解决了的话,此项不强制)
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: 提交建议
3+
about: 请告诉我框架的不足之处,让我做得更好!
4+
labels: help wanted
5+
assignees: getActivity
6+
7+
---
8+
9+
## 【警告:请务必按照 issue 模板填写,不要抱有侥幸心理,一旦发现 issue 没有按照模板认真填写,一律直接关闭】
10+
11+
## 建议收集
12+
13+
* issue 是否有人曾提过类似的问题?【必答】(一旦出现重复提问我将不会再次解答)
14+
15+
* 你觉得框架有什么不足之处?【必答】(你可以描述框架有什么令你不满意的地方)
16+
17+
* 你觉得该怎么去完善会比较好?【非必答】(你可以提供一下自己的想法或者做法供作者参考)

.github/workflows/android.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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
16+
- name: Build with Gradle
17+
run: ./gradlew build aR

0 commit comments

Comments
 (0)