From c19c999c6913ae5597d4b3af659cf37ff2d30020 Mon Sep 17 00:00:00 2001 From: Huang Yunkun Date: Wed, 21 Oct 2020 17:10:58 +0800 Subject: [PATCH 1/2] fix lint issue --- .github/workflows/ci.yml | 0 app/src/main/res/values-zh-rCN/strings.xml | 2 ++ app/src/main/res/values-zh-rTW/strings.xml | 2 ++ 3 files changed, 4 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..e69de29 diff --git a/app/src/main/res/values-zh-rCN/strings.xml b/app/src/main/res/values-zh-rCN/strings.xml index 4863225..42e6aef 100644 --- a/app/src/main/res/values-zh-rCN/strings.xml +++ b/app/src/main/res/values-zh-rCN/strings.xml @@ -39,4 +39,6 @@ 首页: https://github.com/developersu/ns-usbloader-mobile 如果本应用对你有帮助,请在程序的GitHub页面上按星号加分,也欢迎赞助 口譯員:: + 应用设置 + 应用主题: \ No newline at end of file diff --git a/app/src/main/res/values-zh-rTW/strings.xml b/app/src/main/res/values-zh-rTW/strings.xml index e4ffd48..ddb81a5 100644 --- a/app/src/main/res/values-zh-rTW/strings.xml +++ b/app/src/main/res/values-zh-rTW/strings.xml @@ -39,4 +39,6 @@ 正在進行資料傳輸 正在進行傳輸 在通知欄顯示傳輸檔案進度 + 程式設置 + 程式主題: From b0859a4551a399d4a8dc5205216f2a64792dd2e8 Mon Sep 17 00:00:00 2001 From: Huang Yunkun Date: Wed, 21 Oct 2020 17:13:42 +0800 Subject: [PATCH 2/2] add ci --- .github/workflows/ci.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e69de29..6369d12 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -0,0 +1,27 @@ +name: CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 1.8 + uses: actions/setup-java@v1 + with: + java-version: 1.8 + - name: Grant execute permission for gradlew + run: chmod +x gradlew + - name: Build with Gradle + run: ./gradlew clean build + - uses: actions/upload-artifact@v2 + with: + name: debug + path: app/build/outputs/apk/debug/*.apk \ No newline at end of file