diff options
author | Vitaly Takmazov | 2016-08-28 21:03:22 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2016-08-28 21:03:22 +0300 |
commit | 188d8e4ea870d1a6c8edd5a9b323742804badeba (patch) | |
tree | 071067f7189a6474d49abb952b1b04b820985b7a /Juick/Supporting Files | |
parent | a74588083c4950e9237dff7a84ccdd129b72c950 (diff) |
project cleanup
Diffstat (limited to 'Juick/Supporting Files')
-rw-r--r-- | Juick/Supporting Files/Juick-Info.plist | 62 | ||||
-rw-r--r-- | Juick/Supporting Files/Juick-Prefix.pch | 25 | ||||
-rw-r--r-- | Juick/Supporting Files/en.lproj/InfoPlist.strings | 2 | ||||
-rw-r--r-- | Juick/Supporting Files/main.m | 18 |
4 files changed, 107 insertions, 0 deletions
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 @@ +<?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>en</string> + <key>CFBundleDisplayName</key> + <string>${PRODUCT_NAME}</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>APPL</string> + <key>CFBundleShortVersionString</key> + <string>1.0.10</string> + <key>CFBundleSignature</key> + <string>????</string> + <key>CFBundleVersion</key> + <string>1.0.10</string> + <key>LSApplicationCategoryType</key> + <string>public.app-category.social-networking</string> + <key>LSRequiresIPhoneOS</key> + <true/> + <key>NSHumanReadableCopyright</key> + <string></string> + <key>UIAppFonts</key> + <array> + <string>FontAwesome.ttf</string> + </array> + <key>UILaunchStoryboardName</key> + <string>Launch Screen</string> + <key>UIPrerenderedIcon</key> + <true/> + <key>UIRequiredDeviceCapabilities</key> + <array> + <string>armv7</string> + </array> + <key>UIStatusBarTintParameters</key> + <dict> + <key>UINavigationBar</key> + <dict> + <key>Style</key> + <string>UIBarStyleDefault</string> + <key>Translucent</key> + <false/> + </dict> + </dict> + <key>UISupportedInterfaceOrientations</key> + <array> + <string>UIInterfaceOrientationPortrait</string> + <string>UIInterfaceOrientationLandscapeLeft</string> + <string>UIInterfaceOrientationLandscapeRight</string> + </array> + <key>UIViewControllerBasedStatusBarAppearance</key> + <false/> +</dict> +</plist> 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 <Availability.h> + +#ifndef __IPHONE_5_0 +#warning "This project uses features only available in iOS SDK 5.0 and later." +#endif + +#ifdef __OBJC__ + #import <UIKit/UIKit.h> + #import <Foundation/Foundation.h> + #import <SystemConfiguration/SystemConfiguration.h> + #import <MobileCoreServices/MobileCoreServices.h> + #import <YYWebImage.h> + #import "NSString+HTML.h" + #import "UIImage+Utils.h" + #import "NSDate+TimeAgo.h" + #import "TTTAttributedLabel.h" + #import <SWRevealViewController.h> + #import <AFNetworking/AFNetworking.h> +#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 <UIKit/UIKit.h> + +#import "AppDelegate.h" + +int main(int argc, char * argv[]) +{ + @autoreleasepool { + return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); + } +} |