cancel
Showing results for 
Search instead for 
Did you mean: 

Alfresco Android SDK Usage

anagham
Champ in-the-making
Champ in-the-making
Hello ,
I used ALfreso android sdk and was able to retrieve details like activities,sites,my tasks,favorites,search..
Now i want to implement and get results of Shared Files, My Files and Synced Content. How can I retrieve it using android sdk.
Guide me.
2 REPLIES 2

mikeh
Star Contributor
Star Contributor
Often the easiest way to see how to do this is via the source code for the store app. In this case, please see https://github.com/Alfresco/alfresco-android-app/blob/cbea24caf0bb944a2b530f25ce6c602b90f6147e/platf... for Shared and My Files.

Synced Content is handled in the app rather than the SDK.

Thanks,
Mike

anagham
Champ in-the-making
Champ in-the-making
Thankyou Sir. Your solution was very helpful.
How can I retrieve all folders and files in repository. For now I can only retrieve Company_home as folder.
I used below code :
RepositorySession session = RepositorySession.connect(url,username, password);
if (session != null) {
                   session.getRootFolder().getName()
}