Hi! I update Fuse to 0.31.2 and I get this errors when I try to run my app on my device:
Package 'Android' was not found
Package 'ObjC' was not found
Package Experimental.iOS was not found
The packages change in this version?
How can I solve this?
Thanks!
///UPDATE///
I remove:
"Experimental.iOS"
"Android"
"ObjC"
But now I get:
Fuse.Triggers.iOS does not contain a member called 'Foundation'. Could you be missing a package reference?
Fuse.Triggers.iOS does not contain a member called 'Foundation'. Could you be missing a package reference?
(1.8 s)
This is the part of the code:
public class DeviceInfo {
public static string MyLanguage;
public static string GetLanguages() {
if defined(ANDROID) {
return Android.java.util.Locale.getDefault().getISO3Language();
}
if defined(iOS) {
var l = iOS.Foundation.NSLocale._preferredLanguages();
if (l != null) {
var id = l.objectAtIndex(0);
var s = new iOS.Foundation.NSString(id);
return s.stringByAppendingString("");
}
}
return MyLanguage;
}
}