Git submodule for zxing (iPhone version)?

I need qrcode library for iphone project. Zxing seems like an obvious choice, and I used it before. However, this will be a project that I will have to support for quite some time, and I am very deep in git.

Zxing officially provides only svn repo, while gitorious has some old zxing submodules, but those that I found are for Android, and even they no longer touch.

I looked a little, and there seems to be no git submodule for iphone. Does anyone know about the good?

+4
source share
2 answers

https://github.com/joelind/zxing-iphone - seems to be the last on github.

However, you can make the git repository yourself by simply mirroring Google svn.

+3
source

I support

https://github.com/zxing/zxing

This is a git-svn clone and automatically updates within minutes after any svn commit. This is not officially official, but I am the zxing commander.

This is not just the iphone directory. It is too difficult to maintain separately. The iphone directory requires the cpp directory (C ++), and the C ++ code is tested for java tests in the main directory. There is also a common objc directory for lower level code that works on both OS X and iOS.

+3
source

Source: https://habr.com/ru/post/1384771/


All Articles