Manually creating windows phone wallet mswallet package - windows-phone-8.1

Anyone successfully create an .mswallet package for Windows Phone? I have followed these steps:
Downloaded one of the samples
Modified the mail file WalletItem.xml
Zipped it using 7-zip.
Renamed the extension to .mswallet
Emailed file to myself and
Attempted to import it to my Windows 8.1 phone and received error 82AD0005.
Anyone created such a package?

I had the same problem and same error-numer. Appeared that I've changed the name of the XML file. It must be named: WalletItem.xml and then everything went fine.

Related

Windbg symbols for Windows XP

So I have a problem getting symbols (such as ntdll.pdb) for Windows XP x86.
I know that in the past you could download these symbols, but today you can only do this from the microsoft servers like mantioned here
The problem is that my XP machine can't access the Internet. Is there any way to get the symbols offline? Maybe someone here has symbols in "c:\symbols" and can upload them?
Thank you very much
You can use SymChk from a WinDbg package compatible with Windows XP to generate a manifest file on the offline machine, then use that manifest file on another machine with Internet access to download the symbols. Quoting from the Using a Manifest File with SymChk page:
In some cases, you might need to retrieve symbols for files that are on an isolated computer; that is, a computer that is either not on any network or is on a network that has no symbol store. In that situation, you can use the following procedure to retrieve symbols.
Run SymChk with the /om parameter to create a manifest file that describes the files for which you want to retrieve symbols.
Move the manifest file to a network that has a symbol store.
Run SymChk with the /im parameter to retrieve symbols for the files described in the manifest file.
Move the symbol files back to the isolated computer.

Ionic google services not found

I have created an ionic 4 project that makes use of the google maps APIand their development tools. I would like to build the peoject now for android release i ran the command
ionic cordova build --release android
But then i get the following error message
* What went wrong:
Execution failed for task ':app:processReleaseGoogleServices'.
> File google-services.json is missing. The Google Services Plugin cannot function without it.
Searched Location:
I have downloaded the google-services.Json from firebase but I am unsure where i should place it and what files i need to edit. If you want the ciontents of a certain file let me know and ill put it here. Thank you for any help
Try copying this file into: \platforms\android
There is a known issue when this file on certain versions of Android Studio gets corrupted etc. So just double check that the file is always there if you see this again.
If you are on never version of Android studio:
google-services.json needs to be in app/google-services.json. Then your config.xml needs to have:
<resource-file src="google-services.json" target="app/google-services.json" />

SSIS file path changing to C:\windows\system32 depending on how I open the project file

I've been working with SSIS reading different files - from CSVs to XLSXs - with no problems. My paths are relative, so SSIS searches for the files from the project's folder.
Well, today my colleague tried to run a package and he got a curious error message saying that the file could not be found under the "C:\windows\system32" folder. There's no configuration that would point SSIS to that folder and with me and a third colleague it's working well.
After some investigation we discovered that the problem has nothing to do with the user itself, but with how the user opens the project. Since the beginning I've been opening the project by double clicking the ".dtproj" file. My colleague first opens the SSIS development interface then opens the project file from the menu.
Has anyone noticed that behavior? What could be the cause for that?
error message print
Microsoft Visual Studio 2008
Version 9.0.30729.4462 QFE
Microsoft .NET Framework
Version 3.5 SP1
Installed Edition: IDE Standard
This happens because the different ways of launching the IDE end up with different current directories for the IDE process. You can test this by creating a package with only a Script Task, with the one line:
MessageBox.Show(Environment.CurrentDirectory);
And then running this project after launching it both ways.
Double-clicking the project or solution file sets the folder containing that file as the current directory. (I assume this is standard Windows process launching behaviour when starting a process based on the file extension association.) SSIS packages then look in the current directory when the path to the configuration file is relative.
We use relative paths to configuration files all the time to simplify deployment, and have to always remember to open the solutions by double-clicking the SLN file.

winbase.inl missing in Windows Phone Kits

I have some native static library(say MyLib), wich includes windows.h, and I'm trying to reuse it in my WP8 app:
I've copied lib's project file,
renamed it (MyLibWP),
changed platform toolset to Windows Phone 8
tried to build it.
After which I'm getting the following error:
C:\Program Files (x86)\Windows Phone Kits\8.0\Include\winbase.h(10170): fatal error C1083: Cannot open include file: 'winbase.inl': No such file or directory
Kinda weird. Checked the specified folder - it does tell the truth, file is missing.
So, what is wrong with all this stuff?
Edit: tried to copy missing file to \Windows Phone Kits\8.0\Include\ manually, but that doesn't help.
I would reinstall the SDK, I have winbase.h on my machine, at C:\Program Files (x86)\Windows Phone Kits\8.0\Include

PackageMaker installing the app file but not setting its custom icon

I have created an installer for my application bundle(.app) and the installer successfully installed the application in Applications folder but it is not setting the icon which i set previously before installation to the bundle. In Applications my application is seen with default .app icon. I tried to set the Icon file in plist file of the bundle, but no result. Anybody who tried this successfully please help.
Thank you
Thanks for all those looked into my question. After some tiring research, I found the solution. I am not sure whether it has any problem with other version of OS X. I am using Mac OS X 10.7.3 Lion. Here is the solutions worked for me.
Create an .icns icon. Apple bundle uses icns file as Icon file. You can easily create one using an icon converter. I used an app from http://www.img2icnsapp.com/
Right click the bundle and browse the folder of the .app and copy the .icns file to the Resources folder.
ie. Contents>>Resources
Edit Info.plist file and add a key for Icon File, if there is no Icon File key. Set the value to your icns file name. (eg:- test.icns)
Now create the package from PackageMaker and install the package, you can see your application installed with custom icon in /Applications
:)