Skip to content

Commit

Permalink
make some pbz json optional
Browse files Browse the repository at this point in the history
  • Loading branch information
crc-32 committed Apr 25, 2023
1 parent 223f674 commit 16a8650
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
kotlin.code.style=official

group=io.rebble.libpebblecommon
version=0.1.12
version=0.1.13
org.gradle.jvmargs=-Xms128M -Xmx1G -XX:ReservedCodeCacheSize=200M
kotlin.native.binary.memoryModel=experimental
kotlin.mpp.androidSourceSetLayoutVersion=2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ data class PbzFirmware(
val hwRev: WatchHardwarePlatform,
val size: Long,
val crc: Long,
val versionTag: String
val versionTag: String? = null
)
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ import kotlinx.serialization.Serializable
data class PbzManifest(
val manifestVersion: Int,
val generatedAt: Long,
val generatedBy: String,
val debug: Debug,
val generatedBy: String? = null,
val debug: Debug? = null,
val firmware: PbzFirmware,
val resources: SystemResources?,
val resources: SystemResources? = null,
@SerialName("js_tooling")
val jsTooling: JsTooling,
val jsTooling: JsTooling? = null,
val type: String
)

0 comments on commit 16a8650

Please sign in to comment.