1 package com.android.healthconnect.controller.tests.utils
2 
3 import android.content.Context
4 import com.android.healthconnect.controller.shared.Constants.ONBOARDING_SHOWN_PREF_KEY
5 import com.android.healthconnect.controller.shared.Constants.USER_ACTIVITY_TRACKER
6 
showOnboardingnull7 fun showOnboarding(context: Context, show: Boolean) {
8     val sharedPreference = context.getSharedPreferences(USER_ACTIVITY_TRACKER, Context.MODE_PRIVATE)
9     val editor = sharedPreference.edit()
10     editor.putBoolean(ONBOARDING_SHOWN_PREF_KEY, !show)
11     editor.apply()
12 }
13