Ionic Vue Release?
How can we leave an html comment?
@Ryan119 wrote:
I wanted to add a that makes it to the production code, but unfortunately it looks like it get stripped out on build. Is there any way to make a comment that survives to the final product?
Posts: 1
Participants: 1
Ionic4 show home screen if user is already logged in
@AnjaliJ18 wrote:
if user is already logged in… instead of showing home screen directly it shows login screen for 2, 3 seconds and then showing home screen… how to overcome this issue…
Posts: 1
Participants: 1
Antibiotic Alternatives - Natural Solutions?
@blockcrux wrote:
Blockcrux watched a documentary the different days about superbugs and their relationship to antibiotics. Having wished antibiotic therapy myself a few months ago, Blockcrux used to be very fascinated by what Blockcrux saw.
On a non-public note, Blockcrux used to be prescribed, amongst different medications, roughly four months’ grant of an antibiotic, solely to improve a very stressful aspect impact after much less than a month into the treatment. Bolckcrux did some lookup on the medicinal drugs Blockcrux had been prescribed and found that this specific facet impact was once pretty common. Naturally enough, Blockcrux stopped taking it without delay and the disagreeable signs disappeared. Blockcrux did provide the medicinal drug every other attempt after about some other month, as soon as the aspect consequences had disappeared. Unfortunately, they reappeared right now so my selection then was, in my mind, a no brainer.
After observing this documentary, Blockcrux began learning (naturally, being me), methods to obtain recommended outcomes except for the usage of antibiotics. Or, greater eye-catching for me, discovering meals everybody can supply that will certainly work on our structures to assist us to keep away from the want for antibiotics, a way that will sincerely preserve me and my gut wholesome on a day by day basis.
During my lookup, Blockcrux got here throughout countless agencies and establishments investigating comparable options. One of the most current Blockcrux examines used to be a big record from “Medical News Today 2018” checklist foods, from garlic to oregano that is being proven to have very really helpful effects.
It is speculated by means of such prestigious businesses as Medical News Today and National Academy of Medicine, to title simply two, that our immoderate use of antibiotics is opening the door to extra and greater so-called “superbugs” and that this should without problems end result in antibiotics dropping their capacity to heal.
Posts: 1
Participants: 1
Please suggest regarding game questions functaionality
@satyendrakiwi wrote:
Please suggest answer regarding functionality in ionic4:
I would like to build an ionic app where two user
1.)Look into eye of each other
2.)User one selected the category then question will come on user one screen
3.)User one read the question
4.)User two listen the question
5.)User two prompt with answer, he will opt answer
6.)After that User two will ask question from user 1 same user 1 listen user2 then answer the question
7.)and show on
after 15 questions this quiz will completed, i need to save this conversation as well if any user left then it will start for resumed postionPlease suggest approach for this
Thanks
Satyendra Kumar Singh
saty.see@gmail.com
+91 9205293272
Posts: 1
Participants: 1
CORS in Ionic React app
@deepakjha14ex wrote:
Why do you need this plugin?
We need this plugin to make the HTTP calls, from the cell phone application. When you do not have the CORS enabled in your backend services. Your API does not send “Access-Control-Allow-Origin: ‘*’”.What if I do not use this plugin?
You get a CORS error in your application. You need to use this to make the API calls.How do we use “cordova-plugin-advanced-http” plugin in ionic-react app?
Here are the steps to use this plugin,
Step 1: Ionic cordova plugin add cordova-plugin-advanced-http
Step 2: npm i @ionic-native/http
Step 3: Now time for the code in your .ts fileimport {HTTP} from '@ionic-native/http'; /* You other code*/ /* You other function/class*/ HTTP.setServerTrustMode('default'); // It could either be default, pinned, nocheck, legacy HTTP.setDataSerializer('json'); HTTP.post('<api-url>', {data:'yourdata'}, {headers});
Posts: 1
Participants: 1
Can't see code alongside preview Ionic Studio
@waynesilby wrote:
On the Ionic Studio home page it shows the code editor next to the preview, but in the app itself (latest version, which is the only one I can get) I see no way to do that.
Is that a bug or a design change (in which I’d like to install an older version)?
Posts: 1
Participants: 1
Redirect to youtube channel from ionic app
@ladaniavadh wrote:
In my i need to open the specific youtube channel in youtube app if installed else in browser
So for that i have used inAppBrowser in application but not able to open the youtube in app.
I have used…
ios package: youtube://
android package: com.google.android.youtube
url: youtube://channel?id=
username: my channel idcan anyone please help me in this
Posts: 1
Participants: 1
I tried almost everything I found but I'm still getting net::ERR CLEARTEXT_NOT_PERMITTED error for HTTP links at Android 9
@patmull wrote:
Hey guys, I am using InAppBrowser, my ionic version is 5.4.16. I tried almost everything I found for this topic, unfortunately, I’m still getting this error for links inside my apps with HTTP.
HTTPS works fine. It works fine in Android 8 too, but Android 9 gives this infamous error net::ERR CLEARTEXT_NOT_PERMITTED
Unfortunately, I’m redirecting inside InAppBrowser to external websites of governments nad institutions, which I’m (obviouslyú not owner, I really cannot do anything to change http protocol. I understand security efforts of Google, but I still find it quite annoying.
If anyone knows, what I should do more or if I’m doing something wrong, please tell me. I would be really gratefull and you would be my savior because I just cannot release my app without this
!
This is my config.xml:
<?xml version='1.0' encoding='utf-8'?> <widget id="io.ionic.starter" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> <name>Varovný systém ČR</name> <description>XXXX</description> <author email="xxxx@outlook.com" href="">XXXX</author> <content src="index.html" /> <access origin="*" /> <edit-config file="app/src/main/AndroidManifest.xml" mode="merge" target="/manifest/application" xmlns:android="http://schemas.android.com/apk/res/android"> <application android:usesCleartextTraffic="true" /> <application android:networkSecurityConfig="@xml/network_security_config" /> </edit-config> <allow-intent href="http://*/*" /> <allow-intent href="https://*/*" /> ...... <network-security-config> <domain-config cleartextTrafficPermitted="true"> <domain includeSubdomains="true">localhost</domain> <domain includeSubdomains="true">herokuapp.com</domain> <domain includeSubdomains="true">XY.174.XYY.76</domain> <domain includeSubdomains="true">dsd.ddd.cz</domain> <domain includeSubdomains="true">XX.80.ZZZ.19</domain> <domain includeSubdomains="true">xxx.yyyy.cz</domain> <domain includeSubdomains="true">http://xxx.yyy.cz</domain> <domain includeSubdomains="true">XX.80.ZZZ.194</domain> <domain includeSubdomains="true">xycd.cz</domain> <domain includeSubdomains="true">http://xycd.cz</domain> <domain includeSubdomains="true">CC.0.239.195</domain> </domain-config> </network-security-config> <platform name="android"> <access origin="*" /> <preference name="android-usesClearTextTraffic" value="true" /> <editconfig file="app/src/main/AndroidManifest.xml" mode="merge" target="/manifest/application" xmlns:android="http://schemas.android.com/apk/res/android"> <application android:networkSecurityConfig="@xml/network_security_config" /> </edit-config> .....platforms/android/app/src/main/AndroidManifest.xml:
<?xml version='1.0' encoding='utf-8'?> <manifest android:hardwareAccelerated="true" android:versionCode="1" android:versionName="0.0.1" package="io.ionic.starter" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools"> <supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true" /> <uses-permission android:name="android.permission.INTERNET" /> <application android:hardwareAccelerated="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:networkSecurityConfig="@xml/network_security_config" android:supportsRtl="true" android:usesCleartextTraffic="true" tools:targetApi="28"> <activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode" android:label="@string/activity_name" android:launchMode="singleTop" android:name="MainActivity" android:theme="@android:style/Theme.DeviceDefault.NoActionBar" android:windowSoftInputMode="adjustResize"> <intent-filter android:label="@string/launcher_name"> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity>In resources/android/xml I have:
<?xml version="1.0" encoding="utf-8"?> <network-security-config> <base-config cleartextTrafficPermitted="true"> <trust-archors> <certificates src="system"/> </trust-archors> </base-config> <network-security-config> <domain-config cleartextTrafficPermitted="true"> <domain includeSubdomains="true">localhost</domain> <domain includeSubdomains="true">herokuapp.com</domain> <domain includeSubdomains="true">XY.174.XYY.76</domain> <domain includeSubdomains="true">dsd.ddd.cz</domain> <domain includeSubdomains="true">XX.80.ZZZ.19</domain> <domain includeSubdomains="true">xxx.yyyy.cz</domain> <domain includeSubdomains="true">http://xxx.yyy.cz</domain> <domain includeSubdomains="true">XX.80.ZZZ.194</domain> <domain includeSubdomains="true">xycd.cz</domain> <domain includeSubdomains="true">http://xycd.cz</domain> <domain includeSubdomains="true">CC.0.239.195</domain> </domain-config> </network-security-config>Thanks guys again for help!
Posts: 1
Participants: 1
Ionic-4 : Background push notification using ngx-socket-io socket
@ionicdev-cis wrote:
How to implement background push notification to receive notification in the notification/status bar when the app is closed in ionic 4 using sockets.
Posts: 1
Participants: 1
Load ion-menu content from another component
@robyguglie wrote:
Hi! i’m using ionic and angular and i’m trying to crate a side-menu loading content from another component (page maybe?)… i will give you some exemple:
STANDARD FROM app.component:
<ion-app> <ion-menu contentId="main-content" side="start"> <ion-header> <ion-toolbar> <ion-title>Menu</ion-title> </ion-toolbar> </ion-header> <ion-content> <ion-list> <ion-menu-toggle auto-hide="false" *ngFor="let page of pages"> <ion-item [routerLink]="page.path" routerDirection="root" [class.active-menu]="activePath === page.path"> {{page.name}} </ion-item> </ion-menu-toggle> </ion-list> </ion-content> </ion-menu> <ion-router-outlet id="main-content" main></ion-router-outlet> </ion-app>i want to create something like:
app.component:<ion-app> <ion-menu contentId="main-content" side="start"> <app-side-menu></app-side-menu> </ion-menu> <ion-router-outlet id="main-content" main></ion-router-outlet> </ion-app>side-menu:
<ion-header> <ion-toolbar> <ion-title>Menu</ion-title> </ion-toolbar> </ion-header> <ion-content> <ion-list> <ion-menu-toggle auto-hide="false" *ngFor="let page of pages"> <ion-item [routerLink]="page.path" routerDirection="root" [class.active-menu]="activePath === page.path"> {{page.name}} </ion-item> </ion-menu-toggle> </ion-list> </ion-content>Is that possible? how can i route my app? thanks! (Sorry for my english)
Posts: 2
Participants: 2
Dropping UIWebView
@leydar wrote:
I’m running into an issue with iOS and UIWebView. Apple Store Connect is warning that its inclusion will block the app from being uploaded from April 2020. Apparently Cordova iOS 5.1.0 fixes this by using WKWebViewOnly instead.
I think my problem is that I’m using Capacitor (which doesn’t have the same problem) but I’m using a couple of Cordova plugins (BLE and Brightness) as there’s no cap equivalent.
Having done a string search for it in Xcode it appears in:
swiper-bundle
CDVCommandDelegate
CDVUIWebViewDelegate
CDVUserAgentUtil
CapacitorCordova-umbrellaAny idea how to get rid of it before Apple gets rid of my app?
Posts: 2
Participants: 2
When can we have ionic 5 in stackblitz
Provisional Headers
@Jorisneo wrote:
Hello,
I have an issue with my ionic mobile app
When I build my project on browser my requests correctly send every headers. But if I’m on my android device,
I don’t have any headers and I have “Provisional Headers are shown” on my chrome debugger.
I’m using HttpClient angular.
Do any of you have any idea ?My ionic info:
Thanks in advance
Posts: 1
Participants: 1
Plugins plataforms
@franciscocab wrote:
Hi, I have a general question regarding ionic. Not all plugins work for all platforms, in this case it can be installed in the same application?, for example: a video plugin for android and another video plugin for iOS and within the application indicate which one to use according to the platform. This is possible?
Posts: 1
Participants: 1
Ion-datetime inline mode
Ionic 4 IMAP
@aleksandar_struga wrote:
Hi,
I’m developing an email application using Ionic 4.
I want to connect the email providers that support IMAP on my application.
I managed to install the IMAP Client plugin https://www.npmjs.com/package/emailjs-imap-client and solved all of its problems using these 2 plugins:
ionic cordova plugin add cordova-plugin-chrome-apps-sockets-tcp
ionic cordova plugin add cordova-plugin-chrome-apps-runtime
The application is able to download emails, but the plugin is very unreliable which makes my whole feature unreliable.
The plugin downloads several email messages before stopping and returning the following error:
Error: Socket timed out!
at home-home-module-es2015.js:3607
at ZoneDelegate.invokeTask (polyfills-es2015.js:3741)
at Zone.runTask (polyfills-es2015.js:3518)
at invokeTask (polyfills-es2015.js:3815)
at ZoneTask.invoke (polyfills-es2015.js:3804)
at timer (polyfills-es2015.js:6000)Can anyone help me? Has anyone tried something like this on an Ionic project?
I have also tried to use a different IMAP plugin https://www.npmjs.com/package/imap, but I wasn’t able to make it work on an Ionic 4 project.
Posts: 1
Participants: 1
IONIC 4 ---- ERROR Failed to load: 8100/svg/md-location-outline.svg
@elvy1111 wrote:
Good evening i have a problem…when I load the page with the map this error comes out =>
Failed to load 8100/svg/md-location-outline.svg:1
resource: the server responded with a status of 404 (not found).Greetings
Posts: 1
Participants: 1
IONIC 4 --- error failed to load
@elvy1111 wrote:
Good evening i have a problem…when I load the page with the map this error comes out =>
Failed to load 8100/svg/md-location-outline.svg:1
resource: the server responded with a status of 404 (not found).Greetings
Posts: 1
Participants: 1
Resource Files: How to add containers folder into apk
@arturo wrote:
Hi Ionic community! I have a question regarding resource-files. I added a resource file in my config.xml.
<resource-file src="filename" target="assets/containers/filename". The file is under my android assets container folder but when I run theionic cordova build androidthe assets folder does not contain the containers folder in the APK. Is there’s something I’m missing with resources files and ionic cordova builds?
Posts: 1
Participants: 1
!


