-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
plugin_not_installed on android #34
Comments
Hey did you found any solution for this problem? I'm in the same situation, thanks! Best regards from Guatemala. |
Thank for the response, that was exactly what I did, I just created a new project and I was able to load the plugin properly. |
Hi @DaveMans . How did you solve the issue? I have the same problem |
Same problem here. Any update? |
Hi @Maurocruzter and @Ovilia , I didn't check this until today, sorry :) Well, basically what I did was that I created a complete new project, and then I installed the plugin from github repository, then I moved my code from the original project to the new one, is not an "elegant" solution but it worked for me, hope that helps!! Regards! :) |
@DaveMans May I ask when did you do that? Maybe it's caused in a recent commit? I tried it with an empty project but the same error occurs.
The code is:
Error message:
|
@Ovilia Although I have never used ionic myself, I believe |
@boedy It worked for me! Thanks for saving my day! 😆 For others having the same problem here, try remove the one installed with npm and
|
Thank you very much!! |
I want to use the WebServer in an Ionic4 app on android and IOS, build with angular.
I installed the plugin via
ionic cordova plugin add https://github.com/bykof/cordova-plugin-webserver
npm install --save @ionic-native/web-server
I importet WebService in app.module.ts in providers
import { WebServer } from '@ionic-native/web-server/ngx';
I want to create a service, with the following code:
`constructor(private myServer: WebServer, private networkFinder: NetworkFinderService, private platform: Platform) {
}`
But i also tried this in app.component.ts in the constructor.
Then i build the android apk and run on the device via cordova.
Put i alwas get the error: plugin_not_installed.
Does anybody knows the solution?
Thanks for help
The text was updated successfully, but these errors were encountered: