manifest
Working with Visual Studios C++ manifest files
All components in your application must share the same runtime. When this is not the case, you run into strange problems like asserting on delete statements. This is the same on all platforms. It is not something Microsoft invented. You may get around this ‘only one runtime’ problem by being aware where the runtimes may … Read more
How to add an assembly manifest to a .NET executable?
If you want to add custom information to your application’s manifest, you can follow these steps: Right-click on the project in the Solution Explorer. Click “Add New Item”. Select “Application Manifest File”. This adds a file named app.manifest to your project, which you can open and modify as desired. Similar steps, with screenshots, lifted from … Read more
Android BroadcastReceiver, auto run service after reboot of device
You forgot about the permissions <uses-permission android:name=”android.permission.RECEIVE_BOOT_COMPLETED” />