On page 7, the codelab instructs to create a DataStore by using the by dataStore delegate:
private val Context.userPreferencesStore: DataStore<UserPreferences> by dataStore(
...
by dataStore is part of a different library. androidx.datastore:datastore:1.0.0. The instructions on page 5 need to be updated to import datastore instead of datastore-core.
On page 5, the codelab instructs you to add the following dependencies:
On page 7, the codelab instructs to create a
DataStore
by using theby dataStore
delegate:by dataStore
is part of a different library.androidx.datastore:datastore:1.0.0
. The instructions on page 5 need to be updated to importdatastore
instead ofdatastore-core
.The
proto_datastore
branch already includes the correct dependency.