Commit 80fb032
Update testharness to read version from libs.versions.toml
Changes testharness module to read versionCode and versionName from
libs.versions.toml instead of using hardcoded values. This aligns
with the pattern used by app and authenticator modules and ensures
the setBuildVersionInfo Fastlane task in the workflow actually
updates the testharness build version.
Before:
versionCode = 1
versionName = "1.0.0"
After:
versionCode = libs.versions.appVersionCode.get().toInt()
versionName = libs.versions.appVersionName.get()
Addresses Finding 3 from code review of PR #6181.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <[email protected]>1 parent f3a86fc commit 80fb032
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
22 | | - | |
23 | | - | |
| 22 | + | |
| 23 | + | |
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
| |||
0 commit comments