CalDAVSyncAdapter: Difference between revisions

From WickyWiki
Created page with "Category:Android project Category:201207 F-Droid builds: * https://f-droid.org/repository/browse/?fdid=org.gege.caldavsyncadapter Website: * https://github.com/gggar..."
 
mNo edit summary
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
[[Category:Android project]]
[[Category:Android]]
[[Category:201207]]
[[Category:201207]]


F-Droid builds:
Features:
* [[CalDAV]] synchronization for Android
* integrates into Android Accounts and Sync
* very simple (and limited) settings: username, password and URL
 
F-Droid page:
* https://f-droid.org/repository/browse/?fdid=org.gege.caldavsyncadapter
* https://f-droid.org/repository/browse/?fdid=org.gege.caldavsyncadapter


Line 8: Line 13:
* https://github.com/gggard/AndroidCaldavSyncAdapater
* https://github.com/gggard/AndroidCaldavSyncAdapater


Main developer 'gggard', source checkout:
Main developer 'gggard', source checkout with GIT:


<syntaxhighlight lang=bash>
<syntaxhighlight lang=bash>
git clone https://github.com/gggard/AndroidCaldavSyncAdapater.git
git clone https://github.com/gggard/AndroidCaldavSyncAdapater
</syntaxhighlight>
</syntaxhighlight>


Source checkout the fork of timoberger, this fork has two-way sync and is working for SOGo now:
Source checkout with GIT the fork of 'timoberger', this fork has two-way sync and is working for SOGo now (20130903):


<syntaxhighlight lang=bash>
<syntaxhighlight lang=bash>
git clone https://github.com/timoberger/AndroidCaldavSyncAdapater
git clone https://github.com/timoberger/AndroidCaldavSyncAdapater
</syntaxhighlight>
</syntaxhighlight>
Update the GIT 'clone' to latest commit:
<syntaxhighlight lang=bash>
git pull
</syntaxhighlight>
SOGo test account:
* testuser
* test
* https://wilbertvolkers.dyndns.org/SOGo/dav/testuser/Calendar/personal
<syntaxhighlight lang=sql>
INSERT INTO sogo_users VALUES ('testuser', 'testuser', MD5('test'), 'Test User', 'testuser@yahoo.com');
</syntaxhighlight>
See also:
* https://f-droid.org/repository/browse/?fdfilter=davdroid&fdid=at.bitfire.davdroid

Latest revision as of 21:44, 16 January 2015


Features:

  • CalDAV synchronization for Android
  • integrates into Android Accounts and Sync
  • very simple (and limited) settings: username, password and URL

F-Droid page:

Website:

Main developer 'gggard', source checkout with GIT:

git clone https://github.com/gggard/AndroidCaldavSyncAdapater

Source checkout with GIT the fork of 'timoberger', this fork has two-way sync and is working for SOGo now (20130903):

git clone https://github.com/timoberger/AndroidCaldavSyncAdapater

Update the GIT 'clone' to latest commit:

git pull

SOGo test account:

INSERT INTO sogo_users VALUES ('testuser', 'testuser', MD5('test'), 'Test User', 'testuser@yahoo.com');

See also: