I am getting an error that the type Expander was not found. I am aware that it was moved
in the Xamarin Community Toolkit, so I added this namespace on my Content Page;
xmlns:xct="http://xamarin.com/schemas/2020/toolkit"
and used it like this.
<xct:Expander>
</xct:Expander>
But I still get the error. Can someone help me with this problem?
Thank you!
At first, you need to open the nuget package manager and install the package named Xamarin.CommunityToolkit.Markup and the package named Xamarin.CommunityToolkit. In addition, the two packages always have dependency with the high version of Xamarin.Form packge.
So you can install the low version of the CommunityToolkit and .CommunityToolkit.Markup or update the Xamarin.Forms to the last version.
I suggest the latter and then add the namespace xmlns:xct="http://xamarin.com/schemas/2020/toolkit" in the Content Page, you can use the Expander.
Related
The whole issue is stated in the title.
Try it by yourself:
create a project w/ {renv},
install a package, and add any function call from that package in the project .Rprofile,
snapshot it to renv.lock,
put a GitHub action (e.g., using {usethis} wrapper),
push it on GitHub.
You can find a ready-to-inspect errored reprex project here.
I have tried to:
install the package from within the project .Rprofile
before or after sourcing renv/activate.R
using renv::install or utils::install.packages (setting an option for the CRAN repo)
using utils::install.packages, sourcing renv/activate.R, and next using renv::install
None of my options/combinations worked, and the GH-action still return the error: "Error: Error in loadNamespace(x) : there is no package called ‘<package-name>’".
Do you have some hints for trying to solve this issue? Is that an issue from {renv} or GH-action?
Thank you!
Corrado.
I installed the NuGet package 'EmbeddedSTS' to test a proof of concept. It worked well and I was happy with the package.
I decided to remove the package. However, when I removed the EmbeddedSTS package and built my solution, I got the following error:
The pre-application start initialization method Start on type
Thinktecture.IdentityModel.EmbeddedSts.EmbeddedStstConfiguration threw
and exception with the following error message: ID7027 Could not
load the identity configuration because no
configuration section was found.
Am I missing a step to completely remove the EmbeddedSTS package?
When I check the installed packages on the solution, EmbeddedSTS is not there.
My question is NOT how to fix the error message; its how to remove the EmbededSTS from Visual Solution/ Solution
Many Thanks!
The answer was simple. There is a EmbeddedSTS DLL in the bin which is fired up each time you start debugging. By removing this DLL I was able to get my solution to build again.
Not sure if any one of you have ever faced this issue. I have tried checking various sources online but nothing solved my issue.
I am following a tutorial on how to create a Meteor+ionic+react application from this link
https://medium.com/#SamCorcos/meteor-react-ionic-mobile-app-part-1-the-basic-template-9355ebf3397f#.qtl4fl5st
when i add the line
ReactRouter=require("react-router");
inside app.browserify.js and run the application, i get the following error.
Error: Cannot find module 'react/lib/invariant'
I am using following versions
react 0.14.3
cosmos:browserify 0.9.3
meteorhacks:npm 1.5.0
npm-container 1.2.0+
I am surely missing something thing here. Can anyone help.
Thanks,
Sri TejN
I found the solution myself. Just install the ReactRouter that is present in the meteor packages and do not include the line “ReactRouter = require(“react-router”);” in the file “ app.browserify.js”. But you can use the variable ReactRouter anywhere else in the code.
Just to confirm, in my case the solution also worked and added ReactRouter package:
meteor add reactrouter:react-router
Then commenting out line:
//ReactRouter = require("react-router");
In file lib/app.browserify.js and running Meteor again fixed the problem.
Thanks Sri Tej Narala.
i keep hitting this error today and I already download the plyr from github but it still doesn't work. I restarted R-studio even my PC after installing plyr..
It appears the problem may be due to a change made to the way R resolves references to external DLLs, as mentioned halfway through the thread here.
Adding the parameter PACKAGE="plyr" to the .Call function call on line 12 of R/loop_apply.R in the source (clone from github), and then installing the package from that source (install.packages("<path to plyr source>", type="source", repos=NULL)) seems to fix it.
I'm trying to install Products.ATSuccessStory in a fresh Plone 4.1.3 instance on OS X Lion using Python 2.6.7. Buildout runs fine but when I try to get my instance started I get the following error:
zope.configuration.config.ConfigurationExecutionError: : (, u'cmf.ManagePortal')
in:
File "/Users/keith/Documents/plone-sites/caches/4.1.3/Products.ATSuccessStory-4.0.0-py2.6.egg/Products/ATSuccessStory/browser/configure.zcml", line 8.5-17.11
<plone:portlet
name="atss.rotating.portlet"
interface=".portlets.successstory.ISuccessStoryPortlet"
assignment=".portlets.successstory.Assignment"
view_permission="zope2.View"
edit_permission="cmf.ManagePortal"
renderer=".portlets.successstory.Renderer"
addview=".portlets.successstory.AddForm"
editview=".portlets.successstory.EditForm"
/>
I'm not as in tune with zope's inner working, but as far as I know there is absolutely nothing wrong with this portlet block in the configuration. Any guidance on how I should fix this would be greatly appreciated.
Thanks
Judging from the date of its last release, the product has likely not been updated for Plone 4.1, which requires a few very minor tweaks. These are documented at https://plone.org/documentation/manual/upgrade-guide/version/upgrading-plone-4.0-to-4.1/updating-add-on-products-for-plone-4.1/changing-dependencies-from-plone-to-products.cmfplone
ATSuccessStory 4.1.1 has just been released that includes the fix to this issue.
The source egg for this version is available on pypi but not yet (eventually will be) on plone.org