package q2;
import android.content.Context;
public abstract class F {
public static Context a(Context context) {
Context applicationContext = context.getApplicationContext();
return applicationContext != null ? applicationContext : context;
}
}
Download file