Xcode 11 moved version handling to the .pbxproj file, in addition to Info.plist, which broke my script to automatically increase build number on each build. Solution for Xcode 11/12 is shown below. Background – pre Xcode 11 / Xcode 12 Before Xcode 11 the “normal” way to auto increment build number was to read current… Continue reading Auto-increment build number in Xcode 11 / Xcode 12
How to use iOS device settings for language in Ionic 5 / Cordova
How do set language for context menus (select all, cut, copy, paste…), file upload, camera dialogues and other iOS or plugin functionality that is outside of your core project? The answer is CFBundleDevelopmentRegion set in info.plist It seems CFBundleDevelopmentRegion is always set to en_US by default (or maybe this is because I build on a… Continue reading How to use iOS device settings for language in Ionic 5 / Cordova
Instruction for Apple App Store upload (from an App Developer to Client)
This is a blog post I wrote at my company web site MobilApp.nu (mobile app development) It is aimed for our customers, who are mainly non-developers, on the steps for first time setup Apple Developer and App Store Connect for us to be able to sign and upload apps that we have developed for them.… Continue reading Instruction for Apple App Store upload (from an App Developer to Client)
Tutorial: Sign in with Apple (SIWA) and Ionic, Cordova, AngularFire, Firebase
Since a few months back Apple does not approve apps that have only social media login (ie not good old fashioned username and password) unless it also has “Sign in with Apple” (SIWA) All this is probably too new for it to be any good tutorials or examples available, at least I could not find… Continue reading Tutorial: Sign in with Apple (SIWA) and Ionic, Cordova, AngularFire, Firebase
Ionic Cordova Error – ENOENT: no such file or directory
When trying to build (“ionic cordova build ios”) my Ionic Cordova project, I got this error: “Error: ENOENT: no such file or directory“. Took me awhile to figure out since I had just copied the project from an older project, made a few changes etc. Turns out the cause was that I had used a… Continue reading Ionic Cordova Error – ENOENT: no such file or directory
Xcode and Bitbucket gives Authentication Failed
When cloning a Bitbucket repository from Xcode (using current version 9.2) I get Authentication failed. Solution is to insert Password into URL. Steps: Copy repository URL from Bitbucket – Overview, select HTTPS (not SSH) Paste it in to Xcode Clone window for Adding GitHub account (for example click “Clone an existing Project” from Xcode start… Continue reading Xcode and Bitbucket gives Authentication Failed
Solved: Email not received and no NDR on Office365 Microsoft online
I recently had the problem where a person sent me a zipped file from his gmail account to my email account at Microsoft online/Office365. The email never reached me and the sender never received any NDR (Non Delivery Report). So I thought he hadn’t sent me anything while he was sure I had received it. Luckily… Continue reading Solved: Email not received and no NDR on Office365 Microsoft online
Set separator delimiter in CSV file to open correctly in Excel
Problem I made a PHP script to export a SQL query (from MySql) to a CSV file for opening in Excel. I cannot control how different users have their Excel setup, ie what separator delimiter they have set (this differs with language settings or user may have changed setting) So the field separator delimiter gave me some problems,… Continue reading Set separator delimiter in CSV file to open correctly in Excel
Solution: USB Memory stick not showing in File explorer
Problem I have some USB Flash Memory drives that I had used on a non-Windows system (ie a TV) so it is using another file system than Windows’ NTFS, FAT or FAT32. When I insert them into my Windows 10 laptop they are connected, ie they are found by Windows and show up under “Safely Remove Hardware and… Continue reading Solution: USB Memory stick not showing in File explorer
Windows cannot connect to iPhone Personal Hotspot
I have ran into this a few times so I thougt I’d write down the solution as I seem to keep forgetting it. There are probably tons of other problems you can have with iPhone Personal Hotspot and Windows Wifi but this is the solution to one I keep running into. Problem I turn on… Continue reading Windows cannot connect to iPhone Personal Hotspot