-
Notifications
You must be signed in to change notification settings - Fork 144
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #230 from sangcomz/release/1.0.0-alpha04
Release/1.0.0 alpha04
- Loading branch information
Showing
13 changed files
with
101 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Android CI | ||
|
||
on: | ||
push: | ||
branches: [ master, develop ] | ||
pull_request: | ||
branches: [ master, develop ] | ||
|
||
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: Build with Gradle | ||
run: ./gradlew build | ||
- name: assemble and jacoco | ||
run: ./gradlew assembleDebug jacocoTestReport | ||
- name: Android Emulator Runner | ||
# You may pin to the exact commit or the version. | ||
# uses: ReactiveCircus/android-emulator-runner@e08f702234bdc95883c7fd5c7d2867ccf1a8463b | ||
uses: ReactiveCircus/[email protected] | ||
with: | ||
# API level of the platform and system image - e.g. 23 for Android Marshmallow, 29 for Android 10 | ||
api-level: 25 | ||
script: ./gradlew connectedCheck connectedAndroidTest | ||
- name: Codecov | ||
uses: codecov/[email protected] |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<resources> | ||
<string name="album">专辑</string> | ||
<string name="camera">相机</string> | ||
<string name="done">完成</string> | ||
<string name="done_all">全部完成</string> | ||
<string name="msg_no_selected">没有选择图片。</string> | ||
<string name="str_all_view">所有视图</string> | ||
<string name="msg_permission">缺少权限。</string> | ||
<string name="msg_no_image">没有专辑。\n拍一张照片吧!</string> | ||
<string name="msg_full_image">选择数量达到上限。取消一张照片以继续选择其他照片。</string> | ||
<string name="msg_loading_image">加载中…</string> | ||
<string name="image">照片</string> | ||
<string name="msg_error">有点临时错误哦。请过几分钟再试试哦。</string> | ||
<string name="msg_minimum_image">请至少选择 <b>%d</b> 张图片。</string> | ||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
include ':FishBunDemo', ':FishBun' | ||
|
||
gradle.ext.versionCode = 31 | ||
gradle.ext.versionName = '1.0.0-alpha03' | ||
gradle.ext.versionCode = 32 | ||
gradle.ext.versionName = '1.0.0-alpha04' | ||
|
||
gradle.ext.set('minSdk', 15) | ||
gradle.ext.set('targetSdk', 29) | ||
gradle.ext.set('compileSdk', 29) | ||
gradle.ext.set('targetSdk', 30) | ||
gradle.ext.set('compileSdk', 30) |