Skip to content

Commit 7e0ea3e

Browse files
author
Łukasz Szarkowicz
committed
first implementation of quickscanner
1 parent 3d75b47 commit 7e0ea3e

15 files changed

+993
-0
lines changed

.gitignore

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# the build
2+
Build
3+
build
4+
DerivedData
5+
Docs/API
6+
7+
# temp nibs and swap files
8+
*~.nib
9+
*.swp
10+
*.orig
11+
12+
# OS X folder attributes
13+
.DS_Store
14+
15+
# user-specific XCode stuff
16+
*.mode1v3
17+
*.mode2v3
18+
*.pbxuser
19+
*.perspectivev3
20+
*.xcuserdatad
21+
22+
!default.pbxuser
23+
!default.mode1v3
24+
!default.mode2v3
25+
!default.perspectivev3
26+
27+
## Obj-C/Swift specific
28+
*.hmap
29+
*.ipa
30+
*.dSYM.zip
31+
*.dSYM
32+
33+
## Playgrounds
34+
timeline.xctimeline
35+
playground.xcworkspace
36+
37+
38+
.build/
39+
40+
Carthage/Build
41+
42+
Pods/*
43+
Podfile.lock
44+
*.xccheckout
45+
*.moved-aside
46+
*.xcuserstate
47+
*.xcscmblueprint

QuickScanner/Assets/iOS/Info.plist

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>CFBundleDevelopmentRegion</key>
6+
<string>$(DEVELOPMENT_LANGUAGE)</string>
7+
<key>CFBundleDisplayName</key>
8+
<string>QuickScanner</string>
9+
<key>CFBundleExecutable</key>
10+
<string>$(EXECUTABLE_NAME)</string>
11+
<key>CFBundleIdentifier</key>
12+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
13+
<key>CFBundleInfoDictionaryVersion</key>
14+
<string>6.0</string>
15+
<key>CFBundleName</key>
16+
<string>$(PRODUCT_NAME)</string>
17+
<key>CFBundlePackageType</key>
18+
<string>FMWK</string>
19+
<key>CFBundleShortVersionString</key>
20+
<string>1.0</string>
21+
<key>CFBundleVersion</key>
22+
<string>$(CURRENT_PROJECT_VERSION)</string>
23+
<key>NSPrincipalClass</key>
24+
<string></string>
25+
</dict>
26+
</plist>

0 commit comments

Comments
 (0)