@@ -100,14 +100,14 @@ To declare a required dependency use the following in your `ComponentRegistrar`:
100
100
The provider will return ` null ` if the dependency is not present in the app.
101
101
102
102
{: .warning }
103
- > When the app uses [ Play's dynamic feature delivery] ( https://developer.android.com/guide/playcore/feature-delivery ) ,
104
- > ` provider.get() ` can return your dependency when it becomes available, so be prepared for that.
105
- > And don't store references to the result of ` provider.get() ` calls.
103
+ When the app uses [ Play's dynamic feature delivery] ( https://developer.android.com/guide/playcore/feature-delivery ) ,
104
+ ` provider.get() ` can return your dependency when it becomes available, so be prepared for that.
105
+ And don't store references to the result of ` provider.get() ` calls.
106
106
107
107
See [ Dynamic Module Support] ({{ site.baseurl }}{% link components/dynamic_modules.md %}) for details
108
108
109
109
{: .warning }
110
- > See Deferred dependencies if you your dependency has a callback based apis
110
+ See Deferred dependencies if you your dependency has a callback based apis
111
111
112
112
## Deferred Dependencies
113
113
@@ -169,10 +169,10 @@ To consume such a set the interested `Component` needs to declare a special kind
169
169
set will get initialized.
170
170
171
171
{: .warning }
172
- > Similar to optional ` Provider ` dependencies, where an optional dependency can become available at runtime due to
173
- > [ Play's dynamic feature delivery] ( https://developer.android.com/guide/playcore/feature-delivery ) ,
174
- > ` Set ` dependencies can change at runtime by new elements getting added to the set.
175
- > So make sure to hold on to the original ` Set ` to be able to observe new values in it as they are added.
172
+ Similar to optional ` Provider ` dependencies, where an optional dependency can become available at runtime due to
173
+ [ Play's dynamic feature delivery] ( https://developer.android.com/guide/playcore/feature-delivery ) ,
174
+ ` Set ` dependencies can change at runtime by new elements getting added to the set.
175
+ So make sure to hold on to the original ` Set ` to be able to observe new values in it as they are added.
176
176
177
177
Example:
178
178
0 commit comments