chobo2
chobo2

Reputation: 85715

How to deploy a mobile 6 application on a phone?

I have made my application and I want to check it out. I made a Cab file through the smartphone cab setup wizard.

Now I have no clue what to do.

Upvotes: 2

Views: 498

Answers (1)

atzz
atzz

Reputation: 18010

Just transfer this .cab to the phone by any means (ActiveSync, Flash card, Bluetooth....) and run it there via file manager.

As an alternative, if you're developing with MS Visual Studio, you can configure deployment options in your project (though defaults are OK in most cases) and hit Debug. MSVC will copy the app to the device and run it under debugger. Cab-file is not involved in this scenario. You need an ActiveSync connection.

All these methods (except Bluetooth, I think) can work with emulator as well as real device.

Upvotes: 2

Related Questions