private static int getSupportedAppVersion()

in core-android/src/main/java/com/uber/sdk/android/core/auth/SsoDeeplink.java [209:218]


    private static int getSupportedAppVersion(SupportedAppType supportedAppType, FlowVersion flowVersion) {
        if (UBER == supportedAppType) {
            return flowVersion == FlowVersion.REDIRECT_TO_SDK
                    ? MIN_UBER_RIDES_VERSION_REDIRECT_FLOW_SUPPORTED
                    : MIN_UBER_RIDES_VERSION_SUPPORTED;
        } else if (UBER_EATS == supportedAppType) {
            return MIN_UBER_EATS_VERSION_SUPPORTED;
        }
        return Integer.MAX_VALUE;
    }