fix pipeline sdk target

This commit is contained in:
Zane Schepke 2023-12-31 20:35:57 -05:00
parent aeb4a13389
commit dd16bd977f
4 changed files with 11 additions and 6 deletions

View File

@ -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

View File

@ -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

View File

@ -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"

View File

@ -0,0 +1,7 @@
Enhancements:
- Refactor state management
- Improve AndroidTV navigation
- Improve auto-tunneling efficiency
- Improve navigation
- Auto-tunneling pause feature
- Many bugfixes