first build

This commit is contained in:
Mboehmlaender
2026-07-25 20:51:55 +02:00
parent 6b4ed9bc36
commit e5bbc25c89
8 changed files with 124 additions and 5 deletions
@@ -0,0 +1,109 @@
{
"formatVersion": 1,
"database": {
"version": 1,
"identityHash": "1f4ec396d94258c311db7b15c2879062",
"entities": [
{
"tableName": "cache_entries",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`key` TEXT NOT NULL, `json` TEXT NOT NULL, `updatedAt` INTEGER NOT NULL, PRIMARY KEY(`key`))",
"fields": [
{
"fieldPath": "key",
"columnName": "key",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "json",
"columnName": "json",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "updatedAt",
"columnName": "updatedAt",
"affinity": "INTEGER",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"key"
]
}
},
{
"tableName": "pending_mutations",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `kind` TEXT NOT NULL, `planId` TEXT NOT NULL, `sessionKey` TEXT NOT NULL, `expectedRevision` INTEGER NOT NULL, `payloadJson` TEXT NOT NULL, `createdAt` INTEGER NOT NULL, `state` TEXT NOT NULL, `lastError` TEXT NOT NULL)",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "kind",
"columnName": "kind",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "planId",
"columnName": "planId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "sessionKey",
"columnName": "sessionKey",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "expectedRevision",
"columnName": "expectedRevision",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "payloadJson",
"columnName": "payloadJson",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "createdAt",
"columnName": "createdAt",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "state",
"columnName": "state",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "lastError",
"columnName": "lastError",
"affinity": "TEXT",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": true,
"columnNames": [
"id"
]
}
}
],
"setupQueries": [
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '1f4ec396d94258c311db7b15c2879062')"
]
}
}
+7 -3
View File
@@ -1,6 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<application
android:networkSecurityConfig="@xml/network_security_config_debug"
android:usesCleartextTraffic="true" />
</manifest>
android:usesCleartextTraffic="true"
tools:replace="android:networkSecurityConfig,android:usesCleartextTraffic" />
</manifest>
@@ -12,7 +12,6 @@ import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.width
import androidx.compose.foundation.layout.weight
import androidx.compose.foundation.rememberScrollState
import androidx.compose.foundation.selection.selectable
import androidx.compose.foundation.verticalScroll
@@ -156,7 +156,14 @@ class FixtureContractTest {
put("laterality", "bilateral")
put("sides_mode", "same")
put("sets", 3)
put("values", kotlinx.serialization.json.buildJsonArray { add(8); add(7); add(6) })
put(
"values",
kotlinx.serialization.json.buildJsonArray {
add(kotlinx.serialization.json.JsonPrimitive(8))
add(kotlinx.serialization.json.JsonPrimitive(7))
add(kotlinx.serialization.json.JsonPrimitive(6))
},
)
put("left_values", kotlinx.serialization.json.JsonArray(emptyList()))
put("right_values", kotlinx.serialization.json.JsonArray(emptyList()))
put("weight_kg", 8.0)