- 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
15 lines
343 B
Java
15 lines
343 B
Java
package org.apache.http.client;
|
|
|
|
import org.apache.http.auth.AuthScope;
|
|
import org.apache.http.auth.Credentials;
|
|
|
|
@Deprecated
|
|
/* loaded from: classes5.dex */
|
|
public interface CredentialsProvider {
|
|
void clear();
|
|
|
|
Credentials getCredentials(AuthScope authScope);
|
|
|
|
void setCredentials(AuthScope authScope, Credentials credentials);
|
|
}
|