ionic - error no whitelist platform after build an apk - ionic-framework

i want to ask you, i am a newbie. i make an app with ionic and there is some php file. i cant find yet solution for my problem, my app doesnt have whitelist plugins but it have others plugin.
i've tried command for add whitelist plugins. its work, theres whitelist plugin. but when i build the project to android, there is no whitelist plugin.
i'v check the folder android/assets/www/plugins and no whitelist plugin there after i build the project. whats the problem and solution?
thank you.
note:
i have add the meta for security policy in the index.html but nothings change.

Related

How to make Ionic 4 build for a browser?

I’m unfortunately having difficulty deploying my ionic project for web. No matter what I do, commands such as 'ionic build, ‘ionic build --prod’, ‘ng build --prod’, or whatsoever always create a www folder that is incorrect. The index.html in this www folder is always blank when viewed from a browser.
I’ve tested this issue on other ionic projects as well (just generated some from templates) and the same issue occurs here, with the index.html in the www folder always being displaying a blank site. If possible, I’d appreciate any help if that’s OK!
ionic cordova platform add browser
ionic cordova run browser
ionic cordova build browser --prod
For testing purpose use ionic serve . It will rebuild automatically every time when you update your code.
have you changed the base href in index.html from
base href="/"
to
base href="."

Ionic 3 Uncaught (in promise) : plugin_not_installed

I have a problem my fingerprint project does not work for me, it generates this error plugin_not_installed
enter image description here
Well friends any doubt I will be waiting for your answers for hours trying to solve my problem, thank you for your attention
It seems the plugin you are using in that view is not installed as a cordova plugin. You may have it installed as an npm module but not as a plugin in the platform.
Verify this with:
ionic cordova plugin ls
The plugin may be not correctly installed in the platform, in this case in iOS. Each platform folder has a plugin folder. Ensure your plugin is inside that folder.
It seems that you may have set your FCM in your constructor as private, just replace (private fcm: FCM) with (public fcm: FCM )
then save it , I hope it may solve your problem.

Install Error while installing Google Apps marketplace app

We've been getting this installation error when our users try to install the apps marketplace app.
How do we resolve this?
Is the error being seen by Google Apps domain administrators or non-admin domain users? If its latter then its likely the domain administrator has not enabled install for non-admin users in the domain.
I've figured out the issue but do not know how to resolve this.
We had tried to update our marketplace app manifest file but due to some issue on Google's end, the updated manifest file was not being uploaded and this error was being thrown
This item is not an app, please remove app section from manifest , google apps marketplace
So we removed the "app" section from the manifest file and uploaded it. This has resulted in our marketplace app becoming a Chrome extension rather than a marketplace app and causing the issue.
Currently if I try to edit and upload a version of manifest file with "app" section, it won't allow me to upload it, showing the same error as before. So there is no way that I know which can solve this issue.
If anyone can help me out with this it will be really helpful. Registering a new MP app, getting approval from google and moving all users and reviews to new app will be really painful.

Ionic workflow questions and facebook authentication issue

I'm trying to implement mobile application using Ionic. I'm following this, but unfortunately logging in doesn't work on real device. It works fine in the browser and the emulator. I did every step from the tutorial, I did the tutorial 2-3 times and still get the same error.
I am logged in successfully on my device but then I see the following screen:
I already have both urls as redirect urls in my application settings in FB.
http://localhost:5000/oauthcallback.html
https://www.facebook.com/connect/login_success.html
I tried to debug OpenFB with alerts. I can see "cordova events" alert but then I have alerts on the first lines of loginWindow_loadStartHandler and loginWindow_exitHandler but they are not executed. I guess that the problem is there but I have no idea how to fix it.
if (runningInCordova) {
alert("cordova events");
loginWindow.addEventListener('loadstart', loginWindow_loadStartHandler);
loginWindow.addEventListener('exit', loginWindow_exitHandler);
}
Also I have some questions about Ionic and Phonegap.
I use Ubuntu and I am trying to build iOS and Android applications.
My application's structure is:
app/
hooks/
platforms/
plugins/
scss/
www/
Also I have InAppBrowser plugin:
cordova plugin add org.apache.cordova.inappbrowser
but this plugin is not part of app/www folder.
I am trying to build a phonegap application in their site. I made a .rar file of the app/www folder content and upload it. Everything seems to be fine. But in Phonegap site when I click PLUGINS, I see This application has no plugins. How should I add inappbrowser to the application, maybe that is the reason why my FB authentication doesn't work. If I build the whole app folder, again I see the same message - This application has no plugins.
So when create an archive file of the content for Phonegap, which folder I should archive - the whole app folder with all subfolders or only app/www? What is the correct flow? Also how crossplatform app should now about added plugins?
I ran into this issue today, if someone is still looking for the solution for this:
loginWindow.addEventListener('loadstart',
loginWindow_loadStartHandler);
is implemented in the js file, but the loadstart event never fires on my Android (but works on WindowsPhone cordova javascript app), instead i added:
loginWindow.addEventListener('loadstop',
loginWindow_loadStartHandler);
,which works on both Android and WP (with InAppBrowser 1.2.0), IOS test is still ahead.

Can't download a GWT Plug In For IE

I am not able to install the GWT Developer plugin for Internet Explorer.
After getting the yellow patch saying:
Development Mode requires the Google Web Toolkit Developer Plugin
I click on Download plugin. Instead of redirecting to a download site it shows:
Internet Explorer cannot display the webpage
What might be the probable cause?
Actually the page is not redirecting to :
"https://dl-ssl.google.com/tag/s/appguid%3D%7B9a5e649a-ec63-4c7d-99bf-75adb345e7e5%7D%26lang%3Den%26appname%3DGWT%2520Developer%2520Plugin%2520for%2520IE%2520%2528x86%2529%26needsadmin%3Dfalse/gwt/plugins/ie/GwtDevPluginSetup.exe"
Is there any alternate way to install that plugin?
Please help!!
I faced the same problem and i think that there is no development mode for IE8. it didn't work when i tried to run it in IE. So i advice you to use Chrome it is the best browser supports GWT dev mode. Why do you need IE anyway ?
read this article about IE http://googlewebtoolkit.blogspot.com/2010/12/support-for-gwt-dev-mode-in-ie-9.html
Even I had the same issue in installing the plugin for IE, what i did was just copy and pasted the missing plugin url in address bar and hit the enter button. And installed it, so finally it worked. The issue was, the browser was unable to redirect to the plugins update site, after clicking on download link.
Hope this might fix your problem.