lyq.me@qq.com 3 years ago
parent
commit
405f7a74d9

+ 52 - 0
.github/ISSUE_TEMPLATE/bug_report_cn.md

@@ -0,0 +1,52 @@
+---
+name: 提交 Bug
+about: 让工具类更完美!
+labels: bug
+assignees: Blankj
+
+---
+
+## 描述 Bug
+
+简洁地描述下 Bug。
+
+- AndroidUtilCode 的版本:<!-- 例如 utilcode:1.16.3 或 utilcodex:1.16.3(这里面是注释,内容需要放在外面) -->
+- 出现 Bug 的设备型号:<!-- 例如 Nexus 5X -->
+- 设备的 Android 版本:<!-- 例如 API 27 -->
+
+## 相关代码
+
+<!-- 例如
+```java
+CrashUtils.init();
+```
+-->
+```
+put your code here
+```
+
+## 异常堆栈
+
+<!-- 例如
+```
+Caused by: java.lang.NullPointerException: u should init first
+   at com.blankj.utilcode.util.Utils.getApp(Utils.java:98)
+   at com.blankj.utilcode.util.CrashUtils.<clinit>(CrashUtils.java:55)
+   at com.blankj.utilcode.util.CrashUtils.init(CrashUtils.java:168) 
+   at com.blankj.androidutilcode.UtilsApp.initCrash(UtilsApp.java:71) 
+   at com.blankj.androidutilcode.UtilsApp.onCreate(UtilsApp.java:33) 
+```
+-->
+
+```
+put the stack of crash here
+```
+
+## 截图
+
+如果有的话请添加屏幕截图以帮助解释问题。
+
+
+## 请删除当前行及以下内容
+
+感谢支持 [AndroidUtilCode](https://github.com/Blankj/AndroidUtilCode).

+ 21 - 0
.github/ISSUE_TEMPLATE/feature-request_cn.md

@@ -0,0 +1,21 @@
+---
+name: 提交需求
+about: 让工具类更健全!
+labels: help wanted
+assignees: Blankj
+
+---
+
+## 描述需求
+
+简洁地描述下需求。
+
+
+## 可借鉴的
+
+如果有的话,可以给出一些参考文章、链接、代码
+
+
+## 请删除当前行及以下内容
+
+感谢支持 [AndroidUtilCode](https://github.com/Blankj/AndroidUtilCode).

+ 1 - 0
android-eclipse/.github/workflows/main.yml

@@ -14,6 +14,7 @@ jobs:
 
     steps:
       - uses: actions/checkout@v2
+      
       - name: set up JDK 1.8
         uses: actions/setup-java@v2
         with:

+ 7 - 0
android-studio/.travis.yml

@@ -0,0 +1,7 @@
+language: android
+android:
+  components:
+    - tools
+    - platform-tools
+    - android-28
+    - build-tools-28.0.1