Skip to content

Commit

Permalink
Added debug icon, display name, and bundle ID
Browse files Browse the repository at this point in the history
I often find this helpful to allow me to keep separate production and
development builds on the same device while preserving my sanity!
  • Loading branch information
Bryan Clark committed Jun 28, 2015
1 parent ffceb81 commit da8dece
Show file tree
Hide file tree
Showing 9 changed files with 81 additions and 3 deletions.
6 changes: 5 additions & 1 deletion Cortado.xcodeproj/project.pbxproj
Expand Up @@ -1238,6 +1238,8 @@
baseConfigurationReference = 46FF4552A358097D7F8675E4 /* Pods.release.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
BUNDLE_DISPLAY_NAME_SUFFIX = "";
BUNDLE_ID_SUFFIX = "";
CODE_SIGN_ENTITLEMENTS = Cortado/Cortado.entitlements;
CODE_SIGN_IDENTITY = "iPhone Distribution: Michael Walker (48WB56AE4K)";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
Expand Down Expand Up @@ -1300,7 +1302,9 @@
isa = XCBuildConfiguration;
baseConfigurationReference = 0337664A1406DC2AD11AF5A2 /* Pods.debug.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon.dev;
BUNDLE_DISPLAY_NAME_SUFFIX = " β";
BUNDLE_ID_SUFFIX = .dev;
CODE_SIGN_ENTITLEMENTS = Cortado/Cortado.entitlements;
CODE_SIGN_IDENTITY = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
Expand Down
74 changes: 74 additions & 0 deletions Cortado/Images.xcassets/AppIcon.dev.appiconset/Contents.json
@@ -0,0 +1,74 @@
{
"images" : [
{
"size" : "29x29",
"idiom" : "iphone",
"filename" : "icon-58.png",
"scale" : "2x"
},
{
"size" : "29x29",
"idiom" : "iphone",
"filename" : "cortado@87.png",
"scale" : "3x"
},
{
"size" : "40x40",
"idiom" : "iphone",
"filename" : "icon-80.png",
"scale" : "2x"
},
{
"size" : "40x40",
"idiom" : "iphone",
"filename" : "cortado@120-1.png",
"scale" : "3x"
},
{
"size" : "60x60",
"idiom" : "iphone",
"filename" : "cortado@120.png",
"scale" : "2x"
},
{
"size" : "60x60",
"idiom" : "iphone",
"filename" : "cortado@3x.png",
"scale" : "3x"
},
{
"idiom" : "ipad",
"size" : "29x29",
"scale" : "1x"
},
{
"idiom" : "ipad",
"size" : "29x29",
"scale" : "2x"
},
{
"idiom" : "ipad",
"size" : "40x40",
"scale" : "1x"
},
{
"idiom" : "ipad",
"size" : "40x40",
"scale" : "2x"
},
{
"idiom" : "ipad",
"size" : "76x76",
"scale" : "1x"
},
{
"idiom" : "ipad",
"size" : "76x76",
"scale" : "2x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions Cortado/Supporting Files/Info.plist
Expand Up @@ -7,11 +7,11 @@
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>com.lazerwalker.$(PRODUCT_NAME:rfc1034identifier)</string>
<string>com.lazerwalker.$(PRODUCT_NAME:rfc1034identifier)$(BUNDLE_ID_SUFFIX)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<string>$(PRODUCT_NAME)$(BUNDLE_DISPLAY_NAME_SUFFIX)</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
Expand Down

0 comments on commit da8dece

Please sign in to comment.