We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fab095c commit 2a98a65Copy full SHA for 2a98a65
.buildconfig.yml
@@ -1,4 +1,4 @@
1
-componentsVersion: 29.0.0
+componentsVersion: 27.2.0
2
projects:
3
concept-awesomebar:
4
path: components/concept/awesomebar
samples/browser/src/main/java/org/mozilla/samples/browser/MigrationService.kt
@@ -0,0 +1,13 @@
+package org.mozilla.samples.browser
+
+import mozilla.components.support.migration.AbstractMigrationService
+import mozilla.components.support.migration.state.MigrationStore
5
+import org.mozilla.samples.browser.ext.components
6
7
+/**
8
+ * Something.
9
+ */
10
+class MigrationService : AbstractMigrationService() {
11
+ override val migrator by lazy { components.migrator }
12
+ override val store: MigrationStore by lazy { components.migrationStore }
13
+}
0 commit comments