16 lines
		
	
	
		
			405 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			405 B
		
	
	
	
		
			Java
		
	
	
	
	
	
| package androidx.lifecycle;
 | |
| 
 | |
| import androidx.lifecycle.Lifecycle;
 | |
| import java.lang.annotation.ElementType;
 | |
| import java.lang.annotation.Retention;
 | |
| import java.lang.annotation.RetentionPolicy;
 | |
| import java.lang.annotation.Target;
 | |
| 
 | |
| @Target({ElementType.METHOD})
 | |
| @Retention(RetentionPolicy.RUNTIME)
 | |
| @Deprecated
 | |
| /* loaded from: classes.dex */
 | |
| public @interface OnLifecycleEvent {
 | |
|     Lifecycle.Event value();
 | |
| }
 |