Issue with returned data of Iconic package - umbraco

Iconic packages was working very well with version 8.0.2.
After upgrading to 8.1.0, when calling the control, it return string as json
({
"icon": "fa-search",
"packageId": "8492d996-3934-4cc6-b56a-6ceaac9cba4b"
})
instead of the desired IHtmlString "i class="fa fa-search"></i>". Already tried to remove the package then re-install it but no effects.
What to do to solve this issue? please advice
thanks in advance

A new version 2.2 has been released. This is compatible with Umbraco 8.1.

Related

package resolution failed xcode

I am running macOS Monterey 12.4 on an M1 MBP with XCode 13.4 installed.
I'm building a swiftUI project for ios and trying to connect a Firebase/FireStore DB to the project using Swift Package Manager and import: firebase-ios-sdk.
On doing so, I get a Package Resolution Failed message with a box and list of all the firebase-ios-sdk that could not be resolved: list
Package Resolution failed
I tried deleting the derived data folder content, resetting package caches, resolving the package version, restart Xcode. Did not work.
Last night I uninstalled XCode and re-installing Xcode overnight. Did not work, still the same issue today.
When I import Firebase to the .swiftui file, I get a code error message - No such module 'FirebaseCore'
I will really appreciate your assistance, I am a Newby.
Thanks
Adriaan
UPDATE: (SOLUTION)
Chris Parker # https://codecrew.codewithchris.com solved the issue for me.
Here is what he wrote and it worked for me:
"I just tried to install Firebase again and the problem still exists. I looked a bit closer to the options that had defaulted with regard to the Dependency rule and the option that had defaulted was “Branch”. I changed that to “Up to the next major version” and the package selections that I was expecting to see did in fact appear so that’s what the problem was."
I just want to say a really big thank you to Chris at codewithchris, he really came through for me.
THANK YOU CHRIS PARKER
Xcode "File" -> "Packages" -> "Reset Package Caches" solved the issue for me. Hopefully, it will be useful to others as well.

FormBaseCell' is only available on iOS 10.0 or newer

I am using SwiftForms library from GitHub. I recently upgraded my xcode project to Swift 3 and fixed several errors after that. I also made sure to issue pod update to make sure SwiftForms is up to date (how do I check if I have the latest version?).
One of the error I can't seem to solve is this:
When I go to the description of FormBaseCell:
I can see that the class FormBaseCell is only available for ios 10.
How do solve this error?
Thanks!
Your minimum deployment iOS version is less than 10.0, that's why this error comes.
A lines with
public typealias ...
are compiled and run on SDK lower than 10.0 as well. In this case it could be missing in your product.

arc4random_uniform not available in Xcode 7.0 beta (7a176x) on OSX 10.10.4

I'm trying to use arc4random_uniform in the Xcode build mentioned, but it seems to no longer be available:
An alt-click on the available functions show that they're declared in stdlib.h, which has them listed as follows:
It seems strange that its no longer available. This particular stdlib.h is within the iOS 9.0 simulator directory at usr/include/stdlib.h not sure if that helps or not.
I have the latest command line tools installed. Not sure what's going on. Any advice / help / fixes are much appreciated. Thanks in advance.
UPDATE
Seems to be an Xcode bug, references for which are:
22275032
22275176
It seems to be still available (I have been using it in 7A176x, but on El Capitan), it is just not shown in the suggestions.

Has MvxBindingActivityView been deprecated?

It doesn't appear that it's included in the latest binaries for mvvmCross. Am I mistaken?
I'm not in my computer, but I believe that is now called 'MvxActivity'

navigator.app undefined

I'm trying to use:
navigator.app.loadUrl("http://www.google.com", { openExternal:true } );
And it does not work for iOS, either on device and simulator. I've used this same line of code in a similar project, and I'm using the same version of phonegap on both (1.5.0). On android the same code works perfectly. The device ready function also fires, so I'm guessing phonegap is being loaded. I'm not using the phonegap.js file of android, I've checked that.
While debugging I found that navigator.app is an undefined object. Does anybody have any idea of a configuration I might be missing to cause this?
Thanks for your help.
Cheers,
Miguel
The "navigator.app" object is only available on Android. Luckily in the soon to be released 2.3.0 version of PhoneGap you will be able to do:
window.open("http://www.google.com", "_system");
to do exactly what you want to do.

Resources