Skip to content

Commit

Permalink
#169: Introduced empty abstract BaseActivity as root of inheritance c…
Browse files Browse the repository at this point in the history
…hain for all activities
  • Loading branch information
k3b committed Mar 22, 2020
1 parent 3d1ddb4 commit 77bc432
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,17 @@

package de.k3b.android.widget;

import android.Manifest;

/**
* Manage permission
* * write to external-storage and
* * write to sdcard/usbstick,....
*/
public abstract class FilePermissionActivity extends PermissionBaseActivity {
private void t() {
/*
super.requestPermisson(Manifest.permission.WRITE_EXTERNAL_STORAGE,
"To %s the app needs write permission.",
(_this, result) -> onSaveChangesWithGrant(_this, result));

*/
}
}

0 comments on commit 77bc432

Please sign in to comment.