2022-06-28から1日間の記事一覧

Jetpack DataStoreを消去する

公式に良いのが見つからなかったのでメモ Preferences DataStore // 消去 context.dataStore.edit { it.clear() } // 定義 val Context.dataStore by preferencesDataStore(name = "settings") Proto DataStore // 消去 context.datastore.updateData { it.t…