File tree Expand file tree Collapse file tree 4 files changed +13
-12
lines changed Expand file tree Collapse file tree 4 files changed +13
-12
lines changed Original file line number Diff line number Diff line change 26
26
version_name=${GITHUB_REF#refs/heads/release/}
27
27
28
28
# Get existing version code from build.gradle
29
- version_code=$(grep " versionCode" app/build.gradle | awk '{print $2}' | tr -d '\n ')
29
+ version_code=$(grep -o -E ' versionCode = [[:digit:]\.]+' app/build.gradle.kts | grep -o -E '[[:digit:]\.]+ ')
30
30
31
31
# Increment existing version code by 1
32
32
version_code=$((version_code + 1))
@@ -36,11 +36,11 @@ jobs:
36
36
echo "VERSION_CODE=$version_code" >> $GITHUB_ENV
37
37
38
38
- name : Increase version code and change version name
39
- run : |
40
- # Update build.gradle with new version code and name
41
- echo "${{ env.VERSION_CODE }} - ${{ env.VERSION_NAME }}"
42
- sed -i "s/ versionCode [0-9]\+/versionCode ${{ env.VERSION_CODE }}/g" app/build.gradle
43
- sed -i "s/ versionName \"[^\"]*\"/versionName \" ${{ env.VERSION_NAME }}\"/g" app/build.gradle
39
+ uses : chkfung/android-version-actions@v1.2.2
40
+ with :
41
+ gradlePath : app/build.gradle.kts
42
+ versionCode : ${{ env.VERSION_CODE }}
43
+ versionName : ${{ env.VERSION_NAME }}
44
44
45
45
- name : Commit and push changes
46
46
run : |
@@ -111,4 +111,3 @@ jobs:
111
111
packageName : com.cray.software.justreminderpro
112
112
releaseFiles : ${{ steps.sign-pro.outputs.signedReleaseFile }}
113
113
track : alpha
114
- changesNotSentForReview : true
Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ android {
22
22
applicationId = " com.cray.software.justreminder"
23
23
minSdk = libs.versions.minSdk.get().toInt()
24
24
targetSdk = libs.versions.targetSdk.get().toInt()
25
- versionCode = 321
26
- versionName = " 9.4.1 "
25
+ versionCode = 324
26
+ versionName = " 9.5.0 "
27
27
multiDexEnabled = true
28
28
renderscriptTargetApi = 23
29
29
renderscriptSupportModeEnabled = true
Original file line number Diff line number Diff line change 3
3
<string name =" whats_new_version_and_date" translatable =" false" >%s, %s</string >
4
4
<string name =" whats_new_text" translatable =" false" >
5
5
\n
6
- ✅ Add Android 15 support;\n
7
- ✅ Add option to attach the Note to the Reminder;\n
8
- ⭐ Update translations;\n
6
+ ⭐ Remove Voice control;\n
7
+ 🐞 Fix the search on the Home screen;\n
9
8
🐞 Bug fixes and improvements.
10
9
</string >
11
10
<string name =" whats_new_emoji_set" translatable =" false" >
Original file line number Diff line number Diff line change @@ -78,9 +78,12 @@ dependencies {
78
78
79
79
implementation(libs.glance.appwidget)
80
80
implementation(libs.glance.material3)
81
+ implementation(libs.glance.preview)
82
+ implementation(libs.glance.appwidget.preview)
81
83
82
84
implementation(platform(libs.compose.bom))
83
85
implementation(libs.compose.material3)
86
+ implementation(libs.compose.ui.tooling.preview)
84
87
85
88
debugImplementation(libs.glance.preview)
86
89
debugImplementation(libs.glance.appwidget.preview)
You can’t perform that action at this time.
0 commit comments