Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix warning "Update to recommended settings" and remove unused group "CounterTests" #7

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion Counter Tests/Counter Tests-Info.plist
Expand Up @@ -7,7 +7,7 @@
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIdentifier</key>
<string>com.mutualmobile.${PRODUCT_NAME:rfc1034identifier}</string>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
Expand Down
15 changes: 6 additions & 9 deletions Counter.xcodeproj/project.pbxproj
Expand Up @@ -125,7 +125,6 @@
isa = PBXGroup;
children = (
CFBFC3B217C6A41D00004DE1 /* Counter */,
CFBFC3D617C6A41D00004DE1 /* CounterTests */,
CF6FA884197AD41300B2B172 /* Counter Tests */,
CFBFC3AB17C6A41D00004DE1 /* Frameworks */,
CFBFC3AA17C6A41D00004DE1 /* Products */,
Expand Down Expand Up @@ -187,13 +186,6 @@
name = "Supporting Files";
sourceTree = "<group>";
};
CFBFC3D617C6A41D00004DE1 /* CounterTests */ = {
isa = PBXGroup;
children = (
);
path = CounterTests;
sourceTree = "<group>";
};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
Expand Down Expand Up @@ -241,7 +233,7 @@
isa = PBXProject;
attributes = {
CLASSPREFIX = CNT;
LastUpgradeCheck = 0460;
LastUpgradeCheck = 0730;
ORGANIZATIONNAME = "Mutual Mobile";
TargetAttributes = {
CF6FA87F197AD41300B2B172 = {
Expand Down Expand Up @@ -403,6 +395,7 @@
GCC_WARN_UNUSED_FUNCTION = YES;
INFOPLIST_FILE = "Counter Tests/Counter Tests-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 7.1;
PRODUCT_BUNDLE_IDENTIFIER = "com.mutualmobile.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME)";
TEST_HOST = "$(BUNDLE_LOADER)";
WRAPPER_EXTENSION = xctest;
Expand Down Expand Up @@ -433,6 +426,7 @@
GCC_WARN_UNUSED_FUNCTION = YES;
INFOPLIST_FILE = "Counter Tests/Counter Tests-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 7.1;
PRODUCT_BUNDLE_IDENTIFIER = "com.mutualmobile.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME)";
TEST_HOST = "$(BUNDLE_LOADER)";
WRAPPER_EXTENSION = xctest;
Expand All @@ -453,6 +447,7 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_OPTIMIZATION_LEVEL = 0;
Expand Down Expand Up @@ -501,6 +496,7 @@
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "Counter/Counter-Prefix.pch";
INFOPLIST_FILE = "Counter/Counter-Info.plist";
PRODUCT_BUNDLE_IDENTIFIER = "com.mutualmobile.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = app;
};
Expand All @@ -512,6 +508,7 @@
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "Counter/Counter-Prefix.pch";
INFOPLIST_FILE = "Counter/Counter-Info.plist";
PRODUCT_BUNDLE_IDENTIFIER = "com.mutualmobile.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = app;
};
Expand Down
2 changes: 1 addition & 1 deletion Counter/Counter-Info.plist
Expand Up @@ -9,7 +9,7 @@
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIdentifier</key>
<string>com.mutualmobile.${PRODUCT_NAME:rfc1034identifier}</string>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
Expand Down