Skip to content

Commit

Permalink
Merge pull request #23 from larromba/master
Browse files Browse the repository at this point in the history
+ Carthage compatibility for Swift
  • Loading branch information
jkpang authored Dec 14, 2018
2 parents b22688e + 88eca29 commit 48012e0
Show file tree
Hide file tree
Showing 10 changed files with 734 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1010"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "2297A0E21EF4FD8A00868512"
BuildableName = "PPBadgeViewObjc.app"
BlueprintName = "PPBadgeViewObjc"
ReferencedContainer = "container:PPBadgeViewObjc.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES">
<Testables>
<TestableReference
skipped = "NO">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "2297A0FB1EF4FD8A00868512"
BuildableName = "PPBadgeViewObjcTests.xctest"
BlueprintName = "PPBadgeViewObjcTests"
ReferencedContainer = "container:PPBadgeViewObjc.xcodeproj">
</BuildableReference>
</TestableReference>
</Testables>
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "2297A0E21EF4FD8A00868512"
BuildableName = "PPBadgeViewObjc.app"
BlueprintName = "PPBadgeViewObjc"
ReferencedContainer = "container:PPBadgeViewObjc.xcodeproj">
</BuildableReference>
</MacroExpansion>
<AdditionalOptions>
</AdditionalOptions>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
debugServiceExtension = "internal"
allowLocationSimulation = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "2297A0E21EF4FD8A00868512"
BuildableName = "PPBadgeViewObjc.app"
BlueprintName = "PPBadgeViewObjc"
ReferencedContainer = "container:PPBadgeViewObjc.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
<AdditionalOptions>
</AdditionalOptions>
</LaunchAction>
<ProfileAction
buildConfiguration = "Release"
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
debugDocumentVersioning = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "2297A0E21EF4FD8A00868512"
BuildableName = "PPBadgeViewObjc.app"
BlueprintName = "PPBadgeViewObjc"
ReferencedContainer = "container:PPBadgeViewObjc.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>
22 changes: 22 additions & 0 deletions PPBadgeViewSwift/PPBadgeView/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
</dict>
</plist>
19 changes: 19 additions & 0 deletions PPBadgeViewSwift/PPBadgeView/PPBadgeView.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
//
// PPBadgeView.h
// PPBadgeView
//
// Created by Lee Arromba on 10/12/2018.
// Copyright © 2018 AndyPang. All rights reserved.
//

#import <UIKit/UIKit.h>

//! Project version number for PPBadgeView.
FOUNDATION_EXPORT double PPBadgeViewVersionNumber;

//! Project version string for PPBadgeView.
FOUNDATION_EXPORT const unsigned char PPBadgeViewVersionString[];

// In this header, you should import all the public headers of your framework using statements like #import <PPBadgeView/PublicHeader.h>


Loading

0 comments on commit 48012e0

Please sign in to comment.