The problem was the local firewall …
Post not yet marked as solved
No, we are facing a similar issue. Is the sound file leading to a vibration though?
Post not yet marked as solved
I have put my current results at https://github.com/below/HelloSilicon.
It would be cool if anyone had an Idea how that would work without a C-Wrapper
Post not yet marked as solved
For starters, -static solves that. However, the executable crashes:
// Setup the parameters to print hello world
// and then call the Kernel to do it.
start: mov X0, #1 		// 1 = StdOut
ldr X1, =helloworld // string to print
mov X2, #13 		// length of the string
mov X16, #4 		// Mach write system call 4
svc 80 		// Call Mach to output the string
// Setup the parameters to exit the program
// and then call the Kernel to do it.
mov		 X0, #0			// Use 0 return code
				mov		 X8, #1			// Service command code 1 terminates this program
				svc		 80					 // Call Mach to terminate the program
.data
helloworld:			.ascii	"Hello World!\n"
Post not yet marked as solved
What I do is to create an Info.template.plist file, which is under version control.In the run script phase, I copy it, and modify the resulting Info.plist, that is not under version control.This of course remains an evil hack, and exporting variables from the run script phase would be preferable (And, if you are reading this, this approach has other problems, especially when fastlane depends on that Info.plist …)
Post not yet marked as solved
The updated script can be found here: https://gist.github.com/bazad/654959120a423b226dc564073b435453
Post not yet marked as solved
I have the same problem just trying to use the mobileconfig in the System Preferences.Do you have any update on this?
Post not yet marked as solved
FIXED: In the sample, I forgot to embed the Framework. Linking it dynamically ("Optional") solves the problem
There is also-(UIImage*)[UIImage imageNamed:inBundle:compatibleWithTraitCollection:]
Post not yet marked as solved
Thank you!If it helps anyone, I have uploaded my code here: https://github.com/below/SimpleTunnelDIsclaimer: That code is not yet tested