• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.android.onboarding.contracts.annotations
2 
3 import androidx.annotation.Keep
4 
5 @RequiresOptIn(
6   message = "Marked entity is meant for internal use by the onboarding framework",
7   level = RequiresOptIn.Level.ERROR,
8 )
9 @Keep
10 annotation class InternalOnboardingApi
11