From 188d8e4ea870d1a6c8edd5a9b323742804badeba Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Sun, 28 Aug 2016 21:03:22 +0300 Subject: project cleanup --- Juick/Supporting Files/Juick-Info.plist | 62 +++++++++++++++++++++++ Juick/Supporting Files/Juick-Prefix.pch | 25 +++++++++ Juick/Supporting Files/en.lproj/InfoPlist.strings | 2 + Juick/Supporting Files/main.m | 18 +++++++ 4 files changed, 107 insertions(+) create mode 100644 Juick/Supporting Files/Juick-Info.plist create mode 100644 Juick/Supporting Files/Juick-Prefix.pch create mode 100644 Juick/Supporting Files/en.lproj/InfoPlist.strings create mode 100644 Juick/Supporting Files/main.m (limited to 'Juick/Supporting Files') diff --git a/Juick/Supporting Files/Juick-Info.plist b/Juick/Supporting Files/Juick-Info.plist new file mode 100644 index 0000000..0df6f2a --- /dev/null +++ b/Juick/Supporting Files/Juick-Info.plist @@ -0,0 +1,62 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleDisplayName + ${PRODUCT_NAME} + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + APPL + CFBundleShortVersionString + 1.0.10 + CFBundleSignature + ???? + CFBundleVersion + 1.0.10 + LSApplicationCategoryType + public.app-category.social-networking + LSRequiresIPhoneOS + + NSHumanReadableCopyright + + UIAppFonts + + FontAwesome.ttf + + UILaunchStoryboardName + Launch Screen + UIPrerenderedIcon + + UIRequiredDeviceCapabilities + + armv7 + + UIStatusBarTintParameters + + UINavigationBar + + Style + UIBarStyleDefault + Translucent + + + + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UIViewControllerBasedStatusBarAppearance + + + diff --git a/Juick/Supporting Files/Juick-Prefix.pch b/Juick/Supporting Files/Juick-Prefix.pch new file mode 100644 index 0000000..c80380f --- /dev/null +++ b/Juick/Supporting Files/Juick-Prefix.pch @@ -0,0 +1,25 @@ +// +// Prefix header +// +// The contents of this file are implicitly included at the beginning of every source file. +// + +#import + +#ifndef __IPHONE_5_0 +#warning "This project uses features only available in iOS SDK 5.0 and later." +#endif + +#ifdef __OBJC__ + #import + #import + #import + #import + #import + #import "NSString+HTML.h" + #import "UIImage+Utils.h" + #import "NSDate+TimeAgo.h" + #import "TTTAttributedLabel.h" + #import + #import +#endif diff --git a/Juick/Supporting Files/en.lproj/InfoPlist.strings b/Juick/Supporting Files/en.lproj/InfoPlist.strings new file mode 100644 index 0000000..477b28f --- /dev/null +++ b/Juick/Supporting Files/en.lproj/InfoPlist.strings @@ -0,0 +1,2 @@ +/* Localized versions of Info.plist keys */ + diff --git a/Juick/Supporting Files/main.m b/Juick/Supporting Files/main.m new file mode 100644 index 0000000..67b222f --- /dev/null +++ b/Juick/Supporting Files/main.m @@ -0,0 +1,18 @@ +// +// main.m +// Juick +// +// Created by Vitaly Takmazov on 26.10.13. +// Copyright (c) 2013 com.juick. All rights reserved. +// + +#import + +#import "AppDelegate.h" + +int main(int argc, char * argv[]) +{ + @autoreleasepool { + return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); + } +} -- cgit v1.2.3