fix pipeline sdk target
This commit is contained in:
parent
aeb4a13389
commit
dd16bd977f
|
@ -70,7 +70,7 @@ jobs:
|
|||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
# fix hardcode changelog file name
|
||||
body_path: ${{ github.workspace }}/fastlane/metadata/android/en-US/changelogs/33000.txt
|
||||
body_path: ${{ github.workspace }}/fastlane/metadata/android/en-US/changelogs/33100.txt
|
||||
tag_name: ${{ github.ref_name }}
|
||||
name: Release ${{ github.ref_name }}
|
||||
draft: false
|
||||
|
|
|
@ -15,7 +15,6 @@ android {
|
|||
defaultConfig {
|
||||
applicationId = Constants.APP_ID
|
||||
minSdk = Constants.MIN_SDK
|
||||
compileSdk = Constants.COMPILE_SDK
|
||||
targetSdk = Constants.TARGET_SDK
|
||||
versionCode = Constants.VERSION_CODE
|
||||
versionName = Constants.VERSION_NAME
|
||||
|
|
|
@ -1,9 +1,8 @@
|
|||
object Constants {
|
||||
const val VERSION_NAME = "3.3.0"
|
||||
const val VERSION_NAME = "3.3.1"
|
||||
const val JVM_TARGET = "17"
|
||||
const val VERSION_CODE = 33000
|
||||
const val TARGET_SDK = 28
|
||||
const val COMPILE_SDK = 34
|
||||
const val VERSION_CODE = 33100
|
||||
const val TARGET_SDK = 34
|
||||
const val MIN_SDK = 26
|
||||
const val APP_ID = "com.zaneschepke.wireguardautotunnel"
|
||||
const val APP_NAME = "wgtunnel"
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
Enhancements:
|
||||
- Refactor state management
|
||||
- Improve AndroidTV navigation
|
||||
- Improve auto-tunneling efficiency
|
||||
- Improve navigation
|
||||
- Auto-tunneling pause feature
|
||||
- Many bugfixes
|
Loading…
Reference in New Issue