您的位置:首页 > 移动开发 > Objective-C

Unable to create SVNRepository object

2013-10-28 15:59 579 查看
I think you are missing at least the library setup stuff:

/*

* Initializes the library to work with a repository via

* different protocols.

*/

private static void setupLibrary() {

    /*

* For using over http:// and https://[/code] 
    */

DAVRepositoryFactory.setup();

    /*

* For using over svn:// and svn+xxx://

    */

SVNRepositoryFactoryImpl.setup();


    /*

 * For using over file:///

    */

FSRepositoryFactory.setup();

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐