com-dot-app-sancharsaathi-1-5-0.apk
Download file
package i2;
import android.content.Context;
import android.util.TypedValue;
import android.view.View;
public abstract class b {
public static TypedValue a(Context context, int i4) {
TypedValue typedValue = new TypedValue();
if (context.getTheme().resolveAttribute(i4, typedValue, true)) {
return typedValue;
}
return null;
}
public static boolean b(Context context, int i4, boolean z4) {
TypedValue a4 = a(context, i4);
return (a4 == null || a4.type != 18) ? z4 : a4.data != 0;
}
public static int c(Context context, int i4, String str) {
TypedValue a4 = a(context, i4);
if (a4 != null) {
return a4.data;
}
throw new IllegalArgumentException(String.format("%1$s requires a value for the %2$s attribute to be set in your app theme. You can either set the attribute in your theme or update your theme to inherit from Theme.MaterialComponents (or a descendant).", new Object[]{str, context.getResources().getResourceName(i4)}));
}
public static int d(View view, int i4) {
return c(view.getContext(), i4, view.getClass().getCanonicalName());
}
}
Download file