-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
all differences between enterprise and consumer build #2123
Comments
Edit_1. Updated |
@tomholub @martgil @sosnovsky I hope it's a full list :) I have not found more differences. |
This should be supported on both. Whenever EKM is present |
This should be enabled on both going forward, as discussed (just mentioning for clarity) |
This should apply to more than just SSL error.
Broadly speaking, On |
I think there should probably be no difference between consumer and enterprise here. If We can file a separate issue for this to discuss the behavior in more detail. |
I was wrong, it works for both. I've checked. If |
Yup. Because #2122 is not completed yet I've added this info to the table. |
@tomholub I've rechecked (code and ref #1202 (comment)). We have the following situation for Android now.
Line 598 in cfa872b
private fun continueBasedOnFlavorSettings() {
if (BuildConfig.FLAVOR == Constants.FLAVOR_NAME_ENTERPRISE) {
/*
here we actually need to decide if we should show error or proceed with
regular setup flow based on exact customers that will skip to regular setup flow,
and the rest will be shown error.
*/
continueWithRegularFlow()
} else {
continueWithRegularFlow()
}
} |
Ok, I remember this situation. Let's standardize it, as follows. private fun continueBasedOnFlavorSettings() {
if (BuildConfig.FLAVOR == Constants.FLAVOR_NAME_ENTERPRISE) {
// error + retry
} else {
continueWithRegularFlow()
}
} I believe this will make it the same as my table above. If if doesn't, let me know. |
Yes. It should work the same. |
I'm closing it for now. We've opened separate issues for some of the questions. |
please make a list of all behavior differences currently between enterprise and consumer app
The text was updated successfully, but these errors were encountered: