Skip to content

Commit d9205d1

Browse files
authored
Merge pull request #15 from joeblau/master
Added carthage support
2 parents e73f88c + e17102b commit d9205d1

File tree

11 files changed

+849
-938
lines changed

11 files changed

+849
-938
lines changed

.DS_Store

-6 KB
Binary file not shown.

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,5 @@ fastlane/report.xml
6767
fastlane/Preview.html
6868
fastlane/screenshots
6969
fastlane/test_output
70+
71+
.DS_Store

Example/.DS_Store

-6 KB
Binary file not shown.

Example/PAPermissions/Info.plist

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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>en</string>
7+
<key>CFBundleExecutable</key>
8+
<string>$(EXECUTABLE_NAME)</string>
9+
<key>CFBundleIdentifier</key>
10+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
11+
<key>CFBundleInfoDictionaryVersion</key>
12+
<string>6.0</string>
13+
<key>CFBundleName</key>
14+
<string>$(PRODUCT_NAME)</string>
15+
<key>CFBundlePackageType</key>
16+
<string>FMWK</string>
17+
<key>CFBundleShortVersionString</key>
18+
<string>0.9.7</string>
19+
<key>CFBundleVersion</key>
20+
<string>$(CURRENT_PROJECT_VERSION)</string>
21+
<key>NSPrincipalClass</key>
22+
<string></string>
23+
</dict>
24+
</plist>
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
//
2+
// PAPermissions.h
3+
// PAPermissions
4+
//
5+
// Created by Joseph Blau on 10/2/16.
6+
// Copyright © 2016 Pasquale Ambrosini. All rights reserved.
7+
//
8+
9+
#import <UIKit/UIKit.h>
10+
11+
//! Project version number for PAPermissions.
12+
FOUNDATION_EXPORT double PAPermissionsVersionNumber;
13+
14+
//! Project version string for PAPermissions.
15+
FOUNDATION_EXPORT const unsigned char PAPermissionsVersionString[];
16+
17+
// In this header, you should import all the public headers of your framework using statements like #import <PAPermissions/PublicHeader.h>
18+
19+

0 commit comments

Comments
 (0)