Skip to content

Commit

Permalink
Release.v.0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
azrael8576 committed Sep 2, 2023
1 parent 831a016 commit 200a5e7
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 8 deletions.
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,12 @@ UI 設計採用 [_Material 3 Design_](https://m3.material.io/) ,並以 Jetpack

## Require

**~~**本專案已升級 Gradle plugin 8.1.0-rc01 (查看分支:`chore/update_agp_8.1.0-rc01` ) **~~**

本專案已回退 **Gradle plugin 7.4.2**,以便當前 **Android Studio 正式版 (Flamingo)** 建構 (查看分支:`chore/rollback_agp_7.4.2` )
本專案已升級 Gradle plugin 8.1.0-rc01 (查看分支:`chore/update_agp_8.1.0-rc01` )

建構此 App 你可能需要以下工具:

- Android Studio Flamingo | 2022.2.1
- JDK JavaVersion.VERSION_11
- Android Studio Giraffe | 2022.3.1
- JDK JavaVersion.VERSION_17

## 常見類封裝

Expand Down
18 changes: 16 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,22 @@ android {
applicationId = "com.wei.amazingtalker_recruit"
minSdk = 23
targetSdk = 33
versionCode = 1
versionName = "1.0"
/**
* Version Code: AABCXYZ
*
* AA: API Level (33)
*
* BC: Supported screen sizes for this APK.
* 12: Small to Normal screens
* 34: Large to X-Large screens
*
* XYZ: App version (050 for 0.5.0)
*/
versionCode = 3313050
/**
* SemVer major.minor.patch
*/
versionName = "0.5.0"

testInstrumentationRunner = "com.wei.amazingtalker_recruit.core.testing.AtTestRunner"
}
Expand Down
2 changes: 1 addition & 1 deletion docs/ModularizationStrategy.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ Amazingtalker-Recruit 主要包含以下幾種模組:
| `core:domain` | 包含被多個模組共享的 UseCase。 | `IntervalizeScheduleUseCase` |
| `core:model` | 提供整個應用程式所使用的模型類別。 | `IntervalScheduleTimeSlot,`<br>`ScheduleTimeSlot` |
| `core:network` | 負責發送網絡請求,並處理來自遠程數據源的回應。 | `RetrofitAtNetworkApi` |
| `core:designsystem` | 包含整個應用程式設計系統相關。<br>eg. app theme、Core UI 元件樣式...等 | `AtTheme,`<br>`AtAppSnackbar`<br>`management/states/topappbar/*`<br>... |
| `core:designsystem` | UI依賴項。<br>eg. app theme、Core UI 元件樣式...等 | `AtTheme,`<br>`AtAppSnackbar`<br>`management/states/topappbar/*`<br>... |
| `core:testing` | 測試依賴項、repositories 和 util 類。 | `MainDispatcherRule,`<br>`AtTestRunner,`<br>... |

0 comments on commit 200a5e7

Please sign in to comment.