- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
22 lines
373 B
Java
22 lines
373 B
Java
package org.apache.http.cookie;
|
|
|
|
import java.util.Date;
|
|
|
|
@Deprecated
|
|
/* loaded from: classes5.dex */
|
|
public interface SetCookie extends Cookie {
|
|
void setComment(String str);
|
|
|
|
void setDomain(String str);
|
|
|
|
void setExpiryDate(Date date);
|
|
|
|
void setPath(String str);
|
|
|
|
void setSecure(boolean z);
|
|
|
|
void setValue(String str);
|
|
|
|
void setVersion(int i);
|
|
}
|