Skip to content

Commit 5d5d066

Browse files
authored
Fix #6011: Enable flashbacks by default & bump version codes for 0.17 release (#6014)
## Explanation Fixes #6011 This updates the following features: - Enables flashbacks by default (since they've been verified as working with production assets). - Enables onboarding v2 for alpha so that non-Android devs can continue testing the feature informally (even though it's not yet complete). It also bumps the minor version and version codes to prepare for the 0.17 release of the app. ## Essential Checklist - [x] The PR title and explanation each start with "Fix #bugnum: " (If this PR fixes part of an issue, prefix the title with "Fix part of #bugnum: ...".) - [x] Any changes to [scripts/assets](https://github.com/oppia/oppia-android/tree/develop/scripts/assets) files have their rationale included in the PR explanation. - [x] The PR follows the [style guide](https://github.com/oppia/oppia-android/wiki/Coding-style-guide). - [x] The PR does not contain any unnecessary code changes from Android Studio ([reference](https://github.com/oppia/oppia-android/wiki/Guidance-on-submitting-a-PR#undo-unnecessary-changes)). - [x] The PR is made from a branch that's **not** called "develop" and is up-to-date with "develop". - [x] The PR is **assigned** to the appropriate reviewers ([reference](https://github.com/oppia/oppia-android/wiki/Guidance-on-submitting-a-PR#clarification-regarding-assignees-and-reviewers-section)). ## For UI-specific PRs only No UI changes.
1 parent 34293b4 commit 5d5d066

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

config/src/java/org/oppia/android/config/platform/feature_flags.textproto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,5 +66,5 @@ feature_flag_definition {
6666
feature_flag_definition {
6767
id: FLASHBACK_SUPPORT
6868
remote_server_name: "android_enable_flashback_support"
69-
default_is_enabled: false
69+
default_is_enabled: true
7070
}

config/src/java/org/oppia/android/config/platform/featureoverrides/alpha/feature_flags_overrides.textproto

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,7 @@ feature_flag_definition {
1010
id: MULTIPLE_CLASSROOMS
1111
default_is_enabled: true
1212
}
13+
feature_flag_definition {
14+
id: ONBOARDING_FLOW_V2
15+
default_is_enabled: true
16+
}

version.bzl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ the app (that potentially contain changes or features that are not yet ready for
1010
"""
1111

1212
MAJOR_VERSION = 0
13-
MINOR_VERSION = 16
13+
MINOR_VERSION = 17
1414

15-
OPPIA_DEV_VERSION_CODE = 190
16-
OPPIA_ALPHA_VERSION_CODE = 189
17-
OPPIA_BETA_VERSION_CODE = 188
18-
OPPIA_GA_VERSION_CODE = 187
15+
OPPIA_DEV_VERSION_CODE = 194
16+
OPPIA_ALPHA_VERSION_CODE = 193
17+
OPPIA_BETA_VERSION_CODE = 192
18+
OPPIA_GA_VERSION_CODE = 191

0 commit comments

Comments
 (0)