Disable LoginFlowV2 to merge it on develop

This commit is contained in:
Benoit Marty 2021-05-20 13:56:41 +02:00
parent b11e6a2b26
commit 4ba40b1d34
2 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,6 @@ Features ✨:
Improvements 🙌:
- Add ability to install APK from directly from Element (#2381)
- Improve login/register flow (#1410, #2585, #3172)
Bugfix 🐛:
- Message states cosmetic changes (#3007)

View File

@ -138,8 +138,9 @@ android {
resValue "string", "build_number", "\"${buildNumber}\""
// The two booleans must not have the same value. We need two values for the manifest
resValue "bool", "useLoginV1", "false"
resValue "bool", "useLoginV2", "true"
// LoginFlowV2 is disabled to be merged on develop (changelog: Improve login/register flow (#1410, #2585, #3172))
resValue "bool", "useLoginV1", "true"
resValue "bool", "useLoginV2", "false"
buildConfigField "im.vector.app.features.crypto.keysrequest.OutboundSessionKeySharingStrategy", "outboundSessionKeySharingStrategy", "im.vector.app.features.crypto.keysrequest.OutboundSessionKeySharingStrategy.WhenTyping"