()
}
diff --git a/workflow-testing/src/main/java/com/squareup/workflow/testing/WorkflowTestRuntime.kt b/workflow-testing/src/main/java/com/squareup/workflow1/testing/WorkflowTestRuntime.kt
similarity index 91%
rename from workflow-testing/src/main/java/com/squareup/workflow/testing/WorkflowTestRuntime.kt
rename to workflow-testing/src/main/java/com/squareup/workflow1/testing/WorkflowTestRuntime.kt
index dc9b930439..58b035cae2 100644
--- a/workflow-testing/src/main/java/com/squareup/workflow/testing/WorkflowTestRuntime.kt
+++ b/workflow-testing/src/main/java/com/squareup/workflow1/testing/WorkflowTestRuntime.kt
@@ -15,22 +15,22 @@
*/
@file:Suppress("EXPERIMENTAL_API_USAGE", "DeprecatedCallableAddReplaceWith")
-package com.squareup.workflow.testing
-
-import com.squareup.workflow.ExperimentalWorkflowApi
-import com.squareup.workflow.RenderingAndSnapshot
-import com.squareup.workflow.Snapshot
-import com.squareup.workflow.StatefulWorkflow
-import com.squareup.workflow.TreeSnapshot
-import com.squareup.workflow.Workflow
-import com.squareup.workflow.WorkflowInterceptor
-import com.squareup.workflow.WorkflowInterceptor.WorkflowSession
-import com.squareup.workflow.internal.util.UncaughtExceptionGuard
-import com.squareup.workflow.renderWorkflowIn
-import com.squareup.workflow.testing.WorkflowTestParams.StartMode.StartFresh
-import com.squareup.workflow.testing.WorkflowTestParams.StartMode.StartFromCompleteSnapshot
-import com.squareup.workflow.testing.WorkflowTestParams.StartMode.StartFromState
-import com.squareup.workflow.testing.WorkflowTestParams.StartMode.StartFromWorkflowSnapshot
+package com.squareup.workflow1.testing
+
+import com.squareup.workflow1.ExperimentalWorkflowApi
+import com.squareup.workflow1.RenderingAndSnapshot
+import com.squareup.workflow1.Snapshot
+import com.squareup.workflow1.StatefulWorkflow
+import com.squareup.workflow1.TreeSnapshot
+import com.squareup.workflow1.Workflow
+import com.squareup.workflow1.WorkflowInterceptor
+import com.squareup.workflow1.WorkflowInterceptor.WorkflowSession
+import com.squareup.workflow1.internal.util.UncaughtExceptionGuard
+import com.squareup.workflow1.renderWorkflowIn
+import com.squareup.workflow1.testing.WorkflowTestParams.StartMode.StartFresh
+import com.squareup.workflow1.testing.WorkflowTestParams.StartMode.StartFromCompleteSnapshot
+import com.squareup.workflow1.testing.WorkflowTestParams.StartMode.StartFromState
+import com.squareup.workflow1.testing.WorkflowTestParams.StartMode.StartFromWorkflowSnapshot
import kotlinx.coroutines.CancellationException
import kotlinx.coroutines.CoroutineExceptionHandler
import kotlinx.coroutines.CoroutineScope
@@ -55,12 +55,12 @@ import kotlin.coroutines.EmptyCoroutineContext
@Deprecated(
"Renamed to WorkflowTestRuntime",
- ReplaceWith("WorkflowTestRuntime", "com.squareup.workflow.testing.WorkflowTestRuntime")
+ ReplaceWith("WorkflowTestRuntime", "com.squareup.workflow1.testing.WorkflowTestRuntime")
)
typealias WorkflowTester = WorkflowTestRuntime
/**
- * Runs a [Workflow][com.squareup.workflow.Workflow] and provides access to its
+ * Runs a [Workflow][com.squareup.workflow1.Workflow] and provides access to its
* [renderings][awaitNextRendering], [outputs][awaitNextOutput], and [snapshots][awaitNextSnapshot].
*
* For each of renderings, outputs, and snapshots, this class gives you a few ways to access
@@ -190,7 +190,7 @@ class WorkflowTestRuntime @TestOnly internal constr
"Renamed to launchForTestingFromStartWith",
ReplaceWith(
"launchForTestingFromStartWith(props, testParams, context, block)",
- "com.squareup.workflow.testing.launchForTestingFromStartWith"
+ "com.squareup.workflow1.testing.launchForTestingFromStartWith"
)
)
@TestOnly
@@ -219,7 +219,7 @@ fun Workflow.launc
"Renamed to launchForTestingFromStartWith",
ReplaceWith(
"launchForTestingFromStartWith(testParams, context, block)",
- "com.squareup.workflow.testing.launchForTestingFromStartWith"
+ "com.squareup.workflow1.testing.launchForTestingFromStartWith"
)
)
@TestOnly
@@ -246,7 +246,7 @@ fun Workflow.launchForTestin
"Renamed to launchForTestingFromStateWith",
ReplaceWith(
"launchForTestingFromStateWith(props, initialState, context, block)",
- "com.squareup.workflow.testing.launchForTestingFromStateWith"
+ "com.squareup.workflow1.testing.launchForTestingFromStateWith"
)
)
@TestOnly
@@ -283,7 +283,7 @@ fun
"Renamed to launchForTestingFromStateWith",
ReplaceWith(
"launchForTestingFromStateWith(initialState, context, block)",
- "com.squareup.workflow.testing.launchForTestingFromStateWith"
+ "com.squareup.workflow1.testing.launchForTestingFromStateWith"
)
)
@TestOnly
@@ -318,7 +318,7 @@ fun
"Renamed to launchForTestingWith",
ReplaceWith(
"launchForTestingWith(props, testParams, context, block)",
- "com.squareup.workflow.testing.launchForTestingWith"
+ "com.squareup.workflow1.testing.launchForTestingWith"
)
)
@OptIn(ExperimentalWorkflowApi::class)
diff --git a/workflow-testing/src/test/java/com/squareup/workflow/FlowWorkersTest.kt b/workflow-testing/src/test/java/com/squareup/workflow1/FlowWorkersTest.kt
similarity index 97%
rename from workflow-testing/src/test/java/com/squareup/workflow/FlowWorkersTest.kt
rename to workflow-testing/src/test/java/com/squareup/workflow1/FlowWorkersTest.kt
index 5d7ee8d468..433e4ce43a 100644
--- a/workflow-testing/src/test/java/com/squareup/workflow/FlowWorkersTest.kt
+++ b/workflow-testing/src/test/java/com/squareup/workflow1/FlowWorkersTest.kt
@@ -15,9 +15,9 @@
*/
@file:Suppress("EXPERIMENTAL_API_USAGE")
-package com.squareup.workflow
+package com.squareup.workflow1
-import com.squareup.workflow.testing.test
+import com.squareup.workflow1.testing.test
import kotlinx.coroutines.CancellationException
import kotlinx.coroutines.channels.Channel
import kotlinx.coroutines.channels.consumeEach
diff --git a/workflow-testing/src/test/java/com/squareup/workflow/LifecycleWorkerTest.kt b/workflow-testing/src/test/java/com/squareup/workflow1/LifecycleWorkerTest.kt
similarity index 95%
rename from workflow-testing/src/test/java/com/squareup/workflow/LifecycleWorkerTest.kt
rename to workflow-testing/src/test/java/com/squareup/workflow1/LifecycleWorkerTest.kt
index 0a190089d0..45c5a7ffff 100644
--- a/workflow-testing/src/test/java/com/squareup/workflow/LifecycleWorkerTest.kt
+++ b/workflow-testing/src/test/java/com/squareup/workflow1/LifecycleWorkerTest.kt
@@ -15,9 +15,9 @@
*/
@file:Suppress("EXPERIMENTAL_API_USAGE")
-package com.squareup.workflow
+package com.squareup.workflow1
-import com.squareup.workflow.testing.test
+import com.squareup.workflow1.testing.test
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers.Unconfined
import kotlinx.coroutines.flow.launchIn
diff --git a/workflow-testing/src/test/java/com/squareup/workflow/SnapshottingIntegrationTest.kt b/workflow-testing/src/test/java/com/squareup/workflow1/SnapshottingIntegrationTest.kt
similarity index 95%
rename from workflow-testing/src/test/java/com/squareup/workflow/SnapshottingIntegrationTest.kt
rename to workflow-testing/src/test/java/com/squareup/workflow1/SnapshottingIntegrationTest.kt
index 0d8a0b3885..fb93dc0b82 100644
--- a/workflow-testing/src/test/java/com/squareup/workflow/SnapshottingIntegrationTest.kt
+++ b/workflow-testing/src/test/java/com/squareup/workflow1/SnapshottingIntegrationTest.kt
@@ -13,12 +13,12 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow
+package com.squareup.workflow1
-import com.squareup.workflow.WorkflowAction.Companion.noAction
-import com.squareup.workflow.testing.WorkflowTestParams
-import com.squareup.workflow.testing.WorkflowTestParams.StartMode.StartFromCompleteSnapshot
-import com.squareup.workflow.testing.launchForTestingFromStartWith
+import com.squareup.workflow1.WorkflowAction.Companion.noAction
+import com.squareup.workflow1.testing.WorkflowTestParams
+import com.squareup.workflow1.testing.WorkflowTestParams.StartMode.StartFromCompleteSnapshot
+import com.squareup.workflow1.testing.launchForTestingFromStartWith
import kotlin.test.Test
import kotlin.test.assertEquals
import kotlin.test.assertNotEquals
diff --git a/workflow-testing/src/test/java/com/squareup/workflow/TreeWorkflow.kt b/workflow-testing/src/test/java/com/squareup/workflow1/TreeWorkflow.kt
similarity index 96%
rename from workflow-testing/src/test/java/com/squareup/workflow/TreeWorkflow.kt
rename to workflow-testing/src/test/java/com/squareup/workflow1/TreeWorkflow.kt
index acce3ea5be..891d37e198 100644
--- a/workflow-testing/src/test/java/com/squareup/workflow/TreeWorkflow.kt
+++ b/workflow-testing/src/test/java/com/squareup/workflow1/TreeWorkflow.kt
@@ -13,9 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow
+package com.squareup.workflow1
-import com.squareup.workflow.TreeWorkflow.Rendering
+import com.squareup.workflow1.TreeWorkflow.Rendering
/**
* A [Workflow] that has a simple string state and can be configured with children at construction.
diff --git a/workflow-testing/src/test/java/com/squareup/workflow/WorkerCompositionIntegrationTest.kt b/workflow-testing/src/test/java/com/squareup/workflow1/WorkerCompositionIntegrationTest.kt
similarity index 97%
rename from workflow-testing/src/test/java/com/squareup/workflow/WorkerCompositionIntegrationTest.kt
rename to workflow-testing/src/test/java/com/squareup/workflow1/WorkerCompositionIntegrationTest.kt
index 02e418a666..1582bc31e0 100644
--- a/workflow-testing/src/test/java/com/squareup/workflow/WorkerCompositionIntegrationTest.kt
+++ b/workflow-testing/src/test/java/com/squareup/workflow1/WorkerCompositionIntegrationTest.kt
@@ -15,11 +15,11 @@
*/
@file:Suppress("EXPERIMENTAL_API_USAGE")
-package com.squareup.workflow
+package com.squareup.workflow1
-import com.squareup.workflow.WorkflowAction.Companion.noAction
-import com.squareup.workflow.testing.WorkerSink
-import com.squareup.workflow.testing.launchForTestingFromStartWith
+import com.squareup.workflow1.WorkflowAction.Companion.noAction
+import com.squareup.workflow1.testing.WorkerSink
+import com.squareup.workflow1.testing.launchForTestingFromStartWith
import kotlinx.coroutines.CoroutineDispatcher
import kotlinx.coroutines.Dispatchers.Unconfined
import kotlinx.coroutines.Job
diff --git a/workflow-testing/src/test/java/com/squareup/workflow/WorkerStressTest.kt b/workflow-testing/src/test/java/com/squareup/workflow1/WorkerStressTest.kt
similarity index 99%
rename from workflow-testing/src/test/java/com/squareup/workflow/WorkerStressTest.kt
rename to workflow-testing/src/test/java/com/squareup/workflow1/WorkerStressTest.kt
index 8b73c9a775..899df5ea94 100644
--- a/workflow-testing/src/test/java/com/squareup/workflow/WorkerStressTest.kt
+++ b/workflow-testing/src/test/java/com/squareup/workflow1/WorkerStressTest.kt
@@ -1,4 +1,4 @@
-package com.squareup.workflow
+package com.squareup.workflow1
import kotlinx.coroutines.ExperimentalCoroutinesApi
import kotlinx.coroutines.FlowPreview
diff --git a/workflow-testing/src/test/java/com/squareup/workflow/WorkerTest.kt b/workflow-testing/src/test/java/com/squareup/workflow1/WorkerTest.kt
similarity index 97%
rename from workflow-testing/src/test/java/com/squareup/workflow/WorkerTest.kt
rename to workflow-testing/src/test/java/com/squareup/workflow1/WorkerTest.kt
index d2e8d37bd4..48dd7126a2 100644
--- a/workflow-testing/src/test/java/com/squareup/workflow/WorkerTest.kt
+++ b/workflow-testing/src/test/java/com/squareup/workflow1/WorkerTest.kt
@@ -15,9 +15,9 @@
*/
@file:Suppress("EXPERIMENTAL_API_USAGE")
-package com.squareup.workflow
+package com.squareup.workflow1
-import com.squareup.workflow.testing.test
+import com.squareup.workflow1.testing.test
import kotlinx.coroutines.flow.flowOn
import kotlinx.coroutines.test.TestCoroutineDispatcher
import kotlin.test.Test
diff --git a/workflow-testing/src/test/java/com/squareup/workflow/WorkflowCompositionIntegrationTest.kt b/workflow-testing/src/test/java/com/squareup/workflow1/WorkflowCompositionIntegrationTest.kt
similarity index 96%
rename from workflow-testing/src/test/java/com/squareup/workflow/WorkflowCompositionIntegrationTest.kt
rename to workflow-testing/src/test/java/com/squareup/workflow1/WorkflowCompositionIntegrationTest.kt
index 1d519e9b18..97faf6dea4 100644
--- a/workflow-testing/src/test/java/com/squareup/workflow/WorkflowCompositionIntegrationTest.kt
+++ b/workflow-testing/src/test/java/com/squareup/workflow1/WorkflowCompositionIntegrationTest.kt
@@ -13,10 +13,10 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow
+package com.squareup.workflow1
-import com.squareup.workflow.testing.WorkerSink
-import com.squareup.workflow.testing.launchForTestingFromStartWith
+import com.squareup.workflow1.testing.WorkerSink
+import com.squareup.workflow1.testing.launchForTestingFromStartWith
import kotlin.test.Test
import kotlin.test.assertEquals
import kotlin.test.assertFails
diff --git a/workflow-testing/src/test/java/com/squareup/workflow/testing/RealRenderTesterTest.kt b/workflow-testing/src/test/java/com/squareup/workflow1/testing/RealRenderTesterTest.kt
similarity index 97%
rename from workflow-testing/src/test/java/com/squareup/workflow/testing/RealRenderTesterTest.kt
rename to workflow-testing/src/test/java/com/squareup/workflow1/testing/RealRenderTesterTest.kt
index 24e6856250..134d9193c0 100644
--- a/workflow-testing/src/test/java/com/squareup/workflow/testing/RealRenderTesterTest.kt
+++ b/workflow-testing/src/test/java/com/squareup/workflow1/testing/RealRenderTesterTest.kt
@@ -13,31 +13,31 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.testing
-
-import com.squareup.workflow.ExperimentalWorkflowApi
-import com.squareup.workflow.ImpostorWorkflow
-import com.squareup.workflow.RenderContext
-import com.squareup.workflow.Sink
-import com.squareup.workflow.Snapshot
-import com.squareup.workflow.StatefulWorkflow
-import com.squareup.workflow.StatelessWorkflow
-import com.squareup.workflow.Worker
-import com.squareup.workflow.Workflow
-import com.squareup.workflow.WorkflowAction
-import com.squareup.workflow.WorkflowAction.Companion.noAction
-import com.squareup.workflow.WorkflowAction.Updater
-import com.squareup.workflow.WorkflowIdentifier
-import com.squareup.workflow.WorkflowOutput
-import com.squareup.workflow.contraMap
-import com.squareup.workflow.identifier
-import com.squareup.workflow.renderChild
-import com.squareup.workflow.runningWorker
-import com.squareup.workflow.stateful
-import com.squareup.workflow.stateless
-import com.squareup.workflow.testing.RenderTester.ChildWorkflowMatch.Matched
-import com.squareup.workflow.unsnapshottableIdentifier
-import com.squareup.workflow.workflowIdentifier
+package com.squareup.workflow1.testing
+
+import com.squareup.workflow1.ExperimentalWorkflowApi
+import com.squareup.workflow1.ImpostorWorkflow
+import com.squareup.workflow1.RenderContext
+import com.squareup.workflow1.Sink
+import com.squareup.workflow1.Snapshot
+import com.squareup.workflow1.StatefulWorkflow
+import com.squareup.workflow1.StatelessWorkflow
+import com.squareup.workflow1.Worker
+import com.squareup.workflow1.Workflow
+import com.squareup.workflow1.WorkflowAction
+import com.squareup.workflow1.WorkflowAction.Companion.noAction
+import com.squareup.workflow1.WorkflowAction.Updater
+import com.squareup.workflow1.WorkflowIdentifier
+import com.squareup.workflow1.WorkflowOutput
+import com.squareup.workflow1.contraMap
+import com.squareup.workflow1.identifier
+import com.squareup.workflow1.renderChild
+import com.squareup.workflow1.runningWorker
+import com.squareup.workflow1.stateful
+import com.squareup.workflow1.stateless
+import com.squareup.workflow1.testing.RenderTester.ChildWorkflowMatch.Matched
+import com.squareup.workflow1.unsnapshottableIdentifier
+import com.squareup.workflow1.workflowIdentifier
import kotlinx.coroutines.flow.Flow
import kotlinx.coroutines.flow.emptyFlow
import kotlin.reflect.typeOf
@@ -627,7 +627,7 @@ class RealRenderTesterTest {
}
assertEquals(
"""
- Multiple expectations matched child worker com.squareup.workflow.Worker:
+ Multiple expectations matched child worker com.squareup.workflow1.Worker:
worker TestWorker
duplicate expectation
""".trimIndent(),
diff --git a/workflow-testing/src/test/java/com/squareup/workflow/testing/RenderIdempotencyCheckerTest.kt b/workflow-testing/src/test/java/com/squareup/workflow1/testing/RenderIdempotencyCheckerTest.kt
similarity index 92%
rename from workflow-testing/src/test/java/com/squareup/workflow/testing/RenderIdempotencyCheckerTest.kt
rename to workflow-testing/src/test/java/com/squareup/workflow1/testing/RenderIdempotencyCheckerTest.kt
index e1b68b8a39..46937b0469 100644
--- a/workflow-testing/src/test/java/com/squareup/workflow/testing/RenderIdempotencyCheckerTest.kt
+++ b/workflow-testing/src/test/java/com/squareup/workflow1/testing/RenderIdempotencyCheckerTest.kt
@@ -13,13 +13,13 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.testing
+package com.squareup.workflow1.testing
-import com.squareup.workflow.Workflow
-import com.squareup.workflow.action
-import com.squareup.workflow.renderChild
-import com.squareup.workflow.renderWorkflowIn
-import com.squareup.workflow.stateless
+import com.squareup.workflow1.Workflow
+import com.squareup.workflow1.action
+import com.squareup.workflow1.renderChild
+import com.squareup.workflow1.renderWorkflowIn
+import com.squareup.workflow1.stateless
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers.Unconfined
import kotlinx.coroutines.ExperimentalCoroutinesApi
diff --git a/workflow-testing/src/test/java/com/squareup/workflow/testing/WorkerRenderExpectationsTest.kt b/workflow-testing/src/test/java/com/squareup/workflow1/testing/WorkerRenderExpectationsTest.kt
similarity index 98%
rename from workflow-testing/src/test/java/com/squareup/workflow/testing/WorkerRenderExpectationsTest.kt
rename to workflow-testing/src/test/java/com/squareup/workflow1/testing/WorkerRenderExpectationsTest.kt
index c2950ea8c1..f5cd66496f 100644
--- a/workflow-testing/src/test/java/com/squareup/workflow/testing/WorkerRenderExpectationsTest.kt
+++ b/workflow-testing/src/test/java/com/squareup/workflow1/testing/WorkerRenderExpectationsTest.kt
@@ -13,14 +13,14 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.testing
-
-import com.squareup.workflow.Worker
-import com.squareup.workflow.Workflow
-import com.squareup.workflow.WorkflowOutput
-import com.squareup.workflow.action
-import com.squareup.workflow.runningWorker
-import com.squareup.workflow.stateless
+package com.squareup.workflow1.testing
+
+import com.squareup.workflow1.Worker
+import com.squareup.workflow1.Workflow
+import com.squareup.workflow1.WorkflowOutput
+import com.squareup.workflow1.action
+import com.squareup.workflow1.runningWorker
+import com.squareup.workflow1.stateless
import kotlinx.coroutines.flow.Flow
import kotlinx.coroutines.flow.emptyFlow
import kotlin.reflect.typeOf
diff --git a/workflow-testing/src/test/java/com/squareup/workflow/testing/WorkerSinkTest.kt b/workflow-testing/src/test/java/com/squareup/workflow1/testing/WorkerSinkTest.kt
similarity index 98%
rename from workflow-testing/src/test/java/com/squareup/workflow/testing/WorkerSinkTest.kt
rename to workflow-testing/src/test/java/com/squareup/workflow1/testing/WorkerSinkTest.kt
index f23ddec3f1..7c6070a565 100644
--- a/workflow-testing/src/test/java/com/squareup/workflow/testing/WorkerSinkTest.kt
+++ b/workflow-testing/src/test/java/com/squareup/workflow1/testing/WorkerSinkTest.kt
@@ -13,9 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.testing
+package com.squareup.workflow1.testing
-import com.squareup.workflow.Worker
+import com.squareup.workflow1.Worker
import kotlinx.coroutines.CoroutineStart.UNDISPATCHED
import kotlinx.coroutines.ExperimentalCoroutinesApi
import kotlinx.coroutines.async
diff --git a/workflow-testing/src/test/java/com/squareup/workflow/testing/WorkerTesterTest.kt b/workflow-testing/src/test/java/com/squareup/workflow1/testing/WorkerTesterTest.kt
similarity index 97%
rename from workflow-testing/src/test/java/com/squareup/workflow/testing/WorkerTesterTest.kt
rename to workflow-testing/src/test/java/com/squareup/workflow1/testing/WorkerTesterTest.kt
index a28e96b9f6..860299c1bf 100644
--- a/workflow-testing/src/test/java/com/squareup/workflow/testing/WorkerTesterTest.kt
+++ b/workflow-testing/src/test/java/com/squareup/workflow1/testing/WorkerTesterTest.kt
@@ -13,9 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.testing
+package com.squareup.workflow1.testing
-import com.squareup.workflow.Worker
+import com.squareup.workflow1.Worker
import kotlinx.coroutines.ExperimentalCoroutinesApi
import kotlinx.coroutines.suspendCancellableCoroutine
import kotlin.test.Test
diff --git a/workflow-testing/src/test/java/com/squareup/workflow/testing/WorkflowTestRuntimeTest.kt b/workflow-testing/src/test/java/com/squareup/workflow1/testing/WorkflowTestRuntimeTest.kt
similarity index 95%
rename from workflow-testing/src/test/java/com/squareup/workflow/testing/WorkflowTestRuntimeTest.kt
rename to workflow-testing/src/test/java/com/squareup/workflow1/testing/WorkflowTestRuntimeTest.kt
index 096cb5d965..d78e3df531 100644
--- a/workflow-testing/src/test/java/com/squareup/workflow/testing/WorkflowTestRuntimeTest.kt
+++ b/workflow-testing/src/test/java/com/squareup/workflow1/testing/WorkflowTestRuntimeTest.kt
@@ -15,16 +15,16 @@
*/
@file:Suppress("EXPERIMENTAL_API_USAGE")
-package com.squareup.workflow.testing
-
-import com.squareup.workflow.Snapshot
-import com.squareup.workflow.Worker
-import com.squareup.workflow.Workflow
-import com.squareup.workflow.internal.util.rethrowingUncaughtExceptions
-import com.squareup.workflow.runningWorker
-import com.squareup.workflow.stateful
-import com.squareup.workflow.stateless
-import com.squareup.workflow.testing.WorkflowTestParams.StartMode.StartFromWorkflowSnapshot
+package com.squareup.workflow1.testing
+
+import com.squareup.workflow1.Snapshot
+import com.squareup.workflow1.Worker
+import com.squareup.workflow1.Workflow
+import com.squareup.workflow1.internal.util.rethrowingUncaughtExceptions
+import com.squareup.workflow1.runningWorker
+import com.squareup.workflow1.stateful
+import com.squareup.workflow1.stateless
+import com.squareup.workflow1.testing.WorkflowTestParams.StartMode.StartFromWorkflowSnapshot
import kotlinx.coroutines.CancellationException
import kotlinx.coroutines.CompletableDeferred
import kotlinx.coroutines.Job
diff --git a/workflow-tracing/api/workflow-tracing.api b/workflow-tracing/api/workflow-tracing.api
index 5c2fa1ab81..d03861f31e 100644
--- a/workflow-tracing/api/workflow-tracing.api
+++ b/workflow-tracing/api/workflow-tracing.api
@@ -1,28 +1,28 @@
-public abstract interface class com/squareup/workflow/diagnostic/tracing/MemoryStats {
+public abstract interface class com/squareup/workflow1/diagnostic/tracing/MemoryStats {
public abstract fun freeMemory ()J
public abstract fun totalMemory ()J
}
-public final class com/squareup/workflow/diagnostic/tracing/RuntimeMemoryStats : com/squareup/workflow/diagnostic/tracing/MemoryStats {
- public static final field INSTANCE Lcom/squareup/workflow/diagnostic/tracing/RuntimeMemoryStats;
+public final class com/squareup/workflow1/diagnostic/tracing/RuntimeMemoryStats : com/squareup/workflow1/diagnostic/tracing/MemoryStats {
+ public static final field INSTANCE Lcom/squareup/workflow1/diagnostic/tracing/RuntimeMemoryStats;
public fun freeMemory ()J
public fun totalMemory ()J
}
-public final class com/squareup/workflow/diagnostic/tracing/TracingWorkflowInterceptor : com/squareup/workflow/WorkflowInterceptor {
- public fun (Lcom/squareup/workflow/diagnostic/tracing/MemoryStats;Lkotlin/jvm/functions/Function2;)V
- public synthetic fun (Lcom/squareup/workflow/diagnostic/tracing/MemoryStats;Lkotlin/jvm/functions/Function2;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
- public fun onInitialState (Ljava/lang/Object;Lcom/squareup/workflow/Snapshot;Lkotlin/jvm/functions/Function2;Lcom/squareup/workflow/WorkflowInterceptor$WorkflowSession;)Ljava/lang/Object;
- public fun onPropsChanged (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Lkotlin/jvm/functions/Function3;Lcom/squareup/workflow/WorkflowInterceptor$WorkflowSession;)Ljava/lang/Object;
- public fun onRender (Ljava/lang/Object;Ljava/lang/Object;Lcom/squareup/workflow/RenderContext;Lkotlin/jvm/functions/Function3;Lcom/squareup/workflow/WorkflowInterceptor$WorkflowSession;)Ljava/lang/Object;
- public fun onSessionStarted (Lkotlinx/coroutines/CoroutineScope;Lcom/squareup/workflow/WorkflowInterceptor$WorkflowSession;)V
- public fun onSnapshotState (Ljava/lang/Object;Lkotlin/jvm/functions/Function1;Lcom/squareup/workflow/WorkflowInterceptor$WorkflowSession;)Lcom/squareup/workflow/Snapshot;
+public final class com/squareup/workflow1/diagnostic/tracing/TracingWorkflowInterceptor : com/squareup/workflow1/WorkflowInterceptor {
+ public fun (Lcom/squareup/workflow1/diagnostic/tracing/MemoryStats;Lkotlin/jvm/functions/Function2;)V
+ public synthetic fun (Lcom/squareup/workflow1/diagnostic/tracing/MemoryStats;Lkotlin/jvm/functions/Function2;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
+ public fun onInitialState (Ljava/lang/Object;Lcom/squareup/workflow1/Snapshot;Lkotlin/jvm/functions/Function2;Lcom/squareup/workflow1/WorkflowInterceptor$WorkflowSession;)Ljava/lang/Object;
+ public fun onPropsChanged (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Lkotlin/jvm/functions/Function3;Lcom/squareup/workflow1/WorkflowInterceptor$WorkflowSession;)Ljava/lang/Object;
+ public fun onRender (Ljava/lang/Object;Ljava/lang/Object;Lcom/squareup/workflow1/RenderContext;Lkotlin/jvm/functions/Function3;Lcom/squareup/workflow1/WorkflowInterceptor$WorkflowSession;)Ljava/lang/Object;
+ public fun onSessionStarted (Lkotlinx/coroutines/CoroutineScope;Lcom/squareup/workflow1/WorkflowInterceptor$WorkflowSession;)V
+ public fun onSnapshotState (Ljava/lang/Object;Lkotlin/jvm/functions/Function1;Lcom/squareup/workflow1/WorkflowInterceptor$WorkflowSession;)Lcom/squareup/workflow1/Snapshot;
}
-public final class com/squareup/workflow/diagnostic/tracing/TracingWorkflowInterceptorKt {
- public static final fun TracingWorkflowInterceptor (Ljava/io/File;Ljava/lang/String;)Lcom/squareup/workflow/diagnostic/tracing/TracingWorkflowInterceptor;
- public static final fun TracingWorkflowInterceptor (Ljava/lang/String;Lcom/squareup/workflow/diagnostic/tracing/MemoryStats;Lkotlin/jvm/functions/Function1;)Lcom/squareup/workflow/diagnostic/tracing/TracingWorkflowInterceptor;
- public static synthetic fun TracingWorkflowInterceptor$default (Ljava/io/File;Ljava/lang/String;ILjava/lang/Object;)Lcom/squareup/workflow/diagnostic/tracing/TracingWorkflowInterceptor;
- public static synthetic fun TracingWorkflowInterceptor$default (Ljava/lang/String;Lcom/squareup/workflow/diagnostic/tracing/MemoryStats;Lkotlin/jvm/functions/Function1;ILjava/lang/Object;)Lcom/squareup/workflow/diagnostic/tracing/TracingWorkflowInterceptor;
+public final class com/squareup/workflow1/diagnostic/tracing/TracingWorkflowInterceptorKt {
+ public static final fun TracingWorkflowInterceptor (Ljava/io/File;Ljava/lang/String;)Lcom/squareup/workflow1/diagnostic/tracing/TracingWorkflowInterceptor;
+ public static final fun TracingWorkflowInterceptor (Ljava/lang/String;Lcom/squareup/workflow1/diagnostic/tracing/MemoryStats;Lkotlin/jvm/functions/Function1;)Lcom/squareup/workflow1/diagnostic/tracing/TracingWorkflowInterceptor;
+ public static synthetic fun TracingWorkflowInterceptor$default (Ljava/io/File;Ljava/lang/String;ILjava/lang/Object;)Lcom/squareup/workflow1/diagnostic/tracing/TracingWorkflowInterceptor;
+ public static synthetic fun TracingWorkflowInterceptor$default (Ljava/lang/String;Lcom/squareup/workflow1/diagnostic/tracing/MemoryStats;Lkotlin/jvm/functions/Function1;ILjava/lang/Object;)Lcom/squareup/workflow1/diagnostic/tracing/TracingWorkflowInterceptor;
}
diff --git a/workflow-tracing/src/main/java/com/squareup/workflow/diagnostic/tracing/GcDetector.kt b/workflow-tracing/src/main/java/com/squareup/workflow1/diagnostic/tracing/GcDetector.kt
similarity index 96%
rename from workflow-tracing/src/main/java/com/squareup/workflow/diagnostic/tracing/GcDetector.kt
rename to workflow-tracing/src/main/java/com/squareup/workflow1/diagnostic/tracing/GcDetector.kt
index d16b7bdd42..7fe13e8216 100644
--- a/workflow-tracing/src/main/java/com/squareup/workflow/diagnostic/tracing/GcDetector.kt
+++ b/workflow-tracing/src/main/java/com/squareup/workflow1/diagnostic/tracing/GcDetector.kt
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.diagnostic.tracing
+package com.squareup.workflow1.diagnostic.tracing
internal typealias GcDetectorConstructor = (onGcDetected: () -> Unit) -> GcDetector
diff --git a/workflow-tracing/src/main/java/com/squareup/workflow/diagnostic/tracing/MemoryStats.kt b/workflow-tracing/src/main/java/com/squareup/workflow1/diagnostic/tracing/MemoryStats.kt
similarity index 95%
rename from workflow-tracing/src/main/java/com/squareup/workflow/diagnostic/tracing/MemoryStats.kt
rename to workflow-tracing/src/main/java/com/squareup/workflow1/diagnostic/tracing/MemoryStats.kt
index 795af7252a..04f66a8d9b 100644
--- a/workflow-tracing/src/main/java/com/squareup/workflow/diagnostic/tracing/MemoryStats.kt
+++ b/workflow-tracing/src/main/java/com/squareup/workflow1/diagnostic/tracing/MemoryStats.kt
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.diagnostic.tracing
+package com.squareup.workflow1.diagnostic.tracing
/**
* Reports free/available memory.
diff --git a/workflow-tracing/src/main/java/com/squareup/workflow/diagnostic/tracing/TracingWorkflowInterceptor.kt b/workflow-tracing/src/main/java/com/squareup/workflow1/diagnostic/tracing/TracingWorkflowInterceptor.kt
similarity index 96%
rename from workflow-tracing/src/main/java/com/squareup/workflow/diagnostic/tracing/TracingWorkflowInterceptor.kt
rename to workflow-tracing/src/main/java/com/squareup/workflow1/diagnostic/tracing/TracingWorkflowInterceptor.kt
index 4946745470..5a8afe4709 100644
--- a/workflow-tracing/src/main/java/com/squareup/workflow/diagnostic/tracing/TracingWorkflowInterceptor.kt
+++ b/workflow-tracing/src/main/java/com/squareup/workflow1/diagnostic/tracing/TracingWorkflowInterceptor.kt
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.diagnostic.tracing
+package com.squareup.workflow1.diagnostic.tracing
import com.squareup.tracing.TraceEncoder
import com.squareup.tracing.TraceEvent.AsyncDurationBegin
@@ -28,16 +28,16 @@ import com.squareup.tracing.TraceEvent.ObjectCreated
import com.squareup.tracing.TraceEvent.ObjectDestroyed
import com.squareup.tracing.TraceEvent.ObjectSnapshot
import com.squareup.tracing.TraceLogger
-import com.squareup.workflow.ExperimentalWorkflowApi
-import com.squareup.workflow.RenderContext
-import com.squareup.workflow.Sink
-import com.squareup.workflow.Snapshot
-import com.squareup.workflow.WorkflowAction
-import com.squareup.workflow.WorkflowAction.Updater
-import com.squareup.workflow.WorkflowInterceptor
-import com.squareup.workflow.WorkflowInterceptor.WorkflowSession
-import com.squareup.workflow.WorkflowOutput
-import com.squareup.workflow.applyTo
+import com.squareup.workflow1.ExperimentalWorkflowApi
+import com.squareup.workflow1.RenderContext
+import com.squareup.workflow1.Sink
+import com.squareup.workflow1.Snapshot
+import com.squareup.workflow1.WorkflowAction
+import com.squareup.workflow1.WorkflowAction.Updater
+import com.squareup.workflow1.WorkflowInterceptor
+import com.squareup.workflow1.WorkflowInterceptor.WorkflowSession
+import com.squareup.workflow1.WorkflowOutput
+import com.squareup.workflow1.applyTo
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Job
import okio.buffer
diff --git a/workflow-tracing/src/test/java/com/squareup/workflow/diagnostic/tracing/TracingWorkflowInterceptorTest.kt b/workflow-tracing/src/test/java/com/squareup/workflow1/diagnostic/tracing/TracingWorkflowInterceptorTest.kt
similarity index 94%
rename from workflow-tracing/src/test/java/com/squareup/workflow/diagnostic/tracing/TracingWorkflowInterceptorTest.kt
rename to workflow-tracing/src/test/java/com/squareup/workflow1/diagnostic/tracing/TracingWorkflowInterceptorTest.kt
index 1d37f2907e..53aa6f8fe1 100644
--- a/workflow-tracing/src/test/java/com/squareup/workflow/diagnostic/tracing/TracingWorkflowInterceptorTest.kt
+++ b/workflow-tracing/src/test/java/com/squareup/workflow1/diagnostic/tracing/TracingWorkflowInterceptorTest.kt
@@ -13,17 +13,17 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.diagnostic.tracing
+package com.squareup.workflow1.diagnostic.tracing
import com.nhaarman.mockito_kotlin.mock
import com.squareup.tracing.TraceEncoder
-import com.squareup.workflow.RenderContext
-import com.squareup.workflow.Snapshot
-import com.squareup.workflow.StatefulWorkflow
-import com.squareup.workflow.action
-import com.squareup.workflow.asWorker
-import com.squareup.workflow.renderWorkflowIn
-import com.squareup.workflow.runningWorker
+import com.squareup.workflow1.RenderContext
+import com.squareup.workflow1.Snapshot
+import com.squareup.workflow1.StatefulWorkflow
+import com.squareup.workflow1.action
+import com.squareup.workflow1.asWorker
+import com.squareup.workflow1.renderWorkflowIn
+import com.squareup.workflow1.runningWorker
import kotlinx.coroutines.CompletableDeferred
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers.Unconfined
diff --git a/workflow-tracing/src/test/resources/com/squareup/workflow/diagnostic/tracing/expected_trace_file.txt b/workflow-tracing/src/test/resources/com/squareup/workflow1/diagnostic/tracing/expected_trace_file.txt
similarity index 50%
rename from workflow-tracing/src/test/resources/com/squareup/workflow/diagnostic/tracing/expected_trace_file.txt
rename to workflow-tracing/src/test/resources/com/squareup/workflow1/diagnostic/tracing/expected_trace_file.txt
index e4fc871aca..050b64cb49 100644
--- a/workflow-tracing/src/test/resources/com/squareup/workflow/diagnostic/tracing/expected_trace_file.txt
+++ b/workflow-tracing/src/test/resources/com/squareup/workflow1/diagnostic/tracing/expected_trace_file.txt
@@ -1,1077 +1,1077 @@
[
-{"name":"process_name","ph":"M","ts":0,"pid":0,"tid":0,"args":{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow)"}},
+{"name":"process_name","ph":"M","ts":0,"pid":0,"tid":0,"args":{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow)"}},
{"name":"thread_name","ph":"M","ts":0,"pid":0,"tid":0,"args":{"name":"Profiling"}},
{"name":"GC detected","cat":"system","ph":"i","ts":0,"pid":0,"tid":0,"s":"g","args":{"freeMemory":42,"totalMemory":43}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"workflow","ph":"b","ts":0,"pid":0,"tid":0,"id":"workflow","args":{"workflowId":"0","initialProps":"0","initialState":"initial","restoredFromSnapshot":false}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"N","ts":0,"pid":0,"tid":0,"id":"0"},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"workflow","ph":"b","ts":0,"pid":0,"tid":0,"id":"workflow","args":{"workflowId":"0","initialProps":"0","initialState":"initial","restoredFromSnapshot":false}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"N","ts":0,"pid":0,"tid":0,"id":"0"},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"0"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"0","state":"initial"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"initial"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"0","state":"initial"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"initial"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"initial"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"0","newProps":"1","oldState":"initial","newState":"changed state"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"0","newProps":"1","oldState":"initial","newState":"changed state"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"0","newProps":"1","oldState":"initial","newState":"changed state"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"1"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"1","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"1","state":"changed state"}},
{"name":"GC detected","cat":"system","ph":"i","ts":0,"pid":0,"tid":0,"s":"g","args":{"freeMemory":42,"totalMemory":43}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (1)","cat":"workflow","ph":"b","ts":0,"pid":0,"tid":0,"id":"workflow","args":{"workflowId":"1","initialProps":"0","initialState":"initial","restoredFromSnapshot":false,"parent":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (1)","ph":"N","ts":0,"pid":0,"tid":0,"id":"1"},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (1)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"1","props":"0","state":"initial"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (1)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"initial"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (1)","cat":"workflow","ph":"b","ts":0,"pid":0,"tid":0,"id":"workflow","args":{"workflowId":"1","initialProps":"0","initialState":"initial","restoredFromSnapshot":false,"parent":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (1)","ph":"N","ts":0,"pid":0,"tid":0,"id":"1"},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (1)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"1","props":"0","state":"initial"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (1)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"initial"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"1","newProps":"2","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"1","newProps":"2","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"1","newProps":"2","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"2"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"2","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (1)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"1","props":"0","state":"initial"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (1)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"initial"}},
-{"name":"worker com.squareup.workflow.Worker (2)","cat":"workflow","ph":"b","ts":0,"pid":0,"tid":0,"id":"workflow","args":{"workflowId":"2","initialProps":"TypedWorker(kotlin.String)","initialState":"0","restoredFromSnapshot":false,"parent":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)"}},
-{"name":"worker com.squareup.workflow.Worker (2)","ph":"N","ts":0,"pid":0,"tid":0,"id":"2"},
-{"name":"worker com.squareup.workflow.Worker (2)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"2","props":"TypedWorker(kotlin.String)","state":"0"}},
-{"name":"worker com.squareup.workflow.Worker (2)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"kotlin.Unit"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"2","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (1)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"1","props":"0","state":"initial"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (1)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"initial"}},
+{"name":"worker com.squareup.workflow1.Worker (2)","cat":"workflow","ph":"b","ts":0,"pid":0,"tid":0,"id":"workflow","args":{"workflowId":"2","initialProps":"TypedWorker(kotlin.String)","initialState":"0","restoredFromSnapshot":false,"parent":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)"}},
+{"name":"worker com.squareup.workflow1.Worker (2)","ph":"N","ts":0,"pid":0,"tid":0,"id":"2"},
+{"name":"worker com.squareup.workflow1.Worker (2)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"2","props":"TypedWorker(kotlin.String)","state":"0"}},
+{"name":"worker com.squareup.workflow1.Worker (2)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"kotlin.Unit"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"2","newProps":"3","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"2","newProps":"3","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"2","newProps":"3","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"3"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"3","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (1)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"1","props":"0","state":"initial"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (1)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"initial"}},
-{"name":"Props changed: worker com.squareup.workflow.Worker (2)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"TypedWorker(kotlin.String)","newProps":"TypedWorker(kotlin.String)","oldState":"0","newState":"{no change}"}},
-{"name":"worker com.squareup.workflow.Worker (2)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"2","props":"TypedWorker(kotlin.String)","state":"0"}},
-{"name":"worker com.squareup.workflow.Worker (2)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"kotlin.Unit"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"3","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (1)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"1","props":"0","state":"initial"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (1)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"initial"}},
+{"name":"Props changed: worker com.squareup.workflow1.Worker (2)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"TypedWorker(kotlin.String)","newProps":"TypedWorker(kotlin.String)","oldState":"0","newState":"{no change}"}},
+{"name":"worker com.squareup.workflow1.Worker (2)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"2","props":"TypedWorker(kotlin.String)","state":"0"}},
+{"name":"worker com.squareup.workflow1.Worker (2)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"kotlin.Unit"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
-{"name":"Sink received: worker com.squareup.workflow.Worker (2)","cat":"update","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"action":"sendAndAwaitApplication(com.squareup.workflow.EmitWorkerOutputAction(worker=TypedWorker(kotlin.String), key=\"\"))"}},
-{"name":"WorkflowAction: worker com.squareup.workflow.Worker (2)","cat":"update","ph":"i","ts":0,"pid":0,"tid":0,"s":"p","args":{"action":"sendAndAwaitApplication(com.squareup.workflow.EmitWorkerOutputAction(worker=TypedWorker(kotlin.String), key=\"\"))","oldState":"0","newState":"{no change}","output":"fired!"}},
-{"name":"worker com.squareup.workflow.Worker (2)","ph":"O","ts":0,"pid":0,"tid":0,"id":"2","args":{"snapshot":"0"}},
+{"name":"Sink received: worker com.squareup.workflow1.Worker (2)","cat":"update","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"action":"sendAndAwaitApplication(com.squareup.workflow1.EmitWorkerOutputAction(worker=TypedWorker(kotlin.String), key=\"\"))"}},
+{"name":"WorkflowAction: worker com.squareup.workflow1.Worker (2)","cat":"update","ph":"i","ts":0,"pid":0,"tid":0,"s":"p","args":{"action":"sendAndAwaitApplication(com.squareup.workflow1.EmitWorkerOutputAction(worker=TypedWorker(kotlin.String), key=\"\"))","oldState":"0","newState":"{no change}","output":"fired!"}},
+{"name":"worker com.squareup.workflow1.Worker (2)","ph":"O","ts":0,"pid":0,"tid":0,"id":"2","args":{"snapshot":"0"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"3"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"3","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (1)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"1","props":"0","state":"initial"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (1)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"initial"}},
-{"name":"Props changed: worker com.squareup.workflow.Worker (2)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"TypedWorker(kotlin.String)","newProps":"TypedWorker(kotlin.String)","oldState":"0","newState":"{no change}"}},
-{"name":"worker com.squareup.workflow.Worker (2)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"2","props":"TypedWorker(kotlin.String)","state":"0"}},
-{"name":"worker com.squareup.workflow.Worker (2)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"kotlin.Unit"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"3","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (1)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"1","props":"0","state":"initial"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (1)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"initial"}},
+{"name":"Props changed: worker com.squareup.workflow1.Worker (2)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"TypedWorker(kotlin.String)","newProps":"TypedWorker(kotlin.String)","oldState":"0","newState":"{no change}"}},
+{"name":"worker com.squareup.workflow1.Worker (2)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"2","props":"TypedWorker(kotlin.String)","state":"0"}},
+{"name":"worker com.squareup.workflow1.Worker (2)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"kotlin.Unit"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"3","newProps":"4","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"3","newProps":"4","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"3","newProps":"4","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"4"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"4","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (1)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"1","props":"0","state":"initial"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (1)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"initial"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"4","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (1)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"1","props":"0","state":"initial"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (1)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"initial"}},
{"name":"GC detected","cat":"system","ph":"i","ts":0,"pid":0,"tid":0,"s":"g","args":{"freeMemory":42,"totalMemory":43}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow):second (3)","cat":"workflow","ph":"b","ts":0,"pid":0,"tid":0,"id":"workflow","args":{"workflowId":"3","initialProps":"1","initialState":"initial","restoredFromSnapshot":false,"parent":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow):second (3)","ph":"N","ts":0,"pid":0,"tid":0,"id":"3"},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow):second (3)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"3","props":"1","state":"initial"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow):second (3)","cat":"workflow","ph":"b","ts":0,"pid":0,"tid":0,"id":"workflow","args":{"workflowId":"3","initialProps":"1","initialState":"initial","restoredFromSnapshot":false,"parent":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow):second (3)","ph":"N","ts":0,"pid":0,"tid":0,"id":"3"},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow):second (3)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"3","props":"1","state":"initial"}},
{"name":"GC detected","cat":"system","ph":"i","ts":0,"pid":0,"tid":0,"s":"g","args":{"freeMemory":42,"totalMemory":43}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (4)","cat":"workflow","ph":"b","ts":0,"pid":0,"tid":0,"id":"workflow","args":{"workflowId":"4","initialProps":"0","initialState":"initial","restoredFromSnapshot":false,"parent":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow):second (3)"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (4)","ph":"N","ts":0,"pid":0,"tid":0,"id":"4"},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (4)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"4","props":"0","state":"initial"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (4)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"initial"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow):second (3)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (4)","cat":"workflow","ph":"b","ts":0,"pid":0,"tid":0,"id":"workflow","args":{"workflowId":"4","initialProps":"0","initialState":"initial","restoredFromSnapshot":false,"parent":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow):second (3)"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (4)","ph":"N","ts":0,"pid":0,"tid":0,"id":"4"},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (4)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"4","props":"0","state":"initial"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (4)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"initial"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow):second (3)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
-{"name":"worker com.squareup.workflow.Worker (2)","cat":"workflow","ph":"e","ts":0,"pid":0,"tid":0,"id":"workflow"},
-{"name":"worker com.squareup.workflow.Worker (2)","ph":"D","ts":0,"pid":0,"tid":0,"id":"2"},
+{"name":"worker com.squareup.workflow1.Worker (2)","cat":"workflow","ph":"e","ts":0,"pid":0,"tid":0,"id":"workflow"},
+{"name":"worker com.squareup.workflow1.Worker (2)","ph":"D","ts":0,"pid":0,"tid":0,"id":"2"},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"4","newProps":"5","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"4","newProps":"5","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"4","newProps":"5","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"5"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"5","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (1)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"1","props":"0","state":"initial"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (1)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"initial"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow):second (3)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"3","props":"1","state":"initial"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (4)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"4","props":"0","state":"initial"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (4)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"initial"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow):second (3)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"5","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (1)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"1","props":"0","state":"initial"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (1)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"initial"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow):second (3)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"3","props":"1","state":"initial"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (4)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"4","props":"0","state":"initial"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (4)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"initial"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow):second (3)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"5","newProps":"6","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"5","newProps":"6","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"5","newProps":"6","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"6"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"6","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (1)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"1","props":"0","state":"initial"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (1)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"initial"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"6","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (1)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"1","props":"0","state":"initial"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (1)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"initial"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (4)","cat":"workflow","ph":"e","ts":0,"pid":0,"tid":0,"id":"workflow"},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (4)","ph":"D","ts":0,"pid":0,"tid":0,"id":"4"},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow):second (3)","cat":"workflow","ph":"e","ts":0,"pid":0,"tid":0,"id":"workflow"},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow):second (3)","ph":"D","ts":0,"pid":0,"tid":0,"id":"3"},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (4)","cat":"workflow","ph":"e","ts":0,"pid":0,"tid":0,"id":"workflow"},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (4)","ph":"D","ts":0,"pid":0,"tid":0,"id":"4"},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow):second (3)","cat":"workflow","ph":"e","ts":0,"pid":0,"tid":0,"id":"workflow"},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow):second (3)","ph":"D","ts":0,"pid":0,"tid":0,"id":"3"},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"6","newProps":"7","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"6","newProps":"7","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"6","newProps":"7","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"7"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"7","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"7","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (1)","cat":"workflow","ph":"e","ts":0,"pid":0,"tid":0,"id":"workflow"},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (1)","ph":"D","ts":0,"pid":0,"tid":0,"id":"1"},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (1)","cat":"workflow","ph":"e","ts":0,"pid":0,"tid":0,"id":"workflow"},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (1)","ph":"D","ts":0,"pid":0,"tid":0,"id":"1"},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"7","newProps":"8","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"7","newProps":"8","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"7","newProps":"8","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"8"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"8","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"8","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"8","newProps":"9","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"8","newProps":"9","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"8","newProps":"9","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"9"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"9","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"9","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"9","newProps":"10","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"9","newProps":"10","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"9","newProps":"10","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"10"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"10","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"10","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"rendering"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"10","newProps":"11","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"10","newProps":"11","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"10","newProps":"11","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"11"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"11","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"11","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"11","newProps":"12","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"11","newProps":"12","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"11","newProps":"12","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"12"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"12","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"12","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"12","newProps":"13","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"12","newProps":"13","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"12","newProps":"13","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"13"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"13","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"13","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"13","newProps":"14","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"13","newProps":"14","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"13","newProps":"14","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"14"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"14","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"14","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"14","newProps":"15","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"14","newProps":"15","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"14","newProps":"15","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"15"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"15","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"15","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"15","newProps":"16","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"15","newProps":"16","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"15","newProps":"16","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"16"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"16","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"16","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"16","newProps":"17","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"16","newProps":"17","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"16","newProps":"17","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"17"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"17","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"17","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"17","newProps":"18","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"17","newProps":"18","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"17","newProps":"18","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"18"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"18","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"18","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"18","newProps":"19","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"18","newProps":"19","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"18","newProps":"19","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"19"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"19","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"19","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"19","newProps":"20","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"19","newProps":"20","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"19","newProps":"20","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"20"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"20","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"20","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"20","newProps":"21","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"20","newProps":"21","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"20","newProps":"21","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"21"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"21","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"21","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"21","newProps":"22","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"21","newProps":"22","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"21","newProps":"22","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"22"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"22","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"22","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"22","newProps":"23","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"22","newProps":"23","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"22","newProps":"23","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"23"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"23","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"23","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"23","newProps":"24","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"23","newProps":"24","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"23","newProps":"24","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"24"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"24","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"24","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"24","newProps":"25","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"24","newProps":"25","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"24","newProps":"25","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"25"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"25","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"25","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"25","newProps":"26","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"25","newProps":"26","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"25","newProps":"26","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"26"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"26","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"26","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"26","newProps":"27","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"26","newProps":"27","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"26","newProps":"27","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"27"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"27","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"27","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"27","newProps":"28","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"27","newProps":"28","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"27","newProps":"28","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"28"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"28","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"28","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"28","newProps":"29","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"28","newProps":"29","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"28","newProps":"29","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"29"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"29","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"29","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"29","newProps":"30","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"29","newProps":"30","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"29","newProps":"30","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"30"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"30","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"30","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"30","newProps":"31","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"30","newProps":"31","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"30","newProps":"31","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"31"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"31","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"31","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"31","newProps":"32","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"31","newProps":"32","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"31","newProps":"32","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"32"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"32","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"32","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"32","newProps":"33","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"32","newProps":"33","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"32","newProps":"33","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"33"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"33","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"33","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"33","newProps":"34","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"33","newProps":"34","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"33","newProps":"34","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"34"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"34","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"34","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"34","newProps":"35","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"34","newProps":"35","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"34","newProps":"35","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"35"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"35","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"35","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"35","newProps":"36","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"35","newProps":"36","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"35","newProps":"36","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"36"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"36","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"36","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"36","newProps":"37","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"36","newProps":"37","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"36","newProps":"37","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"37"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"37","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"37","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"37","newProps":"38","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"37","newProps":"38","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"37","newProps":"38","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"38"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"38","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"38","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"38","newProps":"39","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"38","newProps":"39","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"38","newProps":"39","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"39"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"39","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"39","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"39","newProps":"40","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"39","newProps":"40","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"39","newProps":"40","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"40"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"40","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"40","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"40","newProps":"41","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"40","newProps":"41","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"40","newProps":"41","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"41"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"41","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"41","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"41","newProps":"42","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"41","newProps":"42","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"41","newProps":"42","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"42"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"42","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"42","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"42","newProps":"43","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"42","newProps":"43","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"42","newProps":"43","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"43"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"43","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"43","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"43","newProps":"44","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"43","newProps":"44","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"43","newProps":"44","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"44"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"44","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"44","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"44","newProps":"45","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"44","newProps":"45","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"44","newProps":"45","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"45"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"45","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"45","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"45","newProps":"46","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"45","newProps":"46","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"45","newProps":"46","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"46"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"46","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"46","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"46","newProps":"47","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"46","newProps":"47","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"46","newProps":"47","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"47"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"47","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"47","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"47","newProps":"48","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"47","newProps":"48","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"47","newProps":"48","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"48"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"48","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"48","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"48","newProps":"49","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"48","newProps":"49","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"48","newProps":"49","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"49"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"49","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"49","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"49","newProps":"50","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"49","newProps":"50","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"49","newProps":"50","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"50"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"50","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"50","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"50","newProps":"51","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"50","newProps":"51","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"50","newProps":"51","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"51"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"51","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"51","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"51","newProps":"52","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"51","newProps":"52","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"51","newProps":"52","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"52"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"52","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"52","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"52","newProps":"53","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"52","newProps":"53","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"52","newProps":"53","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"53"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"53","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"53","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"53","newProps":"54","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"53","newProps":"54","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"53","newProps":"54","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"54"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"54","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"54","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"54","newProps":"55","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"54","newProps":"55","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"54","newProps":"55","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"55"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"55","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"55","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"55","newProps":"56","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"55","newProps":"56","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"55","newProps":"56","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"56"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"56","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"56","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"56","newProps":"57","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"56","newProps":"57","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"56","newProps":"57","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"57"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"57","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"57","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"57","newProps":"58","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"57","newProps":"58","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"57","newProps":"58","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"58"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"58","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"58","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"58","newProps":"59","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"58","newProps":"59","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"58","newProps":"59","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"59"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"59","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"59","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"59","newProps":"60","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"59","newProps":"60","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"59","newProps":"60","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"60"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"60","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"60","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"60","newProps":"61","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"60","newProps":"61","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"60","newProps":"61","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"61"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"61","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"61","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"61","newProps":"62","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"61","newProps":"62","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"61","newProps":"62","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"62"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"62","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"62","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"62","newProps":"63","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"62","newProps":"63","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"62","newProps":"63","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"63"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"63","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"63","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"63","newProps":"64","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"63","newProps":"64","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"63","newProps":"64","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"64"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"64","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"64","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"64","newProps":"65","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"64","newProps":"65","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"64","newProps":"65","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"65"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"65","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"65","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"65","newProps":"66","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"65","newProps":"66","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"65","newProps":"66","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"66"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"66","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"66","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"66","newProps":"67","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"66","newProps":"67","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"66","newProps":"67","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"67"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"67","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"67","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"67","newProps":"68","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"67","newProps":"68","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"67","newProps":"68","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"68"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"68","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"68","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"68","newProps":"69","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"68","newProps":"69","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"68","newProps":"69","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"69"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"69","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"69","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"69","newProps":"70","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"69","newProps":"70","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"69","newProps":"70","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"70"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"70","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"70","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"70","newProps":"71","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"70","newProps":"71","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"70","newProps":"71","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"71"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"71","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"71","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"71","newProps":"72","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"71","newProps":"72","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"71","newProps":"72","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"72"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"72","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"72","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"72","newProps":"73","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"72","newProps":"73","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"72","newProps":"73","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"73"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"73","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"73","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"73","newProps":"74","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"73","newProps":"74","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"73","newProps":"74","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"74"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"74","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"74","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"74","newProps":"75","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"74","newProps":"75","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"74","newProps":"75","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"75"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"75","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"75","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"75","newProps":"76","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"75","newProps":"76","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"75","newProps":"76","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"76"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"76","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"76","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"76","newProps":"77","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"76","newProps":"77","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"76","newProps":"77","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"77"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"77","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"77","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"77","newProps":"78","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"77","newProps":"78","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"77","newProps":"78","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"78"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"78","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"78","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"78","newProps":"79","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"78","newProps":"79","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"78","newProps":"79","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"79"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"79","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"79","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"79","newProps":"80","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"79","newProps":"80","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"79","newProps":"80","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"80"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"80","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"80","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"80","newProps":"81","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"80","newProps":"81","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"80","newProps":"81","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"81"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"81","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"81","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"81","newProps":"82","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"81","newProps":"82","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"81","newProps":"82","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"82"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"82","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"82","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"82","newProps":"83","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"82","newProps":"83","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"82","newProps":"83","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"83"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"83","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"83","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"83","newProps":"84","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"83","newProps":"84","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"83","newProps":"84","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"84"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"84","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"84","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"84","newProps":"85","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"84","newProps":"85","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"84","newProps":"85","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"85"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"85","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"85","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"85","newProps":"86","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"85","newProps":"86","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"85","newProps":"86","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"86"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"86","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"86","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"86","newProps":"87","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"86","newProps":"87","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"86","newProps":"87","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"87"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"87","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"87","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"87","newProps":"88","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"87","newProps":"88","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"87","newProps":"88","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"88"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"88","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"88","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"88","newProps":"89","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"88","newProps":"89","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"88","newProps":"89","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"89"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"89","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"89","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"89","newProps":"90","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"89","newProps":"90","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"89","newProps":"90","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"90"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"90","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"90","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"90","newProps":"91","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"90","newProps":"91","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"90","newProps":"91","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"91"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"91","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"91","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"91","newProps":"92","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"91","newProps":"92","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"91","newProps":"92","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"92"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"92","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"92","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"92","newProps":"93","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"92","newProps":"93","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"92","newProps":"93","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"93"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"93","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"93","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"93","newProps":"94","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"93","newProps":"94","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"93","newProps":"94","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"94"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"94","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"94","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"94","newProps":"95","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"94","newProps":"95","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"94","newProps":"95","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"95"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"95","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"95","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"95","newProps":"96","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"95","newProps":"96","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"95","newProps":"96","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"96"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"96","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"96","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"96","newProps":"97","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"96","newProps":"97","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"96","newProps":"97","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"97"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"97","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"97","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"97","newProps":"98","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"97","newProps":"98","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"97","newProps":"98","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"98"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"98","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"98","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"98","newProps":"99","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"98","newProps":"99","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"98","newProps":"99","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"99"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"99","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"99","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Snapshot","ph":"E","ts":0,"pid":0,"tid":0,"args":{}},
{"name":"Props changed: {root}","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"99","newProps":"100","oldState":"changed state","newState":"{no change}"}},
-{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"99","newProps":"100","oldState":"changed state","newState":"{no change}"}},
+{"name":"Props changed: WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","ph":"i","ts":0,"pid":0,"tid":0,"s":"t","args":{"oldProps":"99","newProps":"100","oldState":"changed state","newState":"{no change}"}},
{"name":"Render Pass","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"props":"100"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"100","state":"changed state"}},
-{"name":"WorkflowIdentifier(com.squareup.workflow.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"B","ts":0,"pid":0,"tid":0,"args":{"workflowId":"0","props":"100","state":"changed state"}},
+{"name":"WorkflowIdentifier(com.squareup.workflow1.diagnostic.tracing.TracingWorkflowInterceptorTest$TestWorkflow) (0)","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"Render Pass","cat":"rendering","ph":"E","ts":0,"pid":0,"tid":0,"args":{"rendering":"final"}},
{"name":"used/free memory","ph":"C","ts":0,"pid":0,"tid":0,"args":{"usedMemory":1,"freeMemory":42}},
{"name":"Snapshot","ph":"B","ts":0,"pid":0,"tid":0,"args":{}},
diff --git a/workflow-ui/backstack-android/api/backstack-android.api b/workflow-ui/backstack-android/api/backstack-android.api
index a269c26b89..af2e2287d6 100644
--- a/workflow-ui/backstack-android/api/backstack-android.api
+++ b/workflow-ui/backstack-android/api/backstack-android.api
@@ -1,19 +1,19 @@
-public final class com/squareup/workflow/ui/backstack/BackStackConfig : java/lang/Enum {
- public static final field Companion Lcom/squareup/workflow/ui/backstack/BackStackConfig$Companion;
- public static final field First Lcom/squareup/workflow/ui/backstack/BackStackConfig;
- public static final field None Lcom/squareup/workflow/ui/backstack/BackStackConfig;
- public static final field Other Lcom/squareup/workflow/ui/backstack/BackStackConfig;
- public static fun valueOf (Ljava/lang/String;)Lcom/squareup/workflow/ui/backstack/BackStackConfig;
- public static fun values ()[Lcom/squareup/workflow/ui/backstack/BackStackConfig;
+public final class com/squareup/workflow1/ui/backstack/BackStackConfig : java/lang/Enum {
+ public static final field Companion Lcom/squareup/workflow1/ui/backstack/BackStackConfig$Companion;
+ public static final field First Lcom/squareup/workflow1/ui/backstack/BackStackConfig;
+ public static final field None Lcom/squareup/workflow1/ui/backstack/BackStackConfig;
+ public static final field Other Lcom/squareup/workflow1/ui/backstack/BackStackConfig;
+ public static fun valueOf (Ljava/lang/String;)Lcom/squareup/workflow1/ui/backstack/BackStackConfig;
+ public static fun values ()[Lcom/squareup/workflow1/ui/backstack/BackStackConfig;
}
-public final class com/squareup/workflow/ui/backstack/BackStackConfig$Companion : com/squareup/workflow/ui/ViewEnvironmentKey {
- public fun getDefault ()Lcom/squareup/workflow/ui/backstack/BackStackConfig;
+public final class com/squareup/workflow1/ui/backstack/BackStackConfig$Companion : com/squareup/workflow1/ui/ViewEnvironmentKey {
+ public fun getDefault ()Lcom/squareup/workflow1/ui/backstack/BackStackConfig;
public synthetic fun getDefault ()Ljava/lang/Object;
}
-public class com/squareup/workflow/ui/backstack/BackStackContainer : android/widget/FrameLayout {
- public static final field Companion Lcom/squareup/workflow/ui/backstack/BackStackContainer$Companion;
+public class com/squareup/workflow1/ui/backstack/BackStackContainer : android/widget/FrameLayout {
+ public static final field Companion Lcom/squareup/workflow1/ui/backstack/BackStackContainer$Companion;
public fun (Landroid/content/Context;)V
public fun (Landroid/content/Context;Landroid/util/AttributeSet;)V
public fun (Landroid/content/Context;Landroid/util/AttributeSet;I)V
@@ -22,16 +22,16 @@ public class com/squareup/workflow/ui/backstack/BackStackContainer : android/wid
protected fun onRestoreInstanceState (Landroid/os/Parcelable;)V
protected fun onSaveInstanceState ()Landroid/os/Parcelable;
protected fun performTransition (Landroid/view/View;Landroid/view/View;Z)V
- protected final fun update (Lcom/squareup/workflow/ui/backstack/BackStackScreen;Lcom/squareup/workflow/ui/ViewEnvironment;)V
+ protected final fun update (Lcom/squareup/workflow1/ui/backstack/BackStackScreen;Lcom/squareup/workflow1/ui/ViewEnvironment;)V
}
-public final class com/squareup/workflow/ui/backstack/BackStackContainer$Companion : com/squareup/workflow/ui/ViewFactory {
- public fun buildView (Lcom/squareup/workflow/ui/backstack/BackStackScreen;Lcom/squareup/workflow/ui/ViewEnvironment;Landroid/content/Context;Landroid/view/ViewGroup;)Landroid/view/View;
- public synthetic fun buildView (Ljava/lang/Object;Lcom/squareup/workflow/ui/ViewEnvironment;Landroid/content/Context;Landroid/view/ViewGroup;)Landroid/view/View;
+public final class com/squareup/workflow1/ui/backstack/BackStackContainer$Companion : com/squareup/workflow1/ui/ViewFactory {
+ public fun buildView (Lcom/squareup/workflow1/ui/backstack/BackStackScreen;Lcom/squareup/workflow1/ui/ViewEnvironment;Landroid/content/Context;Landroid/view/ViewGroup;)Landroid/view/View;
+ public synthetic fun buildView (Ljava/lang/Object;Lcom/squareup/workflow1/ui/ViewEnvironment;Landroid/content/Context;Landroid/view/ViewGroup;)Landroid/view/View;
public fun getType ()Lkotlin/reflect/KClass;
}
-public final class com/squareup/workflow/ui/backstack/BuildConfig {
+public final class com/squareup/workflow1/ui/backstack/BuildConfig {
public static final field BUILD_TYPE Ljava/lang/String;
public static final field DEBUG Z
public static final field LIBRARY_PACKAGE_NAME Ljava/lang/String;
@@ -40,45 +40,45 @@ public final class com/squareup/workflow/ui/backstack/BuildConfig {
public fun ()V
}
-public final class com/squareup/workflow/ui/backstack/ViewStateCache : android/os/Parcelable {
- public static final field CREATOR Lcom/squareup/workflow/ui/backstack/ViewStateCache$CREATOR;
+public final class com/squareup/workflow1/ui/backstack/ViewStateCache : android/os/Parcelable {
+ public static final field CREATOR Lcom/squareup/workflow1/ui/backstack/ViewStateCache$CREATOR;
public fun ()V
public synthetic fun (Ljava/util/Map;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
public fun describeContents ()I
public final fun prune (Ljava/util/Collection;)V
- public final fun restore (Lcom/squareup/workflow/ui/backstack/ViewStateCache;)V
+ public final fun restore (Lcom/squareup/workflow1/ui/backstack/ViewStateCache;)V
public final fun update (Ljava/util/Collection;Landroid/view/View;Landroid/view/View;)V
public fun writeToParcel (Landroid/os/Parcel;I)V
}
-public final class com/squareup/workflow/ui/backstack/ViewStateCache$CREATOR : android/os/Parcelable$Creator {
- public fun createFromParcel (Landroid/os/Parcel;)Lcom/squareup/workflow/ui/backstack/ViewStateCache;
+public final class com/squareup/workflow1/ui/backstack/ViewStateCache$CREATOR : android/os/Parcelable$Creator {
+ public fun createFromParcel (Landroid/os/Parcel;)Lcom/squareup/workflow1/ui/backstack/ViewStateCache;
public synthetic fun createFromParcel (Landroid/os/Parcel;)Ljava/lang/Object;
- public fun newArray (I)[Lcom/squareup/workflow/ui/backstack/ViewStateCache;
+ public fun newArray (I)[Lcom/squareup/workflow1/ui/backstack/ViewStateCache;
public synthetic fun newArray (I)[Ljava/lang/Object;
}
-public final class com/squareup/workflow/ui/backstack/ViewStateCache$SavedState : android/view/View$BaseSavedState {
- public static final field CREATOR Lcom/squareup/workflow/ui/backstack/ViewStateCache$SavedState$CREATOR;
+public final class com/squareup/workflow1/ui/backstack/ViewStateCache$SavedState : android/view/View$BaseSavedState {
+ public static final field CREATOR Lcom/squareup/workflow1/ui/backstack/ViewStateCache$SavedState$CREATOR;
public fun (Landroid/os/Parcel;)V
- public fun (Landroid/os/Parcelable;Lcom/squareup/workflow/ui/backstack/ViewStateCache;)V
- public final fun getViewStateCache ()Lcom/squareup/workflow/ui/backstack/ViewStateCache;
+ public fun (Landroid/os/Parcelable;Lcom/squareup/workflow1/ui/backstack/ViewStateCache;)V
+ public final fun getViewStateCache ()Lcom/squareup/workflow1/ui/backstack/ViewStateCache;
public fun writeToParcel (Landroid/os/Parcel;I)V
}
-public final class com/squareup/workflow/ui/backstack/ViewStateCache$SavedState$CREATOR : android/os/Parcelable$Creator {
- public fun createFromParcel (Landroid/os/Parcel;)Lcom/squareup/workflow/ui/backstack/ViewStateCache$SavedState;
+public final class com/squareup/workflow1/ui/backstack/ViewStateCache$SavedState$CREATOR : android/os/Parcelable$Creator {
+ public fun createFromParcel (Landroid/os/Parcel;)Lcom/squareup/workflow1/ui/backstack/ViewStateCache$SavedState;
public synthetic fun createFromParcel (Landroid/os/Parcel;)Ljava/lang/Object;
- public fun newArray (I)[Lcom/squareup/workflow/ui/backstack/ViewStateCache$SavedState;
+ public fun newArray (I)[Lcom/squareup/workflow1/ui/backstack/ViewStateCache$SavedState;
public synthetic fun newArray (I)[Ljava/lang/Object;
}
-public final class com/squareup/workflow/ui/backstack/databinding/ViewStackLayoutBinding : androidx/viewbinding/ViewBinding {
- public final field viewStack Lcom/squareup/workflow/ui/backstack/BackStackContainer;
- public static fun bind (Landroid/view/View;)Lcom/squareup/workflow/ui/backstack/databinding/ViewStackLayoutBinding;
+public final class com/squareup/workflow1/ui/backstack/databinding/ViewStackLayoutBinding : androidx/viewbinding/ViewBinding {
+ public final field viewStack Lcom/squareup/workflow1/ui/backstack/BackStackContainer;
+ public static fun bind (Landroid/view/View;)Lcom/squareup/workflow1/ui/backstack/databinding/ViewStackLayoutBinding;
public synthetic fun getRoot ()Landroid/view/View;
- public fun getRoot ()Lcom/squareup/workflow/ui/backstack/BackStackContainer;
- public static fun inflate (Landroid/view/LayoutInflater;)Lcom/squareup/workflow/ui/backstack/databinding/ViewStackLayoutBinding;
- public static fun inflate (Landroid/view/LayoutInflater;Landroid/view/ViewGroup;Z)Lcom/squareup/workflow/ui/backstack/databinding/ViewStackLayoutBinding;
+ public fun getRoot ()Lcom/squareup/workflow1/ui/backstack/BackStackContainer;
+ public static fun inflate (Landroid/view/LayoutInflater;)Lcom/squareup/workflow1/ui/backstack/databinding/ViewStackLayoutBinding;
+ public static fun inflate (Landroid/view/LayoutInflater;Landroid/view/ViewGroup;Z)Lcom/squareup/workflow1/ui/backstack/databinding/ViewStackLayoutBinding;
}
diff --git a/workflow-ui/backstack-android/src/main/AndroidManifest.xml b/workflow-ui/backstack-android/src/main/AndroidManifest.xml
index 188e7819ec..4929f82dc0 100644
--- a/workflow-ui/backstack-android/src/main/AndroidManifest.xml
+++ b/workflow-ui/backstack-android/src/main/AndroidManifest.xml
@@ -13,4 +13,4 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
-
+
diff --git a/workflow-ui/backstack-android/src/main/java/com/squareup/workflow/ui/backstack/BackStackConfig.kt b/workflow-ui/backstack-android/src/main/java/com/squareup/workflow1/ui/backstack/BackStackConfig.kt
similarity index 82%
rename from workflow-ui/backstack-android/src/main/java/com/squareup/workflow/ui/backstack/BackStackConfig.kt
rename to workflow-ui/backstack-android/src/main/java/com/squareup/workflow1/ui/backstack/BackStackConfig.kt
index 3bfc55922b..4a66da4d8b 100644
--- a/workflow-ui/backstack-android/src/main/java/com/squareup/workflow/ui/backstack/BackStackConfig.kt
+++ b/workflow-ui/backstack-android/src/main/java/com/squareup/workflow1/ui/backstack/BackStackConfig.kt
@@ -13,12 +13,12 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.ui.backstack
+package com.squareup.workflow1.ui.backstack
-import com.squareup.workflow.ui.WorkflowUiExperimentalApi
-import com.squareup.workflow.ui.ViewEnvironmentKey
-import com.squareup.workflow.ui.backstack.BackStackConfig.First
-import com.squareup.workflow.ui.backstack.BackStackConfig.Other
+import com.squareup.workflow1.ui.WorkflowUiExperimentalApi
+import com.squareup.workflow1.ui.ViewEnvironmentKey
+import com.squareup.workflow1.ui.backstack.BackStackConfig.First
+import com.squareup.workflow1.ui.backstack.BackStackConfig.Other
/**
* Informs views whether they're children of a [BackStackContainer],
diff --git a/workflow-ui/backstack-android/src/main/java/com/squareup/workflow/ui/backstack/BackStackContainer.kt b/workflow-ui/backstack-android/src/main/java/com/squareup/workflow1/ui/backstack/BackStackContainer.kt
similarity index 88%
rename from workflow-ui/backstack-android/src/main/java/com/squareup/workflow/ui/backstack/BackStackContainer.kt
rename to workflow-ui/backstack-android/src/main/java/com/squareup/workflow1/ui/backstack/BackStackContainer.kt
index bae924d16f..54ff14ae4a 100644
--- a/workflow-ui/backstack-android/src/main/java/com/squareup/workflow/ui/backstack/BackStackContainer.kt
+++ b/workflow-ui/backstack-android/src/main/java/com/squareup/workflow1/ui/backstack/BackStackContainer.kt
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.ui.backstack
+package com.squareup.workflow1.ui.backstack
import android.content.Context
import android.os.Parcelable
@@ -28,19 +28,19 @@ import androidx.transition.Scene
import androidx.transition.Slide
import androidx.transition.TransitionManager
import androidx.transition.TransitionSet
-import com.squareup.workflow.ui.BuilderBinding
-import com.squareup.workflow.ui.WorkflowUiExperimentalApi
-import com.squareup.workflow.ui.Named
-import com.squareup.workflow.ui.ViewFactory
-import com.squareup.workflow.ui.ViewEnvironment
-import com.squareup.workflow.ui.ViewRegistry
-import com.squareup.workflow.ui.backstack.BackStackConfig.First
-import com.squareup.workflow.ui.backstack.BackStackConfig.Other
-import com.squareup.workflow.ui.bindShowRendering
-import com.squareup.workflow.ui.buildView
-import com.squareup.workflow.ui.canShowRendering
-import com.squareup.workflow.ui.compatible
-import com.squareup.workflow.ui.showRendering
+import com.squareup.workflow1.ui.BuilderBinding
+import com.squareup.workflow1.ui.WorkflowUiExperimentalApi
+import com.squareup.workflow1.ui.Named
+import com.squareup.workflow1.ui.ViewFactory
+import com.squareup.workflow1.ui.ViewEnvironment
+import com.squareup.workflow1.ui.ViewRegistry
+import com.squareup.workflow1.ui.backstack.BackStackConfig.First
+import com.squareup.workflow1.ui.backstack.BackStackConfig.Other
+import com.squareup.workflow1.ui.bindShowRendering
+import com.squareup.workflow1.ui.buildView
+import com.squareup.workflow1.ui.canShowRendering
+import com.squareup.workflow1.ui.compatible
+import com.squareup.workflow1.ui.showRendering
/**
* A container view that can display a stream of [BackStackScreen] instances.
diff --git a/workflow-ui/backstack-android/src/main/java/com/squareup/workflow/ui/backstack/ViewStateCache.kt b/workflow-ui/backstack-android/src/main/java/com/squareup/workflow1/ui/backstack/ViewStateCache.kt
similarity index 91%
rename from workflow-ui/backstack-android/src/main/java/com/squareup/workflow/ui/backstack/ViewStateCache.kt
rename to workflow-ui/backstack-android/src/main/java/com/squareup/workflow1/ui/backstack/ViewStateCache.kt
index 1eb6085d39..a7f0448b6d 100644
--- a/workflow-ui/backstack-android/src/main/java/com/squareup/workflow/ui/backstack/ViewStateCache.kt
+++ b/workflow-ui/backstack-android/src/main/java/com/squareup/workflow1/ui/backstack/ViewStateCache.kt
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.ui.backstack
+package com.squareup.workflow1.ui.backstack
import android.os.Parcel
import android.os.Parcelable
@@ -21,10 +21,10 @@ import android.os.Parcelable.Creator
import android.util.SparseArray
import android.view.View
import android.view.View.BaseSavedState
-import com.squareup.workflow.ui.WorkflowUiExperimentalApi
-import com.squareup.workflow.ui.Named
-import com.squareup.workflow.ui.backstack.ViewStateCache.SavedState
-import com.squareup.workflow.ui.getRendering
+import com.squareup.workflow1.ui.WorkflowUiExperimentalApi
+import com.squareup.workflow1.ui.Named
+import com.squareup.workflow1.ui.backstack.ViewStateCache.SavedState
+import com.squareup.workflow1.ui.getRendering
/**
* Handles persistence chores for container views that manage a set of [Named] renderings,
@@ -43,7 +43,7 @@ class ViewStateCache private constructor(
/**
* To be called when the set of hidden views changes but the visible view remains
* the same. Any cached view state held for renderings that are not
- * [compatible][com.squareup.workflow.ui.compatible] those in [retaining] will be dropped.
+ * [compatible][com.squareup.workflow1.ui.compatible] those in [retaining] will be dropped.
*/
fun prune(retaining: Collection>) {
pruneKeys(retaining.map { it.compatibilityKey })
@@ -61,11 +61,11 @@ class ViewStateCache private constructor(
*
* @param oldViewMaybe the view that is being removed, if any, which is expected to be showing
* a [Named] rendering. If that rendering is
- * [compatible with][com.squareup.workflow.ui.compatible] a member of
+ * [compatible with][com.squareup.workflow1.ui.compatible] a member of
* [retainedRenderings], its state will be [saved][View.saveHierarchyState].
*
* @param newView the view that is about to be displayed, which must be showing a
- * [Named] rendering. If [compatible][com.squareup.workflow.ui.compatible]
+ * [Named] rendering. If [compatible][com.squareup.workflow1.ui.compatible]
* view state is found in the cache, it is [restored][View.restoreHierarchyState].
*
* @return true if [newView] has been restored.
diff --git a/workflow-ui/backstack-android/src/main/java/com/squareup/workflow/ui/backstack/ViewStateFrame.kt b/workflow-ui/backstack-android/src/main/java/com/squareup/workflow1/ui/backstack/ViewStateFrame.kt
similarity index 93%
rename from workflow-ui/backstack-android/src/main/java/com/squareup/workflow/ui/backstack/ViewStateFrame.kt
rename to workflow-ui/backstack-android/src/main/java/com/squareup/workflow1/ui/backstack/ViewStateFrame.kt
index 28cd069c0e..2e95dbe86e 100644
--- a/workflow-ui/backstack-android/src/main/java/com/squareup/workflow/ui/backstack/ViewStateFrame.kt
+++ b/workflow-ui/backstack-android/src/main/java/com/squareup/workflow1/ui/backstack/ViewStateFrame.kt
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.ui.backstack
+package com.squareup.workflow1.ui.backstack
import android.os.Parcel
import android.os.Parcelable
@@ -23,7 +23,7 @@ import android.util.SparseArray
/**
* Used by [ViewStateCache] to record the [viewState] data for the view identified
* by [key], which is expected to match the `toString()` of a
- * [com.squareup.workflow.ui.Compatible.compatibilityKey].
+ * [com.squareup.workflow1.ui.Compatible.compatibilityKey].
*/
internal data class ViewStateFrame(
val key: String,
diff --git a/workflow-ui/backstack-android/src/main/res/layout/view_stack_layout.xml b/workflow-ui/backstack-android/src/main/res/layout/view_stack_layout.xml
index 88431051c4..6d352dd95e 100644
--- a/workflow-ui/backstack-android/src/main/res/layout/view_stack_layout.xml
+++ b/workflow-ui/backstack-android/src/main/res/layout/view_stack_layout.xml
@@ -14,10 +14,10 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
-
-
+
diff --git a/workflow-ui/backstack-common/api/backstack-common.api b/workflow-ui/backstack-common/api/backstack-common.api
index 09e71972b8..d7f3e41495 100644
--- a/workflow-ui/backstack-common/api/backstack-common.api
+++ b/workflow-ui/backstack-common/api/backstack-common.api
@@ -1,4 +1,4 @@
-public final class com/squareup/workflow/ui/backstack/BackStackScreen {
+public final class com/squareup/workflow1/ui/backstack/BackStackScreen {
public fun (Ljava/lang/Object;Ljava/util/List;)V
public fun (Ljava/lang/Object;[Ljava/lang/Object;)V
public fun equals (Ljava/lang/Object;)Z
@@ -7,14 +7,14 @@ public final class com/squareup/workflow/ui/backstack/BackStackScreen {
public final fun getFrames ()Ljava/util/List;
public final fun getTop ()Ljava/lang/Object;
public fun hashCode ()I
- public final fun map (Lkotlin/jvm/functions/Function1;)Lcom/squareup/workflow/ui/backstack/BackStackScreen;
- public final fun mapIndexed (Lkotlin/jvm/functions/Function2;)Lcom/squareup/workflow/ui/backstack/BackStackScreen;
- public final fun plus (Lcom/squareup/workflow/ui/backstack/BackStackScreen;)Lcom/squareup/workflow/ui/backstack/BackStackScreen;
+ public final fun map (Lkotlin/jvm/functions/Function1;)Lcom/squareup/workflow1/ui/backstack/BackStackScreen;
+ public final fun mapIndexed (Lkotlin/jvm/functions/Function2;)Lcom/squareup/workflow1/ui/backstack/BackStackScreen;
+ public final fun plus (Lcom/squareup/workflow1/ui/backstack/BackStackScreen;)Lcom/squareup/workflow1/ui/backstack/BackStackScreen;
public fun toString ()Ljava/lang/String;
}
-public final class com/squareup/workflow/ui/backstack/BackStackScreenKt {
- public static final fun toBackStackScreen (Ljava/util/List;)Lcom/squareup/workflow/ui/backstack/BackStackScreen;
- public static final fun toBackStackScreenOrNull (Ljava/util/List;)Lcom/squareup/workflow/ui/backstack/BackStackScreen;
+public final class com/squareup/workflow1/ui/backstack/BackStackScreenKt {
+ public static final fun toBackStackScreen (Ljava/util/List;)Lcom/squareup/workflow1/ui/backstack/BackStackScreen;
+ public static final fun toBackStackScreenOrNull (Ljava/util/List;)Lcom/squareup/workflow1/ui/backstack/BackStackScreen;
}
diff --git a/workflow-ui/backstack-common/src/main/java/com/squareup/workflow/ui/backstack/BackStackScreen.kt b/workflow-ui/backstack-common/src/main/java/com/squareup/workflow1/ui/backstack/BackStackScreen.kt
similarity index 96%
rename from workflow-ui/backstack-common/src/main/java/com/squareup/workflow/ui/backstack/BackStackScreen.kt
rename to workflow-ui/backstack-common/src/main/java/com/squareup/workflow1/ui/backstack/BackStackScreen.kt
index 5983d67331..1d5bfb62f8 100644
--- a/workflow-ui/backstack-common/src/main/java/com/squareup/workflow/ui/backstack/BackStackScreen.kt
+++ b/workflow-ui/backstack-common/src/main/java/com/squareup/workflow1/ui/backstack/BackStackScreen.kt
@@ -13,9 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.ui.backstack
+package com.squareup.workflow1.ui.backstack
-import com.squareup.workflow.ui.WorkflowUiExperimentalApi
+import com.squareup.workflow1.ui.WorkflowUiExperimentalApi
/**
* Represents an active screen ([top]), and a set of previously visited
diff --git a/workflow-ui/backstack-common/src/test/java/com/squareup/workflow/ui/backstack/BackStackScreenTest.kt b/workflow-ui/backstack-common/src/test/java/com/squareup/workflow1/ui/backstack/BackStackScreenTest.kt
similarity index 96%
rename from workflow-ui/backstack-common/src/test/java/com/squareup/workflow/ui/backstack/BackStackScreenTest.kt
rename to workflow-ui/backstack-common/src/test/java/com/squareup/workflow1/ui/backstack/BackStackScreenTest.kt
index b1f00337f8..df5b7653a7 100644
--- a/workflow-ui/backstack-common/src/test/java/com/squareup/workflow/ui/backstack/BackStackScreenTest.kt
+++ b/workflow-ui/backstack-common/src/test/java/com/squareup/workflow1/ui/backstack/BackStackScreenTest.kt
@@ -13,10 +13,10 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.ui.backstack
+package com.squareup.workflow1.ui.backstack
import com.google.common.truth.Truth.assertThat
-import com.squareup.workflow.ui.WorkflowUiExperimentalApi
+import com.squareup.workflow1.ui.WorkflowUiExperimentalApi
import org.junit.Test
import kotlin.test.assertFailsWith
diff --git a/workflow-ui/core-android/api/core-android.api b/workflow-ui/core-android/api/core-android.api
index 16f48270af..ee26a2dfce 100644
--- a/workflow-ui/core-android/api/core-android.api
+++ b/workflow-ui/core-android/api/core-android.api
@@ -1,10 +1,10 @@
-public final class com/squareup/workflow/ui/BackPressHandlerKt {
+public final class com/squareup/workflow1/ui/BackPressHandlerKt {
public static final fun getBackPressedHandler (Landroid/view/View;)Lkotlin/jvm/functions/Function0;
public static final fun onBackPressedDispatcherOwnerOrNull (Landroid/content/Context;)Landroidx/activity/OnBackPressedDispatcherOwner;
public static final fun setBackPressedHandler (Landroid/view/View;Lkotlin/jvm/functions/Function0;)V
}
-public final class com/squareup/workflow/ui/BuildConfig {
+public final class com/squareup/workflow1/ui/BuildConfig {
public static final field BUILD_TYPE Ljava/lang/String;
public static final field DEBUG Z
public static final field LIBRARY_PACKAGE_NAME Ljava/lang/String;
@@ -13,66 +13,66 @@ public final class com/squareup/workflow/ui/BuildConfig {
public fun ()V
}
-public final class com/squareup/workflow/ui/BuilderBinding : com/squareup/workflow/ui/ViewFactory {
+public final class com/squareup/workflow1/ui/BuilderBinding : com/squareup/workflow1/ui/ViewFactory {
public fun (Lkotlin/reflect/KClass;Lkotlin/jvm/functions/Function4;)V
- public fun buildView (Ljava/lang/Object;Lcom/squareup/workflow/ui/ViewEnvironment;Landroid/content/Context;Landroid/view/ViewGroup;)Landroid/view/View;
+ public fun buildView (Ljava/lang/Object;Lcom/squareup/workflow1/ui/ViewEnvironment;Landroid/content/Context;Landroid/view/ViewGroup;)Landroid/view/View;
public fun getType ()Lkotlin/reflect/KClass;
}
-public abstract interface class com/squareup/workflow/ui/LayoutRunner {
- public static final field Companion Lcom/squareup/workflow/ui/LayoutRunner$Companion;
- public abstract fun showRendering (Ljava/lang/Object;Lcom/squareup/workflow/ui/ViewEnvironment;)V
+public abstract interface class com/squareup/workflow1/ui/LayoutRunner {
+ public static final field Companion Lcom/squareup/workflow1/ui/LayoutRunner$Companion;
+ public abstract fun showRendering (Ljava/lang/Object;Lcom/squareup/workflow1/ui/ViewEnvironment;)V
}
-public final class com/squareup/workflow/ui/LayoutRunner$Binding : com/squareup/workflow/ui/ViewFactory {
+public final class com/squareup/workflow1/ui/LayoutRunner$Binding : com/squareup/workflow1/ui/ViewFactory {
public fun (Lkotlin/reflect/KClass;ILkotlin/jvm/functions/Function1;)V
- public fun buildView (Ljava/lang/Object;Lcom/squareup/workflow/ui/ViewEnvironment;Landroid/content/Context;Landroid/view/ViewGroup;)Landroid/view/View;
+ public fun buildView (Ljava/lang/Object;Lcom/squareup/workflow1/ui/ViewEnvironment;Landroid/content/Context;Landroid/view/ViewGroup;)Landroid/view/View;
public fun getType ()Lkotlin/reflect/KClass;
}
-public final class com/squareup/workflow/ui/LayoutRunner$Companion {
+public final class com/squareup/workflow1/ui/LayoutRunner$Companion {
}
-public final class com/squareup/workflow/ui/LifecyclesKt {
+public final class com/squareup/workflow1/ui/LifecyclesKt {
public static final fun lifecycleOrNull (Landroid/content/Context;)Landroidx/lifecycle/Lifecycle;
}
-public final class com/squareup/workflow/ui/ShowRenderingTag {
- public fun (Ljava/lang/Object;Lcom/squareup/workflow/ui/ViewEnvironment;Lkotlin/jvm/functions/Function2;)V
+public final class com/squareup/workflow1/ui/ShowRenderingTag {
+ public fun (Ljava/lang/Object;Lcom/squareup/workflow1/ui/ViewEnvironment;Lkotlin/jvm/functions/Function2;)V
public final fun component1 ()Ljava/lang/Object;
- public final fun component2 ()Lcom/squareup/workflow/ui/ViewEnvironment;
+ public final fun component2 ()Lcom/squareup/workflow1/ui/ViewEnvironment;
public final fun component3 ()Lkotlin/jvm/functions/Function2;
- public final fun copy (Ljava/lang/Object;Lcom/squareup/workflow/ui/ViewEnvironment;Lkotlin/jvm/functions/Function2;)Lcom/squareup/workflow/ui/ShowRenderingTag;
- public static synthetic fun copy$default (Lcom/squareup/workflow/ui/ShowRenderingTag;Ljava/lang/Object;Lcom/squareup/workflow/ui/ViewEnvironment;Lkotlin/jvm/functions/Function2;ILjava/lang/Object;)Lcom/squareup/workflow/ui/ShowRenderingTag;
+ public final fun copy (Ljava/lang/Object;Lcom/squareup/workflow1/ui/ViewEnvironment;Lkotlin/jvm/functions/Function2;)Lcom/squareup/workflow1/ui/ShowRenderingTag;
+ public static synthetic fun copy$default (Lcom/squareup/workflow1/ui/ShowRenderingTag;Ljava/lang/Object;Lcom/squareup/workflow1/ui/ViewEnvironment;Lkotlin/jvm/functions/Function2;ILjava/lang/Object;)Lcom/squareup/workflow1/ui/ShowRenderingTag;
public fun equals (Ljava/lang/Object;)Z
- public final fun getEnvironment ()Lcom/squareup/workflow/ui/ViewEnvironment;
+ public final fun getEnvironment ()Lcom/squareup/workflow1/ui/ViewEnvironment;
public final fun getShowRendering ()Lkotlin/jvm/functions/Function2;
public final fun getShowing ()Ljava/lang/Object;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
-public final class com/squareup/workflow/ui/SnapshotParcelsKt {
- public static final fun toSnapshot (Landroid/os/Parcelable;)Lcom/squareup/workflow/Snapshot;
+public final class com/squareup/workflow1/ui/SnapshotParcelsKt {
+ public static final fun toSnapshot (Landroid/os/Parcelable;)Lcom/squareup/workflow1/Snapshot;
}
-public final class com/squareup/workflow/ui/ViewBindingViewFactory : com/squareup/workflow/ui/ViewFactory {
+public final class com/squareup/workflow1/ui/ViewBindingViewFactory : com/squareup/workflow1/ui/ViewFactory {
public fun (Lkotlin/reflect/KClass;Lkotlin/jvm/functions/Function3;Lkotlin/jvm/functions/Function1;)V
- public fun buildView (Ljava/lang/Object;Lcom/squareup/workflow/ui/ViewEnvironment;Landroid/content/Context;Landroid/view/ViewGroup;)Landroid/view/View;
+ public fun buildView (Ljava/lang/Object;Lcom/squareup/workflow1/ui/ViewEnvironment;Landroid/content/Context;Landroid/view/ViewGroup;)Landroid/view/View;
public fun getType ()Lkotlin/reflect/KClass;
}
-public final class com/squareup/workflow/ui/ViewEnvironment {
- public fun (Lcom/squareup/workflow/ui/ViewRegistry;)V
+public final class com/squareup/workflow1/ui/ViewEnvironment {
+ public fun (Lcom/squareup/workflow1/ui/ViewRegistry;)V
public fun equals (Ljava/lang/Object;)Z
- public final fun get (Lcom/squareup/workflow/ui/ViewEnvironmentKey;)Ljava/lang/Object;
+ public final fun get (Lcom/squareup/workflow1/ui/ViewEnvironmentKey;)Ljava/lang/Object;
public fun hashCode ()I
- public final fun plus (Lcom/squareup/workflow/ui/ViewEnvironment;)Lcom/squareup/workflow/ui/ViewEnvironment;
- public final fun plus (Lkotlin/Pair;)Lcom/squareup/workflow/ui/ViewEnvironment;
+ public final fun plus (Lcom/squareup/workflow1/ui/ViewEnvironment;)Lcom/squareup/workflow1/ui/ViewEnvironment;
+ public final fun plus (Lkotlin/Pair;)Lcom/squareup/workflow1/ui/ViewEnvironment;
public fun toString ()Ljava/lang/String;
}
-public abstract class com/squareup/workflow/ui/ViewEnvironmentKey {
+public abstract class com/squareup/workflow1/ui/ViewEnvironmentKey {
public fun (Lkotlin/reflect/KClass;)V
public final fun equals (Ljava/lang/Object;)Z
public abstract fun getDefault ()Ljava/lang/Object;
@@ -80,98 +80,98 @@ public abstract class com/squareup/workflow/ui/ViewEnvironmentKey {
public fun toString ()Ljava/lang/String;
}
-public abstract interface class com/squareup/workflow/ui/ViewFactory {
- public abstract fun buildView (Ljava/lang/Object;Lcom/squareup/workflow/ui/ViewEnvironment;Landroid/content/Context;Landroid/view/ViewGroup;)Landroid/view/View;
+public abstract interface class com/squareup/workflow1/ui/ViewFactory {
+ public abstract fun buildView (Ljava/lang/Object;Lcom/squareup/workflow1/ui/ViewEnvironment;Landroid/content/Context;Landroid/view/ViewGroup;)Landroid/view/View;
public abstract fun getType ()Lkotlin/reflect/KClass;
}
-public final class com/squareup/workflow/ui/ViewFactory$DefaultImpls {
- public static synthetic fun buildView$default (Lcom/squareup/workflow/ui/ViewFactory;Ljava/lang/Object;Lcom/squareup/workflow/ui/ViewEnvironment;Landroid/content/Context;Landroid/view/ViewGroup;ILjava/lang/Object;)Landroid/view/View;
+public final class com/squareup/workflow1/ui/ViewFactory$DefaultImpls {
+ public static synthetic fun buildView$default (Lcom/squareup/workflow1/ui/ViewFactory;Ljava/lang/Object;Lcom/squareup/workflow1/ui/ViewEnvironment;Landroid/content/Context;Landroid/view/ViewGroup;ILjava/lang/Object;)Landroid/view/View;
}
-public abstract interface class com/squareup/workflow/ui/ViewRegistry {
- public static final field Companion Lcom/squareup/workflow/ui/ViewRegistry$Companion;
- public abstract fun getFactoryFor (Lkotlin/reflect/KClass;)Lcom/squareup/workflow/ui/ViewFactory;
+public abstract interface class com/squareup/workflow1/ui/ViewRegistry {
+ public static final field Companion Lcom/squareup/workflow1/ui/ViewRegistry$Companion;
+ public abstract fun getFactoryFor (Lkotlin/reflect/KClass;)Lcom/squareup/workflow1/ui/ViewFactory;
public abstract fun getKeys ()Ljava/util/Set;
public abstract fun hasViewBeenBound (Landroid/view/View;)Z
}
-public final class com/squareup/workflow/ui/ViewRegistry$Companion : com/squareup/workflow/ui/ViewEnvironmentKey {
- public fun getDefault ()Lcom/squareup/workflow/ui/ViewRegistry;
+public final class com/squareup/workflow1/ui/ViewRegistry$Companion : com/squareup/workflow1/ui/ViewEnvironmentKey {
+ public fun getDefault ()Lcom/squareup/workflow1/ui/ViewRegistry;
public synthetic fun getDefault ()Ljava/lang/Object;
}
-public final class com/squareup/workflow/ui/ViewRegistry$DefaultImpls {
- public static fun hasViewBeenBound (Lcom/squareup/workflow/ui/ViewRegistry;Landroid/view/View;)Z
+public final class com/squareup/workflow1/ui/ViewRegistry$DefaultImpls {
+ public static fun hasViewBeenBound (Lcom/squareup/workflow1/ui/ViewRegistry;Landroid/view/View;)Z
}
-public final class com/squareup/workflow/ui/ViewRegistryKt {
- public static final fun ViewRegistry ()Lcom/squareup/workflow/ui/ViewRegistry;
- public static final fun ViewRegistry ([Lcom/squareup/workflow/ui/ViewFactory;)Lcom/squareup/workflow/ui/ViewRegistry;
- public static final fun ViewRegistry ([Lcom/squareup/workflow/ui/ViewRegistry;)Lcom/squareup/workflow/ui/ViewRegistry;
- public static final fun buildView (Lcom/squareup/workflow/ui/ViewRegistry;Ljava/lang/Object;Lcom/squareup/workflow/ui/ViewEnvironment;Landroid/content/Context;Landroid/view/ViewGroup;)Landroid/view/View;
- public static final fun buildView (Lcom/squareup/workflow/ui/ViewRegistry;Ljava/lang/Object;Lcom/squareup/workflow/ui/ViewEnvironment;Landroid/view/ViewGroup;)Landroid/view/View;
- public static synthetic fun buildView$default (Lcom/squareup/workflow/ui/ViewRegistry;Ljava/lang/Object;Lcom/squareup/workflow/ui/ViewEnvironment;Landroid/content/Context;Landroid/view/ViewGroup;ILjava/lang/Object;)Landroid/view/View;
- public static final fun plus (Lcom/squareup/workflow/ui/ViewRegistry;Lcom/squareup/workflow/ui/ViewFactory;)Lcom/squareup/workflow/ui/ViewRegistry;
- public static final fun plus (Lcom/squareup/workflow/ui/ViewRegistry;Lcom/squareup/workflow/ui/ViewRegistry;)Lcom/squareup/workflow/ui/ViewRegistry;
+public final class com/squareup/workflow1/ui/ViewRegistryKt {
+ public static final fun ViewRegistry ()Lcom/squareup/workflow1/ui/ViewRegistry;
+ public static final fun ViewRegistry ([Lcom/squareup/workflow1/ui/ViewFactory;)Lcom/squareup/workflow1/ui/ViewRegistry;
+ public static final fun ViewRegistry ([Lcom/squareup/workflow1/ui/ViewRegistry;)Lcom/squareup/workflow1/ui/ViewRegistry;
+ public static final fun buildView (Lcom/squareup/workflow1/ui/ViewRegistry;Ljava/lang/Object;Lcom/squareup/workflow1/ui/ViewEnvironment;Landroid/content/Context;Landroid/view/ViewGroup;)Landroid/view/View;
+ public static final fun buildView (Lcom/squareup/workflow1/ui/ViewRegistry;Ljava/lang/Object;Lcom/squareup/workflow1/ui/ViewEnvironment;Landroid/view/ViewGroup;)Landroid/view/View;
+ public static synthetic fun buildView$default (Lcom/squareup/workflow1/ui/ViewRegistry;Ljava/lang/Object;Lcom/squareup/workflow1/ui/ViewEnvironment;Landroid/content/Context;Landroid/view/ViewGroup;ILjava/lang/Object;)Landroid/view/View;
+ public static final fun plus (Lcom/squareup/workflow1/ui/ViewRegistry;Lcom/squareup/workflow1/ui/ViewFactory;)Lcom/squareup/workflow1/ui/ViewRegistry;
+ public static final fun plus (Lcom/squareup/workflow1/ui/ViewRegistry;Lcom/squareup/workflow1/ui/ViewRegistry;)Lcom/squareup/workflow1/ui/ViewRegistry;
}
-public final class com/squareup/workflow/ui/ViewShowRenderingKt {
- public static final fun bindShowRendering (Landroid/view/View;Ljava/lang/Object;Lcom/squareup/workflow/ui/ViewEnvironment;Lkotlin/jvm/functions/Function2;)V
+public final class com/squareup/workflow1/ui/ViewShowRenderingKt {
+ public static final fun bindShowRendering (Landroid/view/View;Ljava/lang/Object;Lcom/squareup/workflow1/ui/ViewEnvironment;Lkotlin/jvm/functions/Function2;)V
public static final fun canShowRendering (Landroid/view/View;Ljava/lang/Object;)Z
- public static final fun getEnvironment (Landroid/view/View;)Lcom/squareup/workflow/ui/ViewEnvironment;
+ public static final fun getEnvironment (Landroid/view/View;)Lcom/squareup/workflow1/ui/ViewEnvironment;
public static final fun getRendering (Landroid/view/View;)Ljava/lang/Object;
public static final fun getShowRendering (Landroid/view/View;)Lkotlin/jvm/functions/Function2;
- public static final fun showRendering (Landroid/view/View;Ljava/lang/Object;Lcom/squareup/workflow/ui/ViewEnvironment;)V
+ public static final fun showRendering (Landroid/view/View;Ljava/lang/Object;Lcom/squareup/workflow1/ui/ViewEnvironment;)V
}
-public abstract class com/squareup/workflow/ui/WorkflowFragment : androidx/fragment/app/Fragment {
+public abstract class com/squareup/workflow1/ui/WorkflowFragment : androidx/fragment/app/Fragment {
public fun ()V
- protected final fun getRunner ()Lcom/squareup/workflow/ui/WorkflowRunner;
- protected abstract fun getViewEnvironment ()Lcom/squareup/workflow/ui/ViewEnvironment;
+ protected final fun getRunner ()Lcom/squareup/workflow1/ui/WorkflowRunner;
+ protected abstract fun getViewEnvironment ()Lcom/squareup/workflow1/ui/ViewEnvironment;
public synthetic fun onCreateView (Landroid/view/LayoutInflater;Landroid/view/ViewGroup;Landroid/os/Bundle;)Landroid/view/View;
- public final fun onCreateView (Landroid/view/LayoutInflater;Landroid/view/ViewGroup;Landroid/os/Bundle;)Lcom/squareup/workflow/ui/WorkflowLayout;
- protected abstract fun onCreateWorkflow ()Lcom/squareup/workflow/ui/WorkflowRunner$Config;
+ public final fun onCreateView (Landroid/view/LayoutInflater;Landroid/view/ViewGroup;Landroid/os/Bundle;)Lcom/squareup/workflow1/ui/WorkflowLayout;
+ protected abstract fun onCreateWorkflow ()Lcom/squareup/workflow1/ui/WorkflowRunner$Config;
}
-public final class com/squareup/workflow/ui/WorkflowLayout : android/widget/FrameLayout {
+public final class com/squareup/workflow1/ui/WorkflowLayout : android/widget/FrameLayout {
public fun (Landroid/content/Context;Landroid/util/AttributeSet;)V
public synthetic fun (Landroid/content/Context;Landroid/util/AttributeSet;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
- public final fun start (Lkotlinx/coroutines/flow/Flow;Lcom/squareup/workflow/ui/ViewEnvironment;)V
- public final fun start (Lkotlinx/coroutines/flow/Flow;Lcom/squareup/workflow/ui/ViewRegistry;)V
+ public final fun start (Lkotlinx/coroutines/flow/Flow;Lcom/squareup/workflow1/ui/ViewEnvironment;)V
+ public final fun start (Lkotlinx/coroutines/flow/Flow;Lcom/squareup/workflow1/ui/ViewRegistry;)V
}
-public abstract interface class com/squareup/workflow/ui/WorkflowRunner {
- public static final field Companion Lcom/squareup/workflow/ui/WorkflowRunner$Companion;
+public abstract interface class com/squareup/workflow1/ui/WorkflowRunner {
+ public static final field Companion Lcom/squareup/workflow1/ui/WorkflowRunner$Companion;
public abstract fun awaitResult (Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
public abstract fun getRenderings ()Lkotlinx/coroutines/flow/StateFlow;
}
-public final class com/squareup/workflow/ui/WorkflowRunner$Companion {
- public final fun Config (Lcom/squareup/workflow/Workflow;Lkotlinx/coroutines/CoroutineDispatcher;Ljava/util/List;)Lcom/squareup/workflow/ui/WorkflowRunner$Config;
- public static synthetic fun Config$default (Lcom/squareup/workflow/ui/WorkflowRunner$Companion;Lcom/squareup/workflow/Workflow;Lkotlinx/coroutines/CoroutineDispatcher;Ljava/util/List;ILjava/lang/Object;)Lcom/squareup/workflow/ui/WorkflowRunner$Config;
- public final fun startWorkflow (Landroidx/fragment/app/Fragment;Lkotlin/jvm/functions/Function0;)Lcom/squareup/workflow/ui/WorkflowRunner;
- public final fun startWorkflow (Landroidx/fragment/app/FragmentActivity;Lkotlin/jvm/functions/Function0;)Lcom/squareup/workflow/ui/WorkflowRunner;
+public final class com/squareup/workflow1/ui/WorkflowRunner$Companion {
+ public final fun Config (Lcom/squareup/workflow1/Workflow;Lkotlinx/coroutines/CoroutineDispatcher;Ljava/util/List;)Lcom/squareup/workflow1/ui/WorkflowRunner$Config;
+ public static synthetic fun Config$default (Lcom/squareup/workflow1/ui/WorkflowRunner$Companion;Lcom/squareup/workflow1/Workflow;Lkotlinx/coroutines/CoroutineDispatcher;Ljava/util/List;ILjava/lang/Object;)Lcom/squareup/workflow1/ui/WorkflowRunner$Config;
+ public final fun startWorkflow (Landroidx/fragment/app/Fragment;Lkotlin/jvm/functions/Function0;)Lcom/squareup/workflow1/ui/WorkflowRunner;
+ public final fun startWorkflow (Landroidx/fragment/app/FragmentActivity;Lkotlin/jvm/functions/Function0;)Lcom/squareup/workflow1/ui/WorkflowRunner;
}
-public final class com/squareup/workflow/ui/WorkflowRunner$Config {
- public fun (Lcom/squareup/workflow/Workflow;Ljava/lang/Object;Lkotlinx/coroutines/CoroutineDispatcher;Ljava/util/List;)V
- public synthetic fun (Lcom/squareup/workflow/Workflow;Ljava/lang/Object;Lkotlinx/coroutines/CoroutineDispatcher;Ljava/util/List;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
- public fun (Lcom/squareup/workflow/Workflow;Lkotlinx/coroutines/flow/StateFlow;Lkotlinx/coroutines/CoroutineDispatcher;Ljava/util/List;)V
+public final class com/squareup/workflow1/ui/WorkflowRunner$Config {
+ public fun (Lcom/squareup/workflow1/Workflow;Ljava/lang/Object;Lkotlinx/coroutines/CoroutineDispatcher;Ljava/util/List;)V
+ public synthetic fun (Lcom/squareup/workflow1/Workflow;Ljava/lang/Object;Lkotlinx/coroutines/CoroutineDispatcher;Ljava/util/List;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
+ public fun (Lcom/squareup/workflow1/Workflow;Lkotlinx/coroutines/flow/StateFlow;Lkotlinx/coroutines/CoroutineDispatcher;Ljava/util/List;)V
public final fun getDispatcher ()Lkotlinx/coroutines/CoroutineDispatcher;
public final fun getInterceptors ()Ljava/util/List;
public final fun getProps ()Lkotlinx/coroutines/flow/StateFlow;
- public final fun getWorkflow ()Lcom/squareup/workflow/Workflow;
+ public final fun getWorkflow ()Lcom/squareup/workflow1/Workflow;
}
-public final class com/squareup/workflow/ui/WorkflowRunnerKt {
- public static final fun setContentWorkflow (Landroidx/fragment/app/FragmentActivity;Lcom/squareup/workflow/ui/ViewEnvironment;Lkotlin/jvm/functions/Function0;)Lcom/squareup/workflow/ui/WorkflowRunner;
- public static final fun setContentWorkflow (Landroidx/fragment/app/FragmentActivity;Lcom/squareup/workflow/ui/ViewEnvironment;Lkotlin/jvm/functions/Function0;Lkotlin/jvm/functions/Function1;)Lcom/squareup/workflow/ui/WorkflowRunner;
- public static final fun setContentWorkflow (Landroidx/fragment/app/FragmentActivity;Lcom/squareup/workflow/ui/ViewRegistry;Lkotlin/jvm/functions/Function0;)Lcom/squareup/workflow/ui/WorkflowRunner;
- public static final fun setContentWorkflow (Landroidx/fragment/app/FragmentActivity;Lcom/squareup/workflow/ui/ViewRegistry;Lkotlin/jvm/functions/Function0;Lkotlin/jvm/functions/Function1;)Lcom/squareup/workflow/ui/WorkflowRunner;
+public final class com/squareup/workflow1/ui/WorkflowRunnerKt {
+ public static final fun setContentWorkflow (Landroidx/fragment/app/FragmentActivity;Lcom/squareup/workflow1/ui/ViewEnvironment;Lkotlin/jvm/functions/Function0;)Lcom/squareup/workflow1/ui/WorkflowRunner;
+ public static final fun setContentWorkflow (Landroidx/fragment/app/FragmentActivity;Lcom/squareup/workflow1/ui/ViewEnvironment;Lkotlin/jvm/functions/Function0;Lkotlin/jvm/functions/Function1;)Lcom/squareup/workflow1/ui/WorkflowRunner;
+ public static final fun setContentWorkflow (Landroidx/fragment/app/FragmentActivity;Lcom/squareup/workflow1/ui/ViewRegistry;Lkotlin/jvm/functions/Function0;)Lcom/squareup/workflow1/ui/WorkflowRunner;
+ public static final fun setContentWorkflow (Landroidx/fragment/app/FragmentActivity;Lcom/squareup/workflow1/ui/ViewRegistry;Lkotlin/jvm/functions/Function0;Lkotlin/jvm/functions/Function1;)Lcom/squareup/workflow1/ui/WorkflowRunner;
}
-public final class com/squareup/workflow/ui/WorkflowViewStub : android/view/View {
+public final class com/squareup/workflow1/ui/WorkflowViewStub : android/view/View {
public fun (Landroid/content/Context;)V
public fun (Landroid/content/Context;Landroid/util/AttributeSet;)V
public fun (Landroid/content/Context;Landroid/util/AttributeSet;I)V
@@ -183,6 +183,6 @@ public final class com/squareup/workflow/ui/WorkflowViewStub : android/view/View
public final fun setInflatedId (I)V
public final fun setReplaceOldViewInParent (Lkotlin/jvm/functions/Function2;)V
public fun setVisibility (I)V
- public final fun update (Ljava/lang/Object;Lcom/squareup/workflow/ui/ViewEnvironment;)Landroid/view/View;
+ public final fun update (Ljava/lang/Object;Lcom/squareup/workflow1/ui/ViewEnvironment;)Landroid/view/View;
}
diff --git a/workflow-ui/core-android/src/main/AndroidManifest.xml b/workflow-ui/core-android/src/main/AndroidManifest.xml
index 41e427d73f..9a3d195778 100644
--- a/workflow-ui/core-android/src/main/AndroidManifest.xml
+++ b/workflow-ui/core-android/src/main/AndroidManifest.xml
@@ -13,4 +13,4 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
-
+
diff --git a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/BackPressHandler.kt b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/BackPressHandler.kt
similarity index 98%
rename from workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/BackPressHandler.kt
rename to workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/BackPressHandler.kt
index 0eab84c895..2aaa2e4907 100644
--- a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/BackPressHandler.kt
+++ b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/BackPressHandler.kt
@@ -1,4 +1,4 @@
-package com.squareup.workflow.ui
+package com.squareup.workflow1.ui
import android.content.Context
import android.content.ContextWrapper
diff --git a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/BindingViewRegistry.kt b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/BindingViewRegistry.kt
similarity index 97%
rename from workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/BindingViewRegistry.kt
rename to workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/BindingViewRegistry.kt
index 6d37a0d8d8..153280a1a0 100644
--- a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/BindingViewRegistry.kt
+++ b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/BindingViewRegistry.kt
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.ui
+package com.squareup.workflow1.ui
import kotlin.reflect.KClass
diff --git a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/BuilderBinding.kt b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/BuilderBinding.kt
similarity index 98%
rename from workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/BuilderBinding.kt
rename to workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/BuilderBinding.kt
index 2a29226ec8..52f0558012 100644
--- a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/BuilderBinding.kt
+++ b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/BuilderBinding.kt
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.ui
+package com.squareup.workflow1.ui
import android.content.Context
import android.view.View
diff --git a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/CompositeViewRegistry.kt b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/CompositeViewRegistry.kt
similarity index 98%
rename from workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/CompositeViewRegistry.kt
rename to workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/CompositeViewRegistry.kt
index f611824970..c71998b990 100644
--- a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/CompositeViewRegistry.kt
+++ b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/CompositeViewRegistry.kt
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.ui
+package com.squareup.workflow1.ui
import kotlin.reflect.KClass
diff --git a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/LayoutRunner.kt b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/LayoutRunner.kt
similarity index 98%
rename from workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/LayoutRunner.kt
rename to workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/LayoutRunner.kt
index 9ae5af168e..8a89e60531 100644
--- a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/LayoutRunner.kt
+++ b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/LayoutRunner.kt
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.ui
+package com.squareup.workflow1.ui
import android.content.Context
import android.view.LayoutInflater
@@ -21,7 +21,7 @@ import android.view.View
import android.view.ViewGroup
import androidx.annotation.LayoutRes
import androidx.viewbinding.ViewBinding
-import com.squareup.workflow.ui.LayoutRunner.Companion.bind
+import com.squareup.workflow1.ui.LayoutRunner.Companion.bind
import kotlin.reflect.KClass
@WorkflowUiExperimentalApi
diff --git a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/Lifecycles.kt b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/Lifecycles.kt
similarity index 96%
rename from workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/Lifecycles.kt
rename to workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/Lifecycles.kt
index 63532fd653..6c2f3bb304 100644
--- a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/Lifecycles.kt
+++ b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/Lifecycles.kt
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.ui
+package com.squareup.workflow1.ui
import android.content.Context
import android.content.ContextWrapper
diff --git a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/NamedBinding.kt b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/NamedBinding.kt
similarity index 97%
rename from workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/NamedBinding.kt
rename to workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/NamedBinding.kt
index 8dfc65dbf5..c2ad4e3c36 100644
--- a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/NamedBinding.kt
+++ b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/NamedBinding.kt
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.ui
+package com.squareup.workflow1.ui
@WorkflowUiExperimentalApi
internal object NamedBinding : ViewFactory>
diff --git a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/PickledWorkflow.kt b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/PickledWorkflow.kt
similarity index 94%
rename from workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/PickledWorkflow.kt
rename to workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/PickledWorkflow.kt
index 35a07ac72a..ac066f1237 100644
--- a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/PickledWorkflow.kt
+++ b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/PickledWorkflow.kt
@@ -13,11 +13,11 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.ui
+package com.squareup.workflow1.ui
import android.os.Parcel
import android.os.Parcelable
-import com.squareup.workflow.TreeSnapshot
+import com.squareup.workflow1.TreeSnapshot
import okio.ByteString.Companion.toByteString
internal class PickledWorkflow(internal val snapshot: TreeSnapshot) : Parcelable {
diff --git a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/SnapshotParcels.kt b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/SnapshotParcels.kt
similarity index 93%
rename from workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/SnapshotParcels.kt
rename to workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/SnapshotParcels.kt
index b36f46af85..22d17985f5 100644
--- a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/SnapshotParcels.kt
+++ b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/SnapshotParcels.kt
@@ -13,15 +13,15 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.ui
+package com.squareup.workflow1.ui
import android.os.Parcel
import android.os.Parcelable
-import com.squareup.workflow.Snapshot
+import com.squareup.workflow1.Snapshot
import okio.ByteString
/**
- * Wraps receiver in a [Snapshot] suitable for use with [com.squareup.workflow.StatefulWorkflow].
+ * Wraps receiver in a [Snapshot] suitable for use with [com.squareup.workflow1.StatefulWorkflow].
* Intended to allow use of `@Parcelize`.
*
* Read the [Parcelable] back with [toParcelable].
diff --git a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/ViewBindingViewFactory.kt b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/ViewBindingViewFactory.kt
similarity index 97%
rename from workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/ViewBindingViewFactory.kt
rename to workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/ViewBindingViewFactory.kt
index a648e24b13..9a8788dbc3 100644
--- a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/ViewBindingViewFactory.kt
+++ b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/ViewBindingViewFactory.kt
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.ui
+package com.squareup.workflow1.ui
import android.content.Context
import android.view.View
diff --git a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/ViewEnvironment.kt b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/ViewEnvironment.kt
similarity index 97%
rename from workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/ViewEnvironment.kt
rename to workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/ViewEnvironment.kt
index c9cae85ec5..0056295b04 100644
--- a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/ViewEnvironment.kt
+++ b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/ViewEnvironment.kt
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.ui
+package com.squareup.workflow1.ui
import kotlin.reflect.KClass
@@ -21,7 +21,7 @@ import kotlin.reflect.KClass
@Suppress("unused")
@Deprecated(
"Renamed to ViewEnvironment.",
- replaceWith = ReplaceWith("ViewEnvironment", "com.squareup.workflow.ui.ViewEnvironment")
+ replaceWith = ReplaceWith("ViewEnvironment", "com.squareup.workflow1.ui.ViewEnvironment")
)
typealias ContainerHints = ViewEnvironment
diff --git a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/ViewFactory.kt b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/ViewFactory.kt
similarity index 96%
rename from workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/ViewFactory.kt
rename to workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/ViewFactory.kt
index b190872f60..ca238c319f 100644
--- a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/ViewFactory.kt
+++ b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/ViewFactory.kt
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.ui
+package com.squareup.workflow1.ui
import android.content.Context
import android.view.View
@@ -47,6 +47,6 @@ interface ViewFactory {
@Suppress("unused")
@Deprecated(
"Use ViewFactory.",
- ReplaceWith("ViewFactory", "com.squareup.workflow.ui.ViewFactory")
+ ReplaceWith("ViewFactory", "com.squareup.workflow1.ui.ViewFactory")
)
typealias ViewBinding = ViewFactory
diff --git a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/ViewRegistry.kt b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/ViewRegistry.kt
similarity index 99%
rename from workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/ViewRegistry.kt
rename to workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/ViewRegistry.kt
index 721eed99f1..2114c73eb3 100644
--- a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/ViewRegistry.kt
+++ b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/ViewRegistry.kt
@@ -15,7 +15,7 @@
*/
@file:Suppress("FunctionName")
-package com.squareup.workflow.ui
+package com.squareup.workflow1.ui
import android.content.Context
import android.view.View
diff --git a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/ViewShowRendering.kt b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/ViewShowRendering.kt
similarity index 99%
rename from workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/ViewShowRendering.kt
rename to workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/ViewShowRendering.kt
index 4f7bb0fb32..2f3cf4722b 100644
--- a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/ViewShowRendering.kt
+++ b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/ViewShowRendering.kt
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.ui
+package com.squareup.workflow1.ui
import android.view.View
diff --git a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/WorkflowFragment.kt b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/WorkflowFragment.kt
similarity index 95%
rename from workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/WorkflowFragment.kt
rename to workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/WorkflowFragment.kt
index 4e6e9c429d..0404abbbf6 100644
--- a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/WorkflowFragment.kt
+++ b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/WorkflowFragment.kt
@@ -13,14 +13,14 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.ui
+package com.squareup.workflow1.ui
import android.os.Bundle
import android.view.LayoutInflater
import android.view.ViewGroup
import androidx.fragment.app.Fragment
-import com.squareup.workflow.Workflow
-import com.squareup.workflow.ui.WorkflowRunner.Config
+import com.squareup.workflow1.Workflow
+import com.squareup.workflow1.ui.WorkflowRunner.Config
/**
* A [Fragment] that can run a workflow. Subclasses implement [onCreateWorkflow]
diff --git a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/WorkflowLayout.kt b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/WorkflowLayout.kt
similarity index 99%
rename from workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/WorkflowLayout.kt
rename to workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/WorkflowLayout.kt
index cee2235bab..7914fd27b4 100644
--- a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/WorkflowLayout.kt
+++ b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/WorkflowLayout.kt
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.ui
+package com.squareup.workflow1.ui
import android.content.Context
import android.os.Parcel
diff --git a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/WorkflowRunner.kt b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/WorkflowRunner.kt
similarity index 96%
rename from workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/WorkflowRunner.kt
rename to workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/WorkflowRunner.kt
index c44d2ab99f..8278f4daab 100644
--- a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/WorkflowRunner.kt
+++ b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/WorkflowRunner.kt
@@ -15,17 +15,17 @@
*/
@file:Suppress("LongParameterList")
-package com.squareup.workflow.ui
+package com.squareup.workflow1.ui
import androidx.fragment.app.Fragment
import androidx.fragment.app.FragmentActivity
import androidx.lifecycle.ViewModelProvider
import androidx.lifecycle.lifecycleScope
-import com.squareup.workflow.ExperimentalWorkflowApi
-import com.squareup.workflow.Workflow
-import com.squareup.workflow.WorkflowInterceptor
-import com.squareup.workflow.ui.WorkflowRunner.Config
-import com.squareup.workflow.ui.WorkflowRunnerViewModel.SnapshotSaver
+import com.squareup.workflow1.ExperimentalWorkflowApi
+import com.squareup.workflow1.Workflow
+import com.squareup.workflow1.WorkflowInterceptor
+import com.squareup.workflow1.ui.WorkflowRunner.Config
+import com.squareup.workflow1.ui.WorkflowRunnerViewModel.SnapshotSaver
import kotlinx.coroutines.CoroutineDispatcher
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.ExperimentalCoroutinesApi
diff --git a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/WorkflowRunnerViewModel.kt b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/WorkflowRunnerViewModel.kt
similarity index 95%
rename from workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/WorkflowRunnerViewModel.kt
rename to workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/WorkflowRunnerViewModel.kt
index 93c115b93d..edd582b126 100644
--- a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/WorkflowRunnerViewModel.kt
+++ b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/WorkflowRunnerViewModel.kt
@@ -13,17 +13,17 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.ui
+package com.squareup.workflow1.ui
import android.os.Bundle
import androidx.lifecycle.ViewModel
import androidx.lifecycle.ViewModelProvider
import androidx.savedstate.SavedStateRegistry
import androidx.savedstate.SavedStateRegistry.SavedStateProvider
-import com.squareup.workflow.RenderingAndSnapshot
-import com.squareup.workflow.TreeSnapshot
-import com.squareup.workflow.renderWorkflowIn
-import com.squareup.workflow.ui.WorkflowRunner.Config
+import com.squareup.workflow1.RenderingAndSnapshot
+import com.squareup.workflow1.TreeSnapshot
+import com.squareup.workflow1.renderWorkflowIn
+import com.squareup.workflow1.ui.WorkflowRunner.Config
import kotlinx.coroutines.CancellationException
import kotlinx.coroutines.CompletableDeferred
import kotlinx.coroutines.CoroutineScope
diff --git a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/WorkflowViewStub.kt b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/WorkflowViewStub.kt
similarity index 96%
rename from workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/WorkflowViewStub.kt
rename to workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/WorkflowViewStub.kt
index 1bb59a61a8..f5654c4573 100644
--- a/workflow-ui/core-android/src/main/java/com/squareup/workflow/ui/WorkflowViewStub.kt
+++ b/workflow-ui/core-android/src/main/java/com/squareup/workflow1/ui/WorkflowViewStub.kt
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.ui
+package com.squareup.workflow1.ui
import android.content.Context
import android.util.AttributeSet
@@ -34,7 +34,7 @@ import androidx.annotation.IdRes
* xmlns:app="http://schemas.android.com/apk/res-auto"
* …>
*
- *
@@ -137,8 +137,8 @@ class WorkflowViewStub @JvmOverloads constructor(
* @throws IllegalArgumentException if no binding can be find for the type of [rendering]
*
* @throws IllegalStateException if the matching
- * [ViewFactory][com.squareup.workflow.ui.ViewFactory] fails to call
- * [View.bindShowRendering][com.squareup.workflow.ui.bindShowRendering]
+ * [ViewFactory][com.squareup.workflow1.ui.ViewFactory] fails to call
+ * [View.bindShowRendering][com.squareup.workflow1.ui.bindShowRendering]
* when constructing the view
*/
fun update(
diff --git a/workflow-ui/core-android/src/test/java/com/squareup/workflow/ui/BindingViewRegistryTest.kt b/workflow-ui/core-android/src/test/java/com/squareup/workflow1/ui/BindingViewRegistryTest.kt
similarity index 98%
rename from workflow-ui/core-android/src/test/java/com/squareup/workflow/ui/BindingViewRegistryTest.kt
rename to workflow-ui/core-android/src/test/java/com/squareup/workflow1/ui/BindingViewRegistryTest.kt
index 39ad8ec1fd..98311f8678 100644
--- a/workflow-ui/core-android/src/test/java/com/squareup/workflow/ui/BindingViewRegistryTest.kt
+++ b/workflow-ui/core-android/src/test/java/com/squareup/workflow1/ui/BindingViewRegistryTest.kt
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.ui
+package com.squareup.workflow1.ui
import com.google.common.truth.Truth.assertThat
import org.junit.Test
diff --git a/workflow-ui/core-android/src/test/java/com/squareup/workflow/ui/CompositeViewRegistryTest.kt b/workflow-ui/core-android/src/test/java/com/squareup/workflow1/ui/CompositeViewRegistryTest.kt
similarity index 99%
rename from workflow-ui/core-android/src/test/java/com/squareup/workflow/ui/CompositeViewRegistryTest.kt
rename to workflow-ui/core-android/src/test/java/com/squareup/workflow1/ui/CompositeViewRegistryTest.kt
index cbbe6ab024..af869c6c75 100644
--- a/workflow-ui/core-android/src/test/java/com/squareup/workflow/ui/CompositeViewRegistryTest.kt
+++ b/workflow-ui/core-android/src/test/java/com/squareup/workflow1/ui/CompositeViewRegistryTest.kt
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.ui
+package com.squareup.workflow1.ui
import com.google.common.truth.Truth.assertThat
import org.junit.Test
diff --git a/workflow-ui/core-android/src/test/java/com/squareup/workflow/ui/TestViewFactory.kt b/workflow-ui/core-android/src/test/java/com/squareup/workflow1/ui/TestViewFactory.kt
similarity index 97%
rename from workflow-ui/core-android/src/test/java/com/squareup/workflow/ui/TestViewFactory.kt
rename to workflow-ui/core-android/src/test/java/com/squareup/workflow1/ui/TestViewFactory.kt
index c1e2f6475d..9b2dbb3f62 100644
--- a/workflow-ui/core-android/src/test/java/com/squareup/workflow/ui/TestViewFactory.kt
+++ b/workflow-ui/core-android/src/test/java/com/squareup/workflow1/ui/TestViewFactory.kt
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.ui
+package com.squareup.workflow1.ui
import android.content.Context
import android.view.View
diff --git a/workflow-ui/core-android/src/test/java/com/squareup/workflow/ui/ViewEnvironmentTest.kt b/workflow-ui/core-android/src/test/java/com/squareup/workflow1/ui/ViewEnvironmentTest.kt
similarity index 98%
rename from workflow-ui/core-android/src/test/java/com/squareup/workflow/ui/ViewEnvironmentTest.kt
rename to workflow-ui/core-android/src/test/java/com/squareup/workflow1/ui/ViewEnvironmentTest.kt
index d9a4856d81..e650885ce0 100644
--- a/workflow-ui/core-android/src/test/java/com/squareup/workflow/ui/ViewEnvironmentTest.kt
+++ b/workflow-ui/core-android/src/test/java/com/squareup/workflow1/ui/ViewEnvironmentTest.kt
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.ui
+package com.squareup.workflow1.ui
import com.google.common.truth.Truth.assertThat
import org.junit.Test
diff --git a/workflow-ui/core-android/src/test/java/com/squareup/workflow/ui/ViewRegistryTest.kt b/workflow-ui/core-android/src/test/java/com/squareup/workflow1/ui/ViewRegistryTest.kt
similarity index 94%
rename from workflow-ui/core-android/src/test/java/com/squareup/workflow/ui/ViewRegistryTest.kt
rename to workflow-ui/core-android/src/test/java/com/squareup/workflow1/ui/ViewRegistryTest.kt
index b6bfa61212..4b2b3de5b2 100644
--- a/workflow-ui/core-android/src/test/java/com/squareup/workflow/ui/ViewRegistryTest.kt
+++ b/workflow-ui/core-android/src/test/java/com/squareup/workflow1/ui/ViewRegistryTest.kt
@@ -1,4 +1,4 @@
-package com.squareup.workflow.ui
+package com.squareup.workflow1.ui
import android.content.Context
import android.view.View
@@ -41,7 +41,7 @@ class ViewRegistryTest {
assertThat(error)
.hasMessageThat()
.isEqualTo(
- "View.bindShowRendering should have been called for mock view, typically by the com.squareup.workflow.ui.ViewFactory that created it."
+ "View.bindShowRendering should have been called for mock view, typically by the com.squareup.workflow1.ui.ViewFactory that created it."
)
}
diff --git a/workflow-ui/core-android/src/test/java/com/squareup/workflow/ui/WorkflowRunnerViewModelTest.kt b/workflow-ui/core-android/src/test/java/com/squareup/workflow1/ui/WorkflowRunnerViewModelTest.kt
similarity index 90%
rename from workflow-ui/core-android/src/test/java/com/squareup/workflow/ui/WorkflowRunnerViewModelTest.kt
rename to workflow-ui/core-android/src/test/java/com/squareup/workflow1/ui/WorkflowRunnerViewModelTest.kt
index 3021ff93da..2f20281c7e 100644
--- a/workflow-ui/core-android/src/test/java/com/squareup/workflow/ui/WorkflowRunnerViewModelTest.kt
+++ b/workflow-ui/core-android/src/test/java/com/squareup/workflow1/ui/WorkflowRunnerViewModelTest.kt
@@ -1,19 +1,19 @@
-package com.squareup.workflow.ui
+package com.squareup.workflow1.ui
import androidx.savedstate.SavedStateRegistry.SavedStateProvider
import com.google.common.truth.Truth.assertThat
-import com.squareup.workflow.RenderingAndSnapshot
-import com.squareup.workflow.Snapshot
-import com.squareup.workflow.TreeSnapshot
-import com.squareup.workflow.Worker
-import com.squareup.workflow.Workflow
-import com.squareup.workflow.action
-import com.squareup.workflow.asWorker
-import com.squareup.workflow.runningWorker
-import com.squareup.workflow.stateless
-import com.squareup.workflow.ui.WorkflowRunner.Config
-import com.squareup.workflow.ui.WorkflowRunnerViewModel.Factory
-import com.squareup.workflow.ui.WorkflowRunnerViewModel.SnapshotSaver
+import com.squareup.workflow1.RenderingAndSnapshot
+import com.squareup.workflow1.Snapshot
+import com.squareup.workflow1.TreeSnapshot
+import com.squareup.workflow1.Worker
+import com.squareup.workflow1.Workflow
+import com.squareup.workflow1.action
+import com.squareup.workflow1.asWorker
+import com.squareup.workflow1.runningWorker
+import com.squareup.workflow1.stateless
+import com.squareup.workflow1.ui.WorkflowRunner.Config
+import com.squareup.workflow1.ui.WorkflowRunnerViewModel.Factory
+import com.squareup.workflow1.ui.WorkflowRunnerViewModel.SnapshotSaver
import kotlinx.coroutines.CancellationException
import kotlinx.coroutines.CompletableDeferred
import kotlinx.coroutines.CoroutineScope
diff --git a/workflow-ui/core-common/api/core-common.api b/workflow-ui/core-common/api/core-common.api
index a4abf7ff00..df7810d77f 100644
--- a/workflow-ui/core-common/api/core-common.api
+++ b/workflow-ui/core-common/api/core-common.api
@@ -1,18 +1,18 @@
-public abstract interface class com/squareup/workflow/ui/Compatible {
+public abstract interface class com/squareup/workflow1/ui/Compatible {
public abstract fun getCompatibilityKey ()Ljava/lang/String;
}
-public final class com/squareup/workflow/ui/CompatibleKt {
+public final class com/squareup/workflow1/ui/CompatibleKt {
public static final fun compatible (Ljava/lang/Object;Ljava/lang/Object;)Z
}
-public final class com/squareup/workflow/ui/Named : com/squareup/workflow/ui/Compatible {
- public static final field Companion Lcom/squareup/workflow/ui/Named$Companion;
+public final class com/squareup/workflow1/ui/Named : com/squareup/workflow1/ui/Compatible {
+ public static final field Companion Lcom/squareup/workflow1/ui/Named$Companion;
public fun (Ljava/lang/Object;Ljava/lang/String;)V
public final fun component1 ()Ljava/lang/Object;
public final fun component2 ()Ljava/lang/String;
- public final fun copy (Ljava/lang/Object;Ljava/lang/String;)Lcom/squareup/workflow/ui/Named;
- public static synthetic fun copy$default (Lcom/squareup/workflow/ui/Named;Ljava/lang/Object;Ljava/lang/String;ILjava/lang/Object;)Lcom/squareup/workflow/ui/Named;
+ public final fun copy (Ljava/lang/Object;Ljava/lang/String;)Lcom/squareup/workflow1/ui/Named;
+ public static synthetic fun copy$default (Lcom/squareup/workflow1/ui/Named;Ljava/lang/Object;Ljava/lang/String;ILjava/lang/Object;)Lcom/squareup/workflow1/ui/Named;
public fun equals (Ljava/lang/Object;)Z
public fun getCompatibilityKey ()Ljava/lang/String;
public final fun getName ()Ljava/lang/String;
@@ -21,11 +21,11 @@ public final class com/squareup/workflow/ui/Named : com/squareup/workflow/ui/Com
public fun toString ()Ljava/lang/String;
}
-public final class com/squareup/workflow/ui/Named$Companion {
+public final class com/squareup/workflow1/ui/Named$Companion {
public final fun keyFor (Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/String;
- public static synthetic fun keyFor$default (Lcom/squareup/workflow/ui/Named$Companion;Ljava/lang/Object;Ljava/lang/String;ILjava/lang/Object;)Ljava/lang/String;
+ public static synthetic fun keyFor$default (Lcom/squareup/workflow1/ui/Named$Companion;Ljava/lang/Object;Ljava/lang/String;ILjava/lang/Object;)Ljava/lang/String;
}
-public abstract interface annotation class com/squareup/workflow/ui/WorkflowUiExperimentalApi : java/lang/annotation/Annotation {
+public abstract interface annotation class com/squareup/workflow1/ui/WorkflowUiExperimentalApi : java/lang/annotation/Annotation {
}
diff --git a/workflow-ui/core-common/src/main/java/com/squareup/workflow/ui/Compatible.kt b/workflow-ui/core-common/src/main/java/com/squareup/workflow1/ui/Compatible.kt
similarity index 97%
rename from workflow-ui/core-common/src/main/java/com/squareup/workflow/ui/Compatible.kt
rename to workflow-ui/core-common/src/main/java/com/squareup/workflow1/ui/Compatible.kt
index d4eb7d27da..c8e5d195e9 100644
--- a/workflow-ui/core-common/src/main/java/com/squareup/workflow/ui/Compatible.kt
+++ b/workflow-ui/core-common/src/main/java/com/squareup/workflow1/ui/Compatible.kt
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.ui
+package com.squareup.workflow1.ui
/**
* Normally returns true if [me] and [you] are instances of the same class.
diff --git a/workflow-ui/core-common/src/main/java/com/squareup/workflow/ui/Named.kt b/workflow-ui/core-common/src/main/java/com/squareup/workflow1/ui/Named.kt
similarity index 97%
rename from workflow-ui/core-common/src/main/java/com/squareup/workflow/ui/Named.kt
rename to workflow-ui/core-common/src/main/java/com/squareup/workflow1/ui/Named.kt
index 5216c95949..8c7a3e0658 100644
--- a/workflow-ui/core-common/src/main/java/com/squareup/workflow/ui/Named.kt
+++ b/workflow-ui/core-common/src/main/java/com/squareup/workflow1/ui/Named.kt
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.ui
+package com.squareup.workflow1.ui
/**
* Allows renderings that do not implement [Compatible] themselves to be distinguished
diff --git a/workflow-ui/core-common/src/main/java/com/squareup/workflow/ui/WorkflowUiExperimentalApi.kt b/workflow-ui/core-common/src/main/java/com/squareup/workflow1/ui/WorkflowUiExperimentalApi.kt
similarity index 97%
rename from workflow-ui/core-common/src/main/java/com/squareup/workflow/ui/WorkflowUiExperimentalApi.kt
rename to workflow-ui/core-common/src/main/java/com/squareup/workflow1/ui/WorkflowUiExperimentalApi.kt
index c01ee26847..d8474cf035 100644
--- a/workflow-ui/core-common/src/main/java/com/squareup/workflow/ui/WorkflowUiExperimentalApi.kt
+++ b/workflow-ui/core-common/src/main/java/com/squareup/workflow1/ui/WorkflowUiExperimentalApi.kt
@@ -16,7 +16,7 @@
@file:JvmMultifileClass
@file:JvmName("Workflows")
-package com.squareup.workflow.ui
+package com.squareup.workflow1.ui
import kotlin.RequiresOptIn.Level.ERROR
import kotlin.annotation.AnnotationRetention.BINARY
diff --git a/workflow-ui/core-common/src/test/java/com/squareup/workflow/ui/CompatibleTest.kt b/workflow-ui/core-common/src/test/java/com/squareup/workflow1/ui/CompatibleTest.kt
similarity index 97%
rename from workflow-ui/core-common/src/test/java/com/squareup/workflow/ui/CompatibleTest.kt
rename to workflow-ui/core-common/src/test/java/com/squareup/workflow1/ui/CompatibleTest.kt
index 6c18eaebbf..80cfca6789 100644
--- a/workflow-ui/core-common/src/test/java/com/squareup/workflow/ui/CompatibleTest.kt
+++ b/workflow-ui/core-common/src/test/java/com/squareup/workflow1/ui/CompatibleTest.kt
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.ui
+package com.squareup.workflow1.ui
import com.google.common.truth.Truth.assertThat
import org.junit.Test
diff --git a/workflow-ui/core-common/src/test/java/com/squareup/workflow/ui/NamedTest.kt b/workflow-ui/core-common/src/test/java/com/squareup/workflow1/ui/NamedTest.kt
similarity index 96%
rename from workflow-ui/core-common/src/test/java/com/squareup/workflow/ui/NamedTest.kt
rename to workflow-ui/core-common/src/test/java/com/squareup/workflow1/ui/NamedTest.kt
index 6fa73469ed..8aab63afb9 100644
--- a/workflow-ui/core-common/src/test/java/com/squareup/workflow/ui/NamedTest.kt
+++ b/workflow-ui/core-common/src/test/java/com/squareup/workflow1/ui/NamedTest.kt
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.ui
+package com.squareup.workflow1.ui
import com.google.common.truth.Truth.assertThat
import org.junit.Test
@@ -73,7 +73,7 @@ class NamedTest {
@Test fun `recursive keys are legible`() {
assertThat(Named(Named(Hey, "one"), "ho").compatibilityKey)
- .isEqualTo("com.squareup.workflow.ui.NamedTest\$Hey-Named(one)-Named(ho)")
+ .isEqualTo("com.squareup.workflow1.ui.NamedTest\$Hey-Named(one)-Named(ho)")
}
private class Foo(override val compatibilityKey: String) : Compatible
diff --git a/workflow-ui/modal-android/api/modal-android.api b/workflow-ui/modal-android/api/modal-android.api
index cb6d4e3307..90cd8cd610 100644
--- a/workflow-ui/modal-android/api/modal-android.api
+++ b/workflow-ui/modal-android/api/modal-android.api
@@ -1,23 +1,23 @@
-public final class com/squareup/workflow/ui/modal/AlertContainer : com/squareup/workflow/ui/modal/ModalContainer {
- public static final field Companion Lcom/squareup/workflow/ui/modal/AlertContainer$Companion;
+public final class com/squareup/workflow1/ui/modal/AlertContainer : com/squareup/workflow1/ui/modal/ModalContainer {
+ public static final field Companion Lcom/squareup/workflow1/ui/modal/AlertContainer$Companion;
public fun (Landroid/content/Context;)V
public fun (Landroid/content/Context;Landroid/util/AttributeSet;)V
public fun (Landroid/content/Context;Landroid/util/AttributeSet;I)V
public fun (Landroid/content/Context;Landroid/util/AttributeSet;II)V
public fun (Landroid/content/Context;Landroid/util/AttributeSet;III)V
public synthetic fun (Landroid/content/Context;Landroid/util/AttributeSet;IIIILkotlin/jvm/internal/DefaultConstructorMarker;)V
- public synthetic fun buildDialog (Ljava/lang/Object;Lcom/squareup/workflow/ui/ViewEnvironment;)Lcom/squareup/workflow/ui/modal/ModalContainer$DialogRef;
+ public synthetic fun buildDialog (Ljava/lang/Object;Lcom/squareup/workflow1/ui/ViewEnvironment;)Lcom/squareup/workflow1/ui/modal/ModalContainer$DialogRef;
}
-public final class com/squareup/workflow/ui/modal/AlertContainer$Companion : com/squareup/workflow/ui/ViewFactory {
- public fun buildView (Lcom/squareup/workflow/ui/modal/AlertContainerScreen;Lcom/squareup/workflow/ui/ViewEnvironment;Landroid/content/Context;Landroid/view/ViewGroup;)Landroid/view/View;
- public synthetic fun buildView (Ljava/lang/Object;Lcom/squareup/workflow/ui/ViewEnvironment;Landroid/content/Context;Landroid/view/ViewGroup;)Landroid/view/View;
- public final fun customThemeBinding (I)Lcom/squareup/workflow/ui/ViewFactory;
- public static synthetic fun customThemeBinding$default (Lcom/squareup/workflow/ui/modal/AlertContainer$Companion;IILjava/lang/Object;)Lcom/squareup/workflow/ui/ViewFactory;
+public final class com/squareup/workflow1/ui/modal/AlertContainer$Companion : com/squareup/workflow1/ui/ViewFactory {
+ public fun buildView (Lcom/squareup/workflow1/ui/modal/AlertContainerScreen;Lcom/squareup/workflow1/ui/ViewEnvironment;Landroid/content/Context;Landroid/view/ViewGroup;)Landroid/view/View;
+ public synthetic fun buildView (Ljava/lang/Object;Lcom/squareup/workflow1/ui/ViewEnvironment;Landroid/content/Context;Landroid/view/ViewGroup;)Landroid/view/View;
+ public final fun customThemeBinding (I)Lcom/squareup/workflow1/ui/ViewFactory;
+ public static synthetic fun customThemeBinding$default (Lcom/squareup/workflow1/ui/modal/AlertContainer$Companion;IILjava/lang/Object;)Lcom/squareup/workflow1/ui/ViewFactory;
public fun getType ()Lkotlin/reflect/KClass;
}
-public final class com/squareup/workflow/ui/modal/BuildConfig {
+public final class com/squareup/workflow1/ui/modal/BuildConfig {
public static final field BUILD_TYPE Ljava/lang/String;
public static final field DEBUG Z
public static final field LIBRARY_PACKAGE_NAME Ljava/lang/String;
@@ -26,56 +26,56 @@ public final class com/squareup/workflow/ui/modal/BuildConfig {
public fun ()V
}
-public abstract class com/squareup/workflow/ui/modal/ModalContainer : android/widget/FrameLayout {
+public abstract class com/squareup/workflow1/ui/modal/ModalContainer : android/widget/FrameLayout {
public fun (Landroid/content/Context;)V
public fun (Landroid/content/Context;Landroid/util/AttributeSet;)V
public fun (Landroid/content/Context;Landroid/util/AttributeSet;I)V
public fun (Landroid/content/Context;Landroid/util/AttributeSet;II)V
public synthetic fun (Landroid/content/Context;Landroid/util/AttributeSet;IIILkotlin/jvm/internal/DefaultConstructorMarker;)V
- protected abstract fun buildDialog (Ljava/lang/Object;Lcom/squareup/workflow/ui/ViewEnvironment;)Lcom/squareup/workflow/ui/modal/ModalContainer$DialogRef;
+ protected abstract fun buildDialog (Ljava/lang/Object;Lcom/squareup/workflow1/ui/ViewEnvironment;)Lcom/squareup/workflow1/ui/modal/ModalContainer$DialogRef;
protected fun onRestoreInstanceState (Landroid/os/Parcelable;)V
protected fun onSaveInstanceState ()Landroid/os/Parcelable;
- protected final fun update (Lcom/squareup/workflow/ui/modal/HasModals;Lcom/squareup/workflow/ui/ViewEnvironment;)V
- protected abstract fun updateDialog (Lcom/squareup/workflow/ui/modal/ModalContainer$DialogRef;)V
+ protected final fun update (Lcom/squareup/workflow1/ui/modal/HasModals;Lcom/squareup/workflow1/ui/ViewEnvironment;)V
+ protected abstract fun updateDialog (Lcom/squareup/workflow1/ui/modal/ModalContainer$DialogRef;)V
}
-protected final class com/squareup/workflow/ui/modal/ModalContainer$DialogRef {
- public fun (Ljava/lang/Object;Lcom/squareup/workflow/ui/ViewEnvironment;Landroid/app/Dialog;Ljava/lang/Object;)V
- public synthetic fun (Ljava/lang/Object;Lcom/squareup/workflow/ui/ViewEnvironment;Landroid/app/Dialog;Ljava/lang/Object;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
+protected final class com/squareup/workflow1/ui/modal/ModalContainer$DialogRef {
+ public fun (Ljava/lang/Object;Lcom/squareup/workflow1/ui/ViewEnvironment;Landroid/app/Dialog;Ljava/lang/Object;)V
+ public synthetic fun (Ljava/lang/Object;Lcom/squareup/workflow1/ui/ViewEnvironment;Landroid/app/Dialog;Ljava/lang/Object;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/lang/Object;
- public final fun component2 ()Lcom/squareup/workflow/ui/ViewEnvironment;
+ public final fun component2 ()Lcom/squareup/workflow1/ui/ViewEnvironment;
public final fun component3 ()Landroid/app/Dialog;
public final fun component4 ()Ljava/lang/Object;
- public final fun copy (Ljava/lang/Object;Lcom/squareup/workflow/ui/ViewEnvironment;Landroid/app/Dialog;Ljava/lang/Object;)Lcom/squareup/workflow/ui/modal/ModalContainer$DialogRef;
- public static synthetic fun copy$default (Lcom/squareup/workflow/ui/modal/ModalContainer$DialogRef;Ljava/lang/Object;Lcom/squareup/workflow/ui/ViewEnvironment;Landroid/app/Dialog;Ljava/lang/Object;ILjava/lang/Object;)Lcom/squareup/workflow/ui/modal/ModalContainer$DialogRef;
+ public final fun copy (Ljava/lang/Object;Lcom/squareup/workflow1/ui/ViewEnvironment;Landroid/app/Dialog;Ljava/lang/Object;)Lcom/squareup/workflow1/ui/modal/ModalContainer$DialogRef;
+ public static synthetic fun copy$default (Lcom/squareup/workflow1/ui/modal/ModalContainer$DialogRef;Ljava/lang/Object;Lcom/squareup/workflow1/ui/ViewEnvironment;Landroid/app/Dialog;Ljava/lang/Object;ILjava/lang/Object;)Lcom/squareup/workflow1/ui/modal/ModalContainer$DialogRef;
public fun equals (Ljava/lang/Object;)Z
public final fun getDialog ()Landroid/app/Dialog;
public final fun getExtra ()Ljava/lang/Object;
public final fun getModalRendering ()Ljava/lang/Object;
- public final fun getViewEnvironment ()Lcom/squareup/workflow/ui/ViewEnvironment;
+ public final fun getViewEnvironment ()Lcom/squareup/workflow1/ui/ViewEnvironment;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
-public class com/squareup/workflow/ui/modal/ModalViewContainer : com/squareup/workflow/ui/modal/ModalContainer {
- public static final field Companion Lcom/squareup/workflow/ui/modal/ModalViewContainer$Companion;
+public class com/squareup/workflow1/ui/modal/ModalViewContainer : com/squareup/workflow1/ui/modal/ModalContainer {
+ public static final field Companion Lcom/squareup/workflow1/ui/modal/ModalViewContainer$Companion;
public fun (Landroid/content/Context;)V
public fun (Landroid/content/Context;Landroid/util/AttributeSet;)V
public fun (Landroid/content/Context;Landroid/util/AttributeSet;I)V
public fun (Landroid/content/Context;Landroid/util/AttributeSet;II)V
public synthetic fun (Landroid/content/Context;Landroid/util/AttributeSet;IIILkotlin/jvm/internal/DefaultConstructorMarker;)V
- protected final fun buildDialog (Ljava/lang/Object;Lcom/squareup/workflow/ui/ViewEnvironment;)Lcom/squareup/workflow/ui/modal/ModalContainer$DialogRef;
+ protected final fun buildDialog (Ljava/lang/Object;Lcom/squareup/workflow1/ui/ViewEnvironment;)Lcom/squareup/workflow1/ui/modal/ModalContainer$DialogRef;
public fun buildDialogForView (Landroid/view/View;)Landroid/app/Dialog;
- protected fun updateDialog (Lcom/squareup/workflow/ui/modal/ModalContainer$DialogRef;)V
+ protected fun updateDialog (Lcom/squareup/workflow1/ui/modal/ModalContainer$DialogRef;)V
}
-public final class com/squareup/workflow/ui/modal/ModalViewContainer$Binding : com/squareup/workflow/ui/ViewFactory {
+public final class com/squareup/workflow1/ui/modal/ModalViewContainer$Binding : com/squareup/workflow1/ui/ViewFactory {
public fun (ILkotlin/reflect/KClass;)V
- public fun buildView (Lcom/squareup/workflow/ui/modal/HasModals;Lcom/squareup/workflow/ui/ViewEnvironment;Landroid/content/Context;Landroid/view/ViewGroup;)Landroid/view/View;
- public synthetic fun buildView (Ljava/lang/Object;Lcom/squareup/workflow/ui/ViewEnvironment;Landroid/content/Context;Landroid/view/ViewGroup;)Landroid/view/View;
+ public fun buildView (Lcom/squareup/workflow1/ui/modal/HasModals;Lcom/squareup/workflow1/ui/ViewEnvironment;Landroid/content/Context;Landroid/view/ViewGroup;)Landroid/view/View;
+ public synthetic fun buildView (Ljava/lang/Object;Lcom/squareup/workflow1/ui/ViewEnvironment;Landroid/content/Context;Landroid/view/ViewGroup;)Landroid/view/View;
public fun getType ()Lkotlin/reflect/KClass;
}
-public final class com/squareup/workflow/ui/modal/ModalViewContainer$Companion {
+public final class com/squareup/workflow1/ui/modal/ModalViewContainer$Companion {
}
diff --git a/workflow-ui/modal-android/src/main/AndroidManifest.xml b/workflow-ui/modal-android/src/main/AndroidManifest.xml
index 195484e775..319df02dca 100644
--- a/workflow-ui/modal-android/src/main/AndroidManifest.xml
+++ b/workflow-ui/modal-android/src/main/AndroidManifest.xml
@@ -13,4 +13,4 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
-
+
diff --git a/workflow-ui/modal-android/src/main/java/com/squareup/workflow/ui/modal/AlertContainer.kt b/workflow-ui/modal-android/src/main/java/com/squareup/workflow1/ui/modal/AlertContainer.kt
similarity index 84%
rename from workflow-ui/modal-android/src/main/java/com/squareup/workflow/ui/modal/AlertContainer.kt
rename to workflow-ui/modal-android/src/main/java/com/squareup/workflow1/ui/modal/AlertContainer.kt
index bcffd5e824..a461e75197 100644
--- a/workflow-ui/modal-android/src/main/java/com/squareup/workflow/ui/modal/AlertContainer.kt
+++ b/workflow-ui/modal-android/src/main/java/com/squareup/workflow1/ui/modal/AlertContainer.kt
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.ui.modal
+package com.squareup.workflow1.ui.modal
import android.content.Context
import android.content.DialogInterface
@@ -23,17 +23,17 @@ import android.view.ViewGroup
import android.view.ViewGroup.LayoutParams.MATCH_PARENT
import androidx.annotation.StyleRes
import androidx.appcompat.app.AlertDialog
-import com.squareup.workflow.ui.BuilderBinding
-import com.squareup.workflow.ui.WorkflowUiExperimentalApi
-import com.squareup.workflow.ui.ViewFactory
-import com.squareup.workflow.ui.ViewEnvironment
-import com.squareup.workflow.ui.bindShowRendering
-import com.squareup.workflow.ui.modal.AlertScreen.Button
-import com.squareup.workflow.ui.modal.AlertScreen.Button.NEGATIVE
-import com.squareup.workflow.ui.modal.AlertScreen.Button.NEUTRAL
-import com.squareup.workflow.ui.modal.AlertScreen.Button.POSITIVE
-import com.squareup.workflow.ui.modal.AlertScreen.Event.ButtonClicked
-import com.squareup.workflow.ui.modal.AlertScreen.Event.Canceled
+import com.squareup.workflow1.ui.BuilderBinding
+import com.squareup.workflow1.ui.WorkflowUiExperimentalApi
+import com.squareup.workflow1.ui.ViewFactory
+import com.squareup.workflow1.ui.ViewEnvironment
+import com.squareup.workflow1.ui.bindShowRendering
+import com.squareup.workflow1.ui.modal.AlertScreen.Button
+import com.squareup.workflow1.ui.modal.AlertScreen.Button.NEGATIVE
+import com.squareup.workflow1.ui.modal.AlertScreen.Button.NEUTRAL
+import com.squareup.workflow1.ui.modal.AlertScreen.Button.POSITIVE
+import com.squareup.workflow1.ui.modal.AlertScreen.Event.ButtonClicked
+import com.squareup.workflow1.ui.modal.AlertScreen.Event.Canceled
/**
* Renders the [AlertScreen]s of an [AlertContainerScreen] as [AlertDialog]s.
diff --git a/workflow-ui/modal-android/src/main/java/com/squareup/workflow/ui/modal/ModalContainer.kt b/workflow-ui/modal-android/src/main/java/com/squareup/workflow1/ui/modal/ModalContainer.kt
similarity index 95%
rename from workflow-ui/modal-android/src/main/java/com/squareup/workflow/ui/modal/ModalContainer.kt
rename to workflow-ui/modal-android/src/main/java/com/squareup/workflow1/ui/modal/ModalContainer.kt
index 03ca7df281..7719cc3322 100644
--- a/workflow-ui/modal-android/src/main/java/com/squareup/workflow/ui/modal/ModalContainer.kt
+++ b/workflow-ui/modal-android/src/main/java/com/squareup/workflow1/ui/modal/ModalContainer.kt
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.ui.modal
+package com.squareup.workflow1.ui.modal
import android.app.Dialog
import android.content.Context
@@ -30,12 +30,12 @@ import androidx.lifecycle.Lifecycle
import androidx.lifecycle.Lifecycle.Event.ON_DESTROY
import androidx.lifecycle.LifecycleObserver
import androidx.lifecycle.OnLifecycleEvent
-import com.squareup.workflow.ui.WorkflowUiExperimentalApi
-import com.squareup.workflow.ui.Named
-import com.squareup.workflow.ui.ViewEnvironment
-import com.squareup.workflow.ui.WorkflowViewStub
-import com.squareup.workflow.ui.compatible
-import com.squareup.workflow.ui.lifecycleOrNull
+import com.squareup.workflow1.ui.WorkflowUiExperimentalApi
+import com.squareup.workflow1.ui.Named
+import com.squareup.workflow1.ui.ViewEnvironment
+import com.squareup.workflow1.ui.WorkflowViewStub
+import com.squareup.workflow1.ui.compatible
+import com.squareup.workflow1.ui.lifecycleOrNull
/**
* Base class for containers that show [HasModals.modals] in [Dialog] windows.
diff --git a/workflow-ui/modal-android/src/main/java/com/squareup/workflow/ui/modal/ModalViewContainer.kt b/workflow-ui/modal-android/src/main/java/com/squareup/workflow1/ui/modal/ModalViewContainer.kt
similarity index 89%
rename from workflow-ui/modal-android/src/main/java/com/squareup/workflow/ui/modal/ModalViewContainer.kt
rename to workflow-ui/modal-android/src/main/java/com/squareup/workflow1/ui/modal/ModalViewContainer.kt
index 814c96793c..fa3dbf9ec3 100644
--- a/workflow-ui/modal-android/src/main/java/com/squareup/workflow/ui/modal/ModalViewContainer.kt
+++ b/workflow-ui/modal-android/src/main/java/com/squareup/workflow1/ui/modal/ModalViewContainer.kt
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.ui.modal
+package com.squareup.workflow1.ui.modal
import android.app.Dialog
import android.content.Context
@@ -25,17 +25,17 @@ import android.view.ViewGroup
import android.view.ViewGroup.LayoutParams.MATCH_PARENT
import android.view.ViewGroup.LayoutParams.WRAP_CONTENT
import androidx.annotation.IdRes
-import com.squareup.workflow.ui.BuilderBinding
-import com.squareup.workflow.ui.WorkflowUiExperimentalApi
-import com.squareup.workflow.ui.ViewFactory
-import com.squareup.workflow.ui.ViewEnvironment
-import com.squareup.workflow.ui.ViewRegistry
-import com.squareup.workflow.ui.backPressedHandler
-import com.squareup.workflow.ui.bindShowRendering
-import com.squareup.workflow.ui.buildView
-import com.squareup.workflow.ui.modal.ModalViewContainer.Companion.binding
-import com.squareup.workflow.ui.onBackPressedDispatcherOwnerOrNull
-import com.squareup.workflow.ui.showRendering
+import com.squareup.workflow1.ui.BuilderBinding
+import com.squareup.workflow1.ui.WorkflowUiExperimentalApi
+import com.squareup.workflow1.ui.ViewFactory
+import com.squareup.workflow1.ui.ViewEnvironment
+import com.squareup.workflow1.ui.ViewRegistry
+import com.squareup.workflow1.ui.backPressedHandler
+import com.squareup.workflow1.ui.bindShowRendering
+import com.squareup.workflow1.ui.buildView
+import com.squareup.workflow1.ui.modal.ModalViewContainer.Companion.binding
+import com.squareup.workflow1.ui.onBackPressedDispatcherOwnerOrNull
+import com.squareup.workflow1.ui.showRendering
import kotlin.reflect.KClass
/**
diff --git a/workflow-ui/modal-common/api/modal-common.api b/workflow-ui/modal-common/api/modal-common.api
index be22b37539..b5c56e502c 100644
--- a/workflow-ui/modal-common/api/modal-common.api
+++ b/workflow-ui/modal-common/api/modal-common.api
@@ -1,12 +1,12 @@
-public final class com/squareup/workflow/ui/modal/AlertContainerScreen : com/squareup/workflow/ui/modal/HasModals {
- public fun (Ljava/lang/Object;Lcom/squareup/workflow/ui/modal/AlertScreen;)V
+public final class com/squareup/workflow1/ui/modal/AlertContainerScreen : com/squareup/workflow1/ui/modal/HasModals {
+ public fun (Ljava/lang/Object;Lcom/squareup/workflow1/ui/modal/AlertScreen;)V
public fun (Ljava/lang/Object;Ljava/util/List;)V
public synthetic fun (Ljava/lang/Object;Ljava/util/List;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
- public fun (Ljava/lang/Object;[Lcom/squareup/workflow/ui/modal/AlertScreen;)V
+ public fun (Ljava/lang/Object;[Lcom/squareup/workflow1/ui/modal/AlertScreen;)V
public final fun component1 ()Ljava/lang/Object;
public final fun component2 ()Ljava/util/List;
- public final fun copy (Ljava/lang/Object;Ljava/util/List;)Lcom/squareup/workflow/ui/modal/AlertContainerScreen;
- public static synthetic fun copy$default (Lcom/squareup/workflow/ui/modal/AlertContainerScreen;Ljava/lang/Object;Ljava/util/List;ILjava/lang/Object;)Lcom/squareup/workflow/ui/modal/AlertContainerScreen;
+ public final fun copy (Ljava/lang/Object;Ljava/util/List;)Lcom/squareup/workflow1/ui/modal/AlertContainerScreen;
+ public static synthetic fun copy$default (Lcom/squareup/workflow1/ui/modal/AlertContainerScreen;Ljava/lang/Object;Ljava/util/List;ILjava/lang/Object;)Lcom/squareup/workflow1/ui/modal/AlertContainerScreen;
public fun equals (Ljava/lang/Object;)Z
public fun getBeneathModals ()Ljava/lang/Object;
public fun getModals ()Ljava/util/List;
@@ -14,7 +14,7 @@ public final class com/squareup/workflow/ui/modal/AlertContainerScreen : com/squ
public fun toString ()Ljava/lang/String;
}
-public final class com/squareup/workflow/ui/modal/AlertScreen {
+public final class com/squareup/workflow1/ui/modal/AlertScreen {
public fun (Ljava/util/Map;Ljava/lang/String;Ljava/lang/String;ZLkotlin/jvm/functions/Function1;)V
public synthetic fun (Ljava/util/Map;Ljava/lang/String;Ljava/lang/String;ZLkotlin/jvm/functions/Function1;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/util/Map;
@@ -22,8 +22,8 @@ public final class com/squareup/workflow/ui/modal/AlertScreen {
public final fun component3 ()Ljava/lang/String;
public final fun component4 ()Z
public final fun component5 ()Lkotlin/jvm/functions/Function1;
- public final fun copy (Ljava/util/Map;Ljava/lang/String;Ljava/lang/String;ZLkotlin/jvm/functions/Function1;)Lcom/squareup/workflow/ui/modal/AlertScreen;
- public static synthetic fun copy$default (Lcom/squareup/workflow/ui/modal/AlertScreen;Ljava/util/Map;Ljava/lang/String;Ljava/lang/String;ZLkotlin/jvm/functions/Function1;ILjava/lang/Object;)Lcom/squareup/workflow/ui/modal/AlertScreen;
+ public final fun copy (Ljava/util/Map;Ljava/lang/String;Ljava/lang/String;ZLkotlin/jvm/functions/Function1;)Lcom/squareup/workflow1/ui/modal/AlertScreen;
+ public static synthetic fun copy$default (Lcom/squareup/workflow1/ui/modal/AlertScreen;Ljava/util/Map;Ljava/lang/String;Ljava/lang/String;ZLkotlin/jvm/functions/Function1;ILjava/lang/Object;)Lcom/squareup/workflow1/ui/modal/AlertScreen;
public fun equals (Ljava/lang/Object;)Z
public final fun getButtons ()Ljava/util/Map;
public final fun getCancelable ()Z
@@ -34,33 +34,33 @@ public final class com/squareup/workflow/ui/modal/AlertScreen {
public fun toString ()Ljava/lang/String;
}
-public final class com/squareup/workflow/ui/modal/AlertScreen$Button : java/lang/Enum {
- public static final field NEGATIVE Lcom/squareup/workflow/ui/modal/AlertScreen$Button;
- public static final field NEUTRAL Lcom/squareup/workflow/ui/modal/AlertScreen$Button;
- public static final field POSITIVE Lcom/squareup/workflow/ui/modal/AlertScreen$Button;
- public static fun valueOf (Ljava/lang/String;)Lcom/squareup/workflow/ui/modal/AlertScreen$Button;
- public static fun values ()[Lcom/squareup/workflow/ui/modal/AlertScreen$Button;
+public final class com/squareup/workflow1/ui/modal/AlertScreen$Button : java/lang/Enum {
+ public static final field NEGATIVE Lcom/squareup/workflow1/ui/modal/AlertScreen$Button;
+ public static final field NEUTRAL Lcom/squareup/workflow1/ui/modal/AlertScreen$Button;
+ public static final field POSITIVE Lcom/squareup/workflow1/ui/modal/AlertScreen$Button;
+ public static fun valueOf (Ljava/lang/String;)Lcom/squareup/workflow1/ui/modal/AlertScreen$Button;
+ public static fun values ()[Lcom/squareup/workflow1/ui/modal/AlertScreen$Button;
}
-public abstract class com/squareup/workflow/ui/modal/AlertScreen$Event {
+public abstract class com/squareup/workflow1/ui/modal/AlertScreen$Event {
}
-public final class com/squareup/workflow/ui/modal/AlertScreen$Event$ButtonClicked : com/squareup/workflow/ui/modal/AlertScreen$Event {
- public fun (Lcom/squareup/workflow/ui/modal/AlertScreen$Button;)V
- public final fun component1 ()Lcom/squareup/workflow/ui/modal/AlertScreen$Button;
- public final fun copy (Lcom/squareup/workflow/ui/modal/AlertScreen$Button;)Lcom/squareup/workflow/ui/modal/AlertScreen$Event$ButtonClicked;
- public static synthetic fun copy$default (Lcom/squareup/workflow/ui/modal/AlertScreen$Event$ButtonClicked;Lcom/squareup/workflow/ui/modal/AlertScreen$Button;ILjava/lang/Object;)Lcom/squareup/workflow/ui/modal/AlertScreen$Event$ButtonClicked;
+public final class com/squareup/workflow1/ui/modal/AlertScreen$Event$ButtonClicked : com/squareup/workflow1/ui/modal/AlertScreen$Event {
+ public fun (Lcom/squareup/workflow1/ui/modal/AlertScreen$Button;)V
+ public final fun component1 ()Lcom/squareup/workflow1/ui/modal/AlertScreen$Button;
+ public final fun copy (Lcom/squareup/workflow1/ui/modal/AlertScreen$Button;)Lcom/squareup/workflow1/ui/modal/AlertScreen$Event$ButtonClicked;
+ public static synthetic fun copy$default (Lcom/squareup/workflow1/ui/modal/AlertScreen$Event$ButtonClicked;Lcom/squareup/workflow1/ui/modal/AlertScreen$Button;ILjava/lang/Object;)Lcom/squareup/workflow1/ui/modal/AlertScreen$Event$ButtonClicked;
public fun equals (Ljava/lang/Object;)Z
- public final fun getButton ()Lcom/squareup/workflow/ui/modal/AlertScreen$Button;
+ public final fun getButton ()Lcom/squareup/workflow1/ui/modal/AlertScreen$Button;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
-public final class com/squareup/workflow/ui/modal/AlertScreen$Event$Canceled : com/squareup/workflow/ui/modal/AlertScreen$Event {
- public static final field INSTANCE Lcom/squareup/workflow/ui/modal/AlertScreen$Event$Canceled;
+public final class com/squareup/workflow1/ui/modal/AlertScreen$Event$Canceled : com/squareup/workflow1/ui/modal/AlertScreen$Event {
+ public static final field INSTANCE Lcom/squareup/workflow1/ui/modal/AlertScreen$Event$Canceled;
}
-public abstract interface class com/squareup/workflow/ui/modal/HasModals {
+public abstract interface class com/squareup/workflow1/ui/modal/HasModals {
public abstract fun getBeneathModals ()Ljava/lang/Object;
public abstract fun getModals ()Ljava/util/List;
}
diff --git a/workflow-ui/modal-common/src/main/java/com/squareup/workflow/ui/modal/AlertContainerScreen.kt b/workflow-ui/modal-common/src/main/java/com/squareup/workflow1/ui/modal/AlertContainerScreen.kt
similarity index 91%
rename from workflow-ui/modal-common/src/main/java/com/squareup/workflow/ui/modal/AlertContainerScreen.kt
rename to workflow-ui/modal-common/src/main/java/com/squareup/workflow1/ui/modal/AlertContainerScreen.kt
index 7e813407e0..7d8f93ab51 100644
--- a/workflow-ui/modal-common/src/main/java/com/squareup/workflow/ui/modal/AlertContainerScreen.kt
+++ b/workflow-ui/modal-common/src/main/java/com/squareup/workflow1/ui/modal/AlertContainerScreen.kt
@@ -13,9 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.ui.modal
+package com.squareup.workflow1.ui.modal
-import com.squareup.workflow.ui.WorkflowUiExperimentalApi
+import com.squareup.workflow1.ui.WorkflowUiExperimentalApi
/**
* May show a stack of [AlertScreen] over a [beneathModals].
diff --git a/workflow-ui/modal-common/src/main/java/com/squareup/workflow/ui/modal/AlertScreen.kt b/workflow-ui/modal-common/src/main/java/com/squareup/workflow1/ui/modal/AlertScreen.kt
similarity index 94%
rename from workflow-ui/modal-common/src/main/java/com/squareup/workflow/ui/modal/AlertScreen.kt
rename to workflow-ui/modal-common/src/main/java/com/squareup/workflow1/ui/modal/AlertScreen.kt
index 2c795bd911..787023f8bf 100644
--- a/workflow-ui/modal-common/src/main/java/com/squareup/workflow/ui/modal/AlertScreen.kt
+++ b/workflow-ui/modal-common/src/main/java/com/squareup/workflow1/ui/modal/AlertScreen.kt
@@ -13,9 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.ui.modal
+package com.squareup.workflow1.ui.modal
-import com.squareup.workflow.ui.WorkflowUiExperimentalApi
+import com.squareup.workflow1.ui.WorkflowUiExperimentalApi
/**
* Models a typical "You sure about that?" alert box.
diff --git a/workflow-ui/modal-common/src/main/java/com/squareup/workflow/ui/modal/HasModals.kt b/workflow-ui/modal-common/src/main/java/com/squareup/workflow1/ui/modal/HasModals.kt
similarity index 91%
rename from workflow-ui/modal-common/src/main/java/com/squareup/workflow/ui/modal/HasModals.kt
rename to workflow-ui/modal-common/src/main/java/com/squareup/workflow1/ui/modal/HasModals.kt
index 762400f9d8..544309b6cd 100644
--- a/workflow-ui/modal-common/src/main/java/com/squareup/workflow/ui/modal/HasModals.kt
+++ b/workflow-ui/modal-common/src/main/java/com/squareup/workflow1/ui/modal/HasModals.kt
@@ -13,9 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.squareup.workflow.ui.modal
+package com.squareup.workflow1.ui.modal
-import com.squareup.workflow.ui.WorkflowUiExperimentalApi
+import com.squareup.workflow1.ui.WorkflowUiExperimentalApi
/**
* Interface implemented by screen classes that represent a stack of