in core-android/src/main/java/com/uber/sdk/android/core/UberButton.java [126:137]
protected Activity getActivity() {
Context context = getContext();
while (!(context instanceof Activity) && context instanceof ContextWrapper) {
context = ((ContextWrapper) context).getBaseContext();
}
if (context instanceof Activity) {
return (Activity) context;
}
throw new IllegalStateException("Button is not attached to an activity.");
}