Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions sheaf/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ val latestReleaseTag: String = runCatching {

android {
namespace = "systems.lupine.sheaf"
compileSdk = 35
compileSdk = 36

defaultConfig {
minSdk = 26
targetSdk = 35
targetSdk = 36
versionCode = providers.gradleProperty("versionCode").orNull?.toInt() ?: 1
// CI passes -PversionName; local dev builds derive from the most
// recent git release tag with a "-dev" suffix so About never lies
Expand Down
4 changes: 2 additions & 2 deletions sheaf/wear/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ val gitCommitShort: String = runCatching {

android {
namespace = "systems.lupine.sheaf.wear"
compileSdk = 35
compileSdk = 36

defaultConfig {
minSdk = 26
targetSdk = 35
targetSdk = 36
// Form-factor index appended to phone's base*10 versionCode: phone=0,
// wear=1. CI passes -PversionCode already multiplied by 10, so +1 here
// lands wear at base*10+1. Standalone dev builds (no -PversionCode)
Expand Down
Loading