Initial import of ADIF API reverse-engineering toolkit
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
package com.google.firebase.dynamiclinks;
|
||||
|
||||
import android.net.Uri;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.util.List;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface ShortDynamicLink {
|
||||
|
||||
@Retention(RetentionPolicy.SOURCE)
|
||||
/* loaded from: classes3.dex */
|
||||
public @interface Suffix {
|
||||
public static final int SHORT = 2;
|
||||
public static final int UNGUESSABLE = 1;
|
||||
}
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface Warning {
|
||||
@Deprecated
|
||||
String getCode();
|
||||
|
||||
String getMessage();
|
||||
}
|
||||
|
||||
Uri getPreviewLink();
|
||||
|
||||
Uri getShortLink();
|
||||
|
||||
List<? extends Warning> getWarnings();
|
||||
}
|
||||
Reference in New Issue
Block a user