Monday, November 11, 2013

Xcode/Objective-C: ERROR - 'Missing routing app coverage file'

Hey!

It's been a long time since I last posted.
So today will see a tricky upload problem that makes no sense at first.

'Missing routing app coverage file: You must upload a routing app coverage file in iTunes Connect if you register as a routing app'


This error didn't take that much to be adjusted but has a shitty log message.

So you do this:

IF YOU DON'T EVEN KNOW WHAT'S THAT:

1) goto the left navigation bar and click on the "file" icon
2) click on the "project" icon (where you see your project's name)
3) select the "Capabilities" tab and unckeck any "Routing" options you have marked.

IF YOU KNOW WHATS THAT:

Probably while you were importing assets from your server/git you just lost file so double check and if need re-reference it.

WHAT'S THIS ABOUT?
(It's some type of rare elvish magic) In case you want to make routes using Apple's Mapkit you have to have the "coverage file".

Cheers.

Friday, March 22, 2013

Install .apk via Terminal

Hi!

Quick tip to install apps via Terminal on your Mac.

1) download the adb tools;
2) got to the platform-tools or tools (can vary) were you adb were installed;
3) perform:  ./adb devices
        if you don't get this message: 
                "List of devices attached 
                'bund of numbers' device"
       try restarting you device
4) perform: ./adb install PATH/TO/YOUR/file.apk
5) Mazel tov! Your on dude.

Cheers.

Monday, February 25, 2013

Obj-c/UIDeviceOrientation: How to force the Device Orientation

Hi,

How's it going?
Today I got a fast tip in how to force your device orientation. Fast, quick and beautiful.

1) You have to put this piece of code somewhere in the class that you're using or in the AppDelegate. It's gonna depend on what you prefer, in my case I putted it in a specific class.


[[UIDevice currentDevice]beginGeneratingDeviceOrientationNotifications];


2) Add this to your .h or to the top of your .m . Do not forget to put something in the parenthesis different than 'Private', think something that Apple wouldn't use and put it their.


@interface UIDevice(MyDeviceInterface)
- (void) setOrientation:(UIInterfaceOrientation)orientation;
@end


3) Now be free to you this gorgeous method whenever you want in that specific class.


[[UIDevice currentDevice] setOrientation:UIInterfaceOrientationPortrait];


Enjoy!
Happy Coding.
Tweet