Skip to content

Commit 01cb52a

Browse files
committed
SimpleWear: v1.16.0-build0
1 parent 6cd0ac7 commit 01cb52a

File tree

5 files changed

+11
-10
lines changed

5 files changed

+11
-10
lines changed

mobile/build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@ android {
2121
minSdkVersion rootProject.minSdkVersion
2222
targetSdkVersion rootProject.targetSdkVersion
2323
// NOTE: Version Code Format [TargetSDK, Version Name, Build Number, Variant Code (Android: 0, WearOS: 1)]
24-
versionCode 341915060
25-
versionName "1.15.3"
24+
// NOTE: update SUPPORTED_VERSION_CODE if needed
25+
versionCode 341916000
26+
versionName "1.16.0"
2627

2728
vectorDrawables.useSupportLibrary = true
2829
}

shared_resources/src/main/java/com/thewizrd/shared_resources/helpers/WearSettingsHelper.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import com.thewizrd.shared_resources.utils.Logger
1111
object WearSettingsHelper {
1212
// Link to Play Store listing
1313
const val PACKAGE_NAME = "com.thewizrd.wearsettings"
14-
private const val SUPPORTED_VERSION_CODE: Long = 1020000
14+
private const val SUPPORTED_VERSION_CODE: Long = 1030000
1515

1616
fun getPackageName(): String {
1717
var packageName = PACKAGE_NAME

shared_resources/src/main/java/com/thewizrd/shared_resources/helpers/WearableHelper.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ object WearableHelper {
2424
// Link to Play Store listing
2525
private const val PLAY_STORE_APP_URI = "market://details?id=com.thewizrd.simplewear"
2626

27-
private const val VERSION_CODE: Long = 341915030
27+
private const val SUPPORTED_VERSION_CODE: Long = 341916000
2828

2929
fun getPlayStoreURI(): Uri = Uri.parse(PLAY_STORE_APP_URI)
3030

@@ -160,7 +160,7 @@ object WearableHelper {
160160
ParcelUuid.fromString("0000DA28-0000-1000-8000-00805F9B34FB")
161161

162162
fun isAppUpToDate(versionCode: Long): Boolean {
163-
return versionCode >= VERSION_CODE
163+
return versionCode >= SUPPORTED_VERSION_CODE
164164
}
165165

166166
fun getAppVersionCode(): Long = try {

wear/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ android {
1212
minSdkVersion 26
1313
targetSdkVersion rootProject.targetSdkVersion
1414
// NOTE: Version Code Format (TargetSDK, Version Name, Build Number, Variant Code (Android: 0, WearOS: 1)
15-
versionCode 341915071
16-
versionName "1.15.4"
15+
versionCode 341916001
16+
versionName "1.16.0"
1717

1818
vectorDrawables.useSupportLibrary = true
1919
}

wearsettings/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ android {
1212
minSdk rootProject.minSdkVersion
1313
//noinspection ExpiredTargetSdkVersion
1414
targetSdk 28
15-
// NOTE: update SUPPORTED_VERSION_CODE
16-
versionCode 1020000
17-
versionName "1.2.0"
15+
// NOTE: update SUPPORTED_VERSION_CODE if needed
16+
versionCode 1030000
17+
versionName "1.3.0"
1818

1919
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2020
}

0 commit comments

Comments
 (0)