This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
function usage { | |
echo "Usage: $0 -c [CodeSign Directory] -p [Xcode Project File.xcodeproj]" | |
echo "If any arguments are not specified, defaults will be attempted. If defaults don't exist, script will exit." | |
echo "OPTIONS:" | |
echo " -c [CodeSign Directory]: Location of directory containing project's provisioning profiles." | |
echo " -p [Xcode Project File]: Path of Xcode project directory (the .xcodeproj, not .pbxproj)" | |
echo " -b: Use PlistBuddy command for UUID replacement instead of sed. (Better handling of a couple of edge cases, but makes diffs impossible to read.)" | |
echo " -v: Verbose logging." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
}> | |
May 9 20:42:02 pickles locationd[72] <Notice>: Gesture EnabledForTopClient: 1 (SiriCalled) | |
May 9 20:42:03 pickles SpringBoard[2731] <Warning>: HW kbd: Failed to set (null) as keyboard focus | |
May 9 20:42:03 pickles nesessionmanager[138] <Error>: Error in canUseOnAlternateNOI: Error Domain=NSPOSIXErrorDomain Code=54 "Connection reset by peer" | |
May 9 20:42:03 pickles kernel[0] <Notice>: xpcproxy[7118] Container: /private/var/mobile/Containers/Data/Application/1FC34D79-D735-4C95-B8E2-FF9BDE81274A (sandbox) | |
May 9 20:42:03 pickles locationd[72] <Notice>: Gesture EnabledForTopClient: 1 (SiriCalled) | |
May 9 20:42:03 pickles kernel[0] <Notice>: AppleFairplayTextCrypterSession::fairplayOpen() failed, error -42028 | |
May 9 20:42:03 pickles kernel[0] <Notice>: AppleFairplayTextCrypterSession::fairplayOpen() failed, error -42028 | |
May 9 20:42:03 pickles com.apple.xpc.launchd[1] (UIKitApplication:com.foursquare.robin[0xff0a][7118]) <Notice>: Service exited due to signal: Trace/BPT trap: 5 | |
May 9 20:42:03 pickles ReportC |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0xBaA860cd38f31556Cce1F543a205A44E0193306c |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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>method</key> | |
<string>app-store</string> | |
<key>teamID</key> | |
<string>XXXXXXXXXX</string> | |
<key>uploadBitcode</key> | |
<true/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Code generated by protoc-gen-go. DO NOT EDIT. | |
// source: protobuftest.proto | |
/* | |
Package protobuftest is a generated protocol buffer package. | |
It is generated from these files: | |
protobuftest.proto | |
It has these top-level messages: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
void main() => runApp(MyApp()); | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( | |
title: 'Flutter Demo', | |
theme: ThemeData( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/cupertino.dart'; | |
import 'package:flutter/material.dart'; | |
import 'package:cached_network_image/cached_network_image.dart'; | |
void main() => runApp(MyApp()); | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return CupertinoApp( |
OlderNewer