-
Notifications
You must be signed in to change notification settings - Fork 535
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
FIX #2823: Profile list activity label #3225
Conversation
PTAL @Victor-Titan @rt4914 |
@rt4914 can you please help me with how to remove these unit test failures? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@pravesh00 Suggestion changes.
Also if you check sample PR number mentioned in the issue that PR contains a test too. You have to create a similar test file and add test. You can create a new test file ProfileListActivityTest
<output url="file://$PROJECT_DIR$/build/classes" /> | ||
</component> | ||
<component name="ProjectType"> | ||
<option name="id" value="Android" /> | ||
</component> | ||
</project> | ||
</project> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This changes from this entire file. It should not be visible under Files changed
section on github.
app/src/main/res/values/strings.xml
Outdated
@@ -435,4 +435,5 @@ | |||
<string name="audio_player_on">Audio, ON</string> | |||
<string name="audio_player_off">Audio, OFF</string> | |||
<string name="hints_android_solution_correct_answer">%s/%s</string> | |||
<string name="profile_list_activity_label">Profile List</string> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rename to profile_list_activity_title
app/src/main/AndroidManifest.xml
Outdated
@@ -121,7 +121,8 @@ | |||
<activity android:name=".app.settings.profile.ProfileEditActivity" /> | |||
<activity | |||
android:name=".app.settings.profile.ProfileListActivity" | |||
android:theme="@style/OppiaThemeWithoutActionBar" /> | |||
android:theme="@style/OppiaThemeWithoutActionBar" | |||
android:label="@string/profile_list_activity_label"/> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add
(space) before />
I was facing some gradle change issues so I have closed this PR and created a new one #3244 |
Explanation
Fixes #2823: Profile list activity label added
Checklist