Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
lsongdev committed Aug 21, 2024
0 parents commit da06a75
Show file tree
Hide file tree
Showing 109 changed files with 7,472 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-反馈.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
name: bug-反馈
about: 描述你所遇到的bug
title: 问题反馈
labels: bug
assignees: yaoxieyoulei

---

### 问题描述
请提供一个清晰而简明的问题描述。

### 复现步骤
请提供复现该问题所需的具体步骤。

### 预期行为
请描述你期望的正确行为或结果。

### 系统信息
请提供关于您的环境的详细信息,包括操作系统、浏览器版本等。

### 相关截图或日志
如果有的话,请提供相关的截图、错误日志或其他有助于解决问题的信息。
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/功能请求.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: 功能请求
about: 对于功能的一些建议
title: ''
labels: enhancement
assignees: yaoxieyoulei

---

### 功能描述
请提供对所请求功能的清晰描述。

### 目标
请描述你希望通过这个功能实现的目标。

### 解决方案
如果你有任何关于如何实现这个功能的想法或建议,请在这里提供。

### 其他
请提供已实现该功能或类似功能的应用
41 changes: 41 additions & 0 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Android CI

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

permissions:
contents: write

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: gradle

- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
# run: ./gradlew build
run: ./gradlew assembleDebug

- name: Set current date as env variable
run: |
echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_ENV
- name: Upload Release
uses: softprops/action-gh-release@v1
with:
tag_name: nightly-tag-${{ env.date }}
name: release-${{ env.date }}
files: ./app/build/outputs/apk/debug/app-debug.apk
# files: ./app/build/outputs/apk/release/app-release-unsigned.apk
draft: false
25 changes: 25 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
*.iml
.gradle
/local.properties
/.idea/caches
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml
/.idea/navEditor.xml
/.idea/assetWizardSettings.xml
/.idea/deploymentTargetDropDown.xml
/.idea/git_toolbox_prj.xml
/.idea/deploymentTargetSelector.xml
/.idea/GrepConsole.xml
/.idea/material_theme_project_new.xml
/.idea/other.xml
.DS_Store
/build
/captures
.externalNativeBuild
.cxx
local.properties
key.properties
.kotlin/*
app/debug/*
*.apk
5 changes: 5 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

40 changes: 40 additions & 0 deletions .idea/appInsightsSettings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

131 changes: 131 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/codeStyles/codeStyleConfig.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit da06a75

Please sign in to comment.