use of android.support.provider.DocumentArchiveHelper in project platform_frameworks_base by android.
the class ExternalStorageProvider method onCreate.
@Override
public boolean onCreate() {
mStorageManager = (StorageManager) getContext().getSystemService(Context.STORAGE_SERVICE);
mHandler = new Handler();
mArchiveHelper = new DocumentArchiveHelper(this, (char) 0);
updateVolumes();
return true;
}
use of android.support.provider.DocumentArchiveHelper in project android_frameworks_base by DirtyUnicorns.
the class ExternalStorageProvider method onCreate.
@Override
public boolean onCreate() {
mStorageManager = (StorageManager) getContext().getSystemService(Context.STORAGE_SERVICE);
mHandler = new Handler();
mArchiveHelper = new DocumentArchiveHelper(this, (char) 0);
updateVolumes();
return true;
}
use of android.support.provider.DocumentArchiveHelper in project android_frameworks_base by AOSPA.
the class ExternalStorageProvider method onCreate.
@Override
public boolean onCreate() {
mStorageManager = (StorageManager) getContext().getSystemService(Context.STORAGE_SERVICE);
mHandler = new Handler();
mArchiveHelper = new DocumentArchiveHelper(this, (char) 0);
updateVolumes();
return true;
}
use of android.support.provider.DocumentArchiveHelper in project android_frameworks_base by crdroidandroid.
the class BugreportStorageProvider method onCreate.
@Override
public boolean onCreate() {
mRoot = new File(getContext().getFilesDir(), "bugreports");
mArchiveHelper = new DocumentArchiveHelper(this, (char) 0);
return true;
}
use of android.support.provider.DocumentArchiveHelper in project android_frameworks_base by DirtyUnicorns.
the class BugreportStorageProvider method onCreate.
@Override
public boolean onCreate() {
mRoot = new File(getContext().getFilesDir(), "bugreports");
mArchiveHelper = new DocumentArchiveHelper(this, (char) 0);
return true;
}
Aggregations