Files
rr3-apk/decompiled-community/sources/androidx/core/widget/TintableImageSourceView.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- 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
2026-02-18 15:48:36 -08:00

21 lines
581 B
Java

package androidx.core.widget;
import android.content.res.ColorStateList;
import android.graphics.PorterDuff;
import androidx.annotation.Nullable;
import androidx.annotation.RestrictTo;
@RestrictTo({RestrictTo.Scope.LIBRARY_GROUP_PREFIX})
/* loaded from: classes.dex */
public interface TintableImageSourceView {
@Nullable
ColorStateList getSupportImageTintList();
@Nullable
PorterDuff.Mode getSupportImageTintMode();
void setSupportImageTintList(@Nullable ColorStateList colorStateList);
void setSupportImageTintMode(@Nullable PorterDuff.Mode mode);
}