This is an Android app that extends the built in File Manager to support connecting to SMB file shares.
This app is built on top of Samba 4.5.1.
Android SDK and NDK r15b or above are required to build this app. Android Studio is highly recommended.
This build guide is only tested on Ubuntu. Changes to make it build on other platforms are welcome.
- Download and unarchive Samba 4.5.1 source code.
- Change directory to the root of Samba source code.
- Create a git repository.
- Run
git apply <path_to_samba_documents_provider_source>/sambapatch.diff
. - Modify configure.sh to change $NDK to point to your NDK folder.
- Uncomment corresponding flags in configure.sh to compile for different architecture. Uncomment flags for ARMv7 in addition to 32-bit ARM to compile it for ARMv7.
- Run
configure.sh
to configure Samba project. - Run
compile.sh
to compile libsmbclient.so. - Run
install.sh <path_to_samba_documents_provider_source>/app/src/main/jniLibs/<ABI>
. - Change directory to SambaDocumentsProvider source code.
- Run
mv app/src/main/jniLibs/<ABI>/includes app/src/main/cpp/samba_includes
. - Change directory to the root of Samba source code and run
make distclean
. - Repeat step 6-12 for all desired ABI's.
- Make sure to change app's
build.gradle
to include only ABI's that Samba was built for in previous steps. - Compile SambaDocumentsProvider.
Please go to our Google group to discuss any issues.
Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
dependencies {
compile 'com.github.shadabk92:samba-documents-provider:v1.0'
}