Проблема
Код: Выделить всё
// This returns NULL
Context testContext = InstrumentationRegistry.getInstrumentation().getContext();
File dir = testContext.getExternalFilesDir("test-results"); // Returns null
// This works fine
Context targetContext = InstrumentationRegistry.getInstrumentation().getTargetContext();
File dir2 = targetContext.getExternalFilesDir("test-results"); // Works
- Добавлены разрешения READ_EXTERNAL_STORAGE и WRITE_EXTERNAL_STORAGE.
- Добавлен android:requestLegacyExternalStorage="true"
- Разрешения предоставлены вручную через adb Shell PM Grant
Подробнее здесь: https://stackoverflow.com/questions/798 ... test-conte