While adding:
<activity android:name="net.rdrei.android.dirchooser.DirectoryChooserActivity" /> in the AndroidManifest.xml I'm getting:
Unresolved class 'DirectoryChooserActivity'
I've added this in my Gradle script:
maven { url 'https://guardian.github.io/maven/repo-releases/' } under repositories;
implementation 'net.rdrei.android.dirchooser:library:3.2' implementation 'com.gu:option:1.3' under dependencies.
Is that a bug or am I missing something? I'm refactoring an old project of mine, so I'm updating all the libraries.
While adding:
<activity android:name="net.rdrei.android.dirchooser.DirectoryChooserActivity" />in theAndroidManifest.xmlI'm getting:I've added this in my Gradle script:
maven { url 'https://guardian.github.io/maven/repo-releases/' }under repositories;implementation 'net.rdrei.android.dirchooser:library:3.2' implementation 'com.gu:option:1.3'under dependencies.Is that a bug or am I missing something? I'm refactoring an old project of mine, so I'm updating all the libraries.