mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 01:52:26 -06:00
11 lines
302 B
Java
11 lines
302 B
Java
package org.webrtc;
|
|
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
|
|
@Retention(RetentionPolicy.SOURCE)
|
|
/* loaded from: classes3.dex */
|
|
public @interface NetworkPreference {
|
|
public static final int NEUTRAL = 0;
|
|
public static final int NOT_PREFERRED = -1;
|
|
}
|