Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
thalia
ThaliApp
Commits
ae7af6d9
Commit
ae7af6d9
authored
May 27, 2017
by
Sébastiaan Versteeg
Browse files
Fix XCode build
parent
e43a69c9
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
ios/ThaliApp-tvOS/Info.plist
View file @
ae7af6d9
...
...
@@ -7,7 +7,7 @@
<key>
CFBundleExecutable
</key>
<string>
$(EXECUTABLE_NAME)
</string>
<key>
CFBundleIdentifier
</key>
<string>
org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier
)
</string>
<string>
$(PRODUCT_BUNDLE_IDENTIFIER
)
</string>
<key>
CFBundleInfoDictionaryVersion
</key>
<string>
6.0
</string>
<key>
CFBundleName
</key>
...
...
@@ -22,6 +22,19 @@
<string>
1
</string>
<key>
LSRequiresIPhoneOS
</key>
<true/>
<key>
NSAppTransportSecurity
</key>
<dict>
<key>
NSExceptionDomains
</key>
<dict>
<key>
localhost
</key>
<dict>
<key>
NSExceptionAllowsInsecureHTTPLoads
</key>
<true/>
</dict>
</dict>
</dict>
<key>
NSLocationWhenInUseUsageDescription
</key>
<string></string>
<key>
UILaunchStoryboardName
</key>
<string>
LaunchScreen
</string>
<key>
UIRequiredDeviceCapabilities
</key>
...
...
@@ -36,19 +49,5 @@
</array>
<key>
UIViewControllerBasedStatusBarAppearance
</key>
<false/>
<key>
NSLocationWhenInUseUsageDescription
</key>
<string></string>
<key>
NSAppTransportSecurity
</key>
<!--See http://ste.vn/2015/06/10/configuring-app-transport-security-ios-9-osx-10-11/ -->
<dict>
<key>
NSExceptionDomains
</key>
<dict>
<key>
localhost
</key>
<dict>
<key>
NSExceptionAllowsInsecureHTTPLoads
</key>
<true/>
</dict>
</dict>
</dict>
</dict>
</plist>
ios/ThaliApp.xcodeproj/project.pbxproj
View file @
ae7af6d9
This diff is collapsed.
Click to expand it.
ios/ThaliApp.xcodeproj/xcshareddata/xcschemes/ThaliApp-tvOS.xcscheme
View file @
ae7af6d9
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion =
"08
2
0"
LastUpgradeVersion =
"08
3
0"
version =
"1.3"
>
<BuildAction
parallelizeBuildables =
"NO"
...
...
ios/ThaliApp.xcodeproj/xcshareddata/xcschemes/ThaliApp.xcscheme
View file @
ae7af6d9
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion =
"0
62
0"
LastUpgradeVersion =
"0
83
0"
version =
"1.3"
>
<BuildAction
parallelizeBuildables =
"NO"
...
...
@@ -56,16 +56,6 @@
selectedLauncherIdentifier =
"Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv =
"YES"
>
<Testables>
<TestableReference
skipped =
"NO"
>
<BuildableReference
BuildableIdentifier =
"primary"
BlueprintIdentifier =
"00E356ED1AD99517003FC87E"
BuildableName =
"ThaliAppTests.xctest"
BlueprintName =
"ThaliAppTests"
ReferencedContainer =
"container:ThaliApp.xcodeproj"
>
</BuildableReference>
</TestableReference>
</Testables>
<MacroExpansion>
<BuildableReference
...
...
ios/ThaliApp/Info.plist
View file @
ae7af6d9
...
...
@@ -9,7 +9,7 @@
<key>
CFBundleExecutable
</key>
<string>
$(EXECUTABLE_NAME)
</string>
<key>
CFBundleIdentifier
</key>
<string>
org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier
)
</string>
<string>
$(PRODUCT_BUNDLE_IDENTIFIER
)
</string>
<key>
CFBundleInfoDictionaryVersion
</key>
<string>
6.0
</string>
<key>
CFBundleName
</key>
...
...
@@ -24,22 +24,6 @@
<string>
1
</string>
<key>
LSRequiresIPhoneOS
</key>
<true/>
<key>
UILaunchStoryboardName
</key>
<string>
LaunchScreen
</string>
<key>
UIRequiredDeviceCapabilities
</key>
<array>
<string>
armv7
</string>
</array>
<key>
UISupportedInterfaceOrientations
</key>
<array>
<string>
UIInterfaceOrientationPortrait
</string>
<string>
UIInterfaceOrientationLandscapeLeft
</string>
<string>
UIInterfaceOrientationLandscapeRight
</string>
</array>
<key>
UIViewControllerBasedStatusBarAppearance
</key>
<false/>
<key>
NSLocationWhenInUseUsageDescription
</key>
<string/>
<key>
NSAppTransportSecurity
</key>
<dict>
<key>
NSExceptionDomains
</key>
...
...
@@ -51,6 +35,8 @@
</dict>
</dict>
</dict>
<key>
NSLocationWhenInUseUsageDescription
</key>
<string></string>
<key>
UIAppFonts
</key>
<array>
<string>
Entypo.ttf
</string>
...
...
@@ -64,5 +50,19 @@
<string>
SimpleLineIcons.ttf
</string>
<string>
Zocial.ttf
</string>
</array>
<key>
UILaunchStoryboardName
</key>
<string>
LaunchScreen
</string>
<key>
UIRequiredDeviceCapabilities
</key>
<array>
<string>
armv7
</string>
</array>
<key>
UISupportedInterfaceOrientations
</key>
<array>
<string>
UIInterfaceOrientationPortrait
</string>
<string>
UIInterfaceOrientationLandscapeLeft
</string>
<string>
UIInterfaceOrientationLandscapeRight
</string>
</array>
<key>
UIViewControllerBasedStatusBarAppearance
</key>
<false/>
</dict>
</plist>
ios/ThaliAppTests/Info.plist
View file @
ae7af6d9
...
...
@@ -7,7 +7,7 @@
<key>
CFBundleExecutable
</key>
<string>
$(EXECUTABLE_NAME)
</string>
<key>
CFBundleIdentifier
</key>
<string>
org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier
)
</string>
<string>
$(PRODUCT_BUNDLE_IDENTIFIER
)
</string>
<key>
CFBundleInfoDictionaryVersion
</key>
<string>
6.0
</string>
<key>
CFBundleName
</key>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment