Skip to content

Commit 834cab8

Browse files
authored
Merge pull request #4744 from owncloud/technical/increase_rating_dialog_delay
[TECHNICAL] Increase rating dialog delay
2 parents 365d7a0 + 0540dbe commit 834cab8

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ ownCloud admins and users.
4141
## Summary
4242

4343
* Change - Migrate tests to the new kotlinx-coroutines-test API: [#4710](https://github.com/owncloud/android/issues/4710)
44+
* Change - Increase rating dialog delay: [#4744](https://github.com/owncloud/android/pull/4744)
4445
* Enhancement - Show members of a space: [#4612](https://github.com/owncloud/android/issues/4612)
4546
* Enhancement - Set emoji as space image: [#4707](https://github.com/owncloud/android/issues/4707)
4647

@@ -54,6 +55,13 @@ ownCloud admins and users.
5455
https://github.com/owncloud/android/issues/4710
5556
https://github.com/owncloud/android/pull/4722
5657

58+
* Change - Increase rating dialog delay: [#4744](https://github.com/owncloud/android/pull/4744)
59+
60+
The time before the rating dialog appears has been increased to 7 days, in order
61+
to make it less intrusive for the user.
62+
63+
https://github.com/owncloud/android/pull/4744
64+
5765
* Enhancement - Show members of a space: [#4612](https://github.com/owncloud/android/issues/4612)
5866

5967
A new option to view all members of a space has been added to the bottom sheet,

changelog/unreleased/4744

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Change: Increase rating dialog delay
2+
3+
The time before the rating dialog appears has been increased to 7 days, in order to make it less intrusive for the user.
4+
5+
https://github.com/owncloud/android/pull/4744

owncloudApp/src/main/java/com/owncloud/android/AppRater.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@
2929
public class AppRater {
3030
private static final String DIALOG_RATE_ME_TAG = "DIALOG_RATE_ME";
3131

32-
private final static int DAYS_UNTIL_PROMPT = 2;
32+
private final static int DAYS_UNTIL_PROMPT = 7;
3333
private final static int LAUNCHES_UNTIL_PROMPT = 2;
34-
private final static int DAYS_UNTIL_NEUTRAL_CLICK = 1;
34+
private final static int DAYS_UNTIL_NEUTRAL_CLICK = 7;
3535

3636
public static final String APP_RATER_PREF_TITLE = "app_rater";
3737
public static final String APP_RATER_PREF_DONT_SHOW = "don't_show_again";

0 commit comments

Comments
 (0)