AttachmentProviderTests

This commit is contained in:
str4d
2014-12-31 02:11:36 +00:00
parent f561046ea5
commit f3832a1d79
2 changed files with 189 additions and 4 deletions

View File

@@ -3,13 +3,14 @@ package i2p.bote.android;
import android.content.Context;
public class InitActivities {
private final Context ctx;
private final String myDir;
public InitActivities(Context c) {
ctx = c;
// This needs to be changed so that we can have an alternative place
myDir = c.getFilesDir().getAbsolutePath();
this(c.getFilesDir().getAbsolutePath());
}
public InitActivities(String i2pBaseDir) {
myDir = i2pBaseDir;
}
public void initialize() {