@OptIn(ExperimentalWearMaterialApi::class)
fun callingSwipeDetector(…
//or the whole class
@OptIn(ExperimentalWearMaterialApi::class)
class ContainingFunctionCallingSwipeDetector…
//or on top of the file that contains the function
@file:OptIn(ExperimentalWearMaterialApi::class)
1条答案
按热度按时间uqdfh47h1#
从你的描述中听起来像是你在处理一个必须的选择加入。这意味着如果一个函数调用另一个具有所需
OptIn
注解的函数,这个函数也需要选择加入。这可以通过注解调用函数OptIn
来解决,或者将函数所在的类标记为OptIn
,或者将整个文件标记为OptIn
。