Skip to content
This repository has been archived by the owner on Sep 6, 2019. It is now read-only.

Commit

Permalink
Fixed opening usage data from application details
Browse files Browse the repository at this point in the history
Fixes #793
  • Loading branch information
M66B committed Nov 20, 2013
1 parent 3d6f1da commit 0a5c2db
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Changelog

**Next release**

* Fixed opening usage data from application details ([issue](https://github.com/M66B/XPrivacy/issues/793))
* Move selecting accounts to allow to free version
* Move settings Android usage data / extra usage data to expert mode
* Add application name to title of application details view
Expand Down
1 change: 1 addition & 0 deletions src/biz/bokhorst/xprivacy/ActivityApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -435,6 +435,7 @@ public void onClick(DialogInterface dialog, int which) {
private void optionUsage() {
Intent intent = new Intent(this, ActivityUsage.class);
intent.putExtra(ActivityUsage.cUid, mAppInfo.getUid());
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
}

Expand Down
1 change: 1 addition & 0 deletions src/biz/bokhorst/xprivacy/ActivityMain.java
Original file line number Diff line number Diff line change
Expand Up @@ -566,6 +566,7 @@ public void onClick(DialogInterface dialog, int which) {

private void optionUsage() {
Intent intent = new Intent(this, ActivityUsage.class);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
}

Expand Down

0 comments on commit 0a5c2db

Please sign in to comment.