@avishai_peretz_dev wrote:
I have an app which allow to draw on canvas with free hand paint.
And there is video playing behind the paint.
Is there any way to save the video with the paint data as video file?Thanks
Posts: 1
Participants: 1
@avishai_peretz_dev wrote:
I have an app which allow to draw on canvas with free hand paint.
And there is video playing behind the paint.
Is there any way to save the video with the paint data as video file?Thanks
Posts: 1
Participants: 1
@gmagassa wrote:
Hello everyone, my name is ganda Magassa, I am a student. Since a few days I’ve been trying to create a blog post with ionic 3, but unfortunately I have a little problem. Here is my table post { name:string, description: string, picture: string}. I managed to save them but I can’t display the picture. Please I have some help from you
Posts: 1
Participants: 1
@Nirmalya-S wrote:
I have created a Ionic 3 Project in windows. Its works perfectly fine in Android. Then I copied the whole folder to Mac for iOS. I removed the plugins and platforms and reinstall it. It works fine as well. But the post Api request working fine in Safari (user agent iPhone) not in a real device(iPhone 6). I use “sudo ionic cordova build ios --buildFlag=-UseModernBuildSystem=0” to build the project.
Can anybody suggest what am I doing wrong?
Posts: 1
Participants: 1
@nz1375sa wrote:
Hi, i am really new in ionic and i am working on an existing app. pages included in side menu of the app are defined in providers as : page-service.ts. i want to change titles of pages, i change their title in providers but when i run the app i see the old titles in the side menu. i have already changed page titles in all the html pages and it is fine but i have problem with the side menu titles.
the instruction of this provider page is :
import { Injectable } from ‘@angular/core’;
import {PageInterface} from “…/models/page-interface”;@Injectable()
export class PageService {pages: PageInterface = [
{ title: ‘Inicio’, pageName: ‘TabsPage’, tabComponent: ‘HomePage’, index: 0, icon: ‘icon_inicio.png’ },
{ title: ‘Perfil usuario’, pageName: ‘ProfilePage’, icon: ‘icon_perfil.png’ },
{ title: ‘Datos clínicos’, pageName: ‘MedicalDataPage’, icon: ‘icon_datos.png’ },
{ title: ‘Cerrar sesión’, pageName: ‘’, icon: ‘icon_logout.png’, logsOut: true },
];public getPages() : PageInterface {
return this.pages;
}}
and i am using:
Ionic Framework: 3.9.2
Ionic App Scripts: 3.1.11
Angular Core: 5.2.11
Angular Compiler CLI: 5.2.11
Node: 11.7.0
OS Platform: Windows 7
Navigator Platform: Win32
Posts: 1
Participants: 1
@livingdigitaldemos wrote:
QRScanner prepare gives object is not a function error.
Getting a run time error Object(…) not a function.Following is the code
import { Component } from ‘@angular/core’;
import { NavController } from ‘ionic-angular’;
import { QRScanner, QRScannerStatus } from ‘@ionic-native/qr-scanner/ngx’;@Component({ selector: 'page-home', templateUrl: 'home.html' }) export class HomePage { constructor(public navCtrl: NavController,private qrScanner: QRScanner) { } startScan() { console.log('Start Scan'); this.qrScanner.prepare() .then((status: QRScannerStatus) => { if (status.authorized) { // camera permission was granted } else if (status.denied) { // camera permission was permanently denied // you must use QRScanner.openSettings() method to guide the user to the settings page // then they can grant the permission from there } else { // permission was denied, but not permanently. You can ask for permission again at a later time. } }) .catch((e: any) => console.log('Error is', e)); // this.qrScanner.scan(); // this.qrScanner.show(); // start scanning // let scanSub = this.qrScanner.scan().subscribe((text: string) => { // console.log('Scanned something', text); // this.qrScanner.hide(); // hide camera preview // scanSub.unsubscribe(); // stop scanning // });
}
}
I get this error on browser as well as android device
Posts: 1
Participants: 1
@Belas wrote:
Hi Ionic gang,
I’ve just released my first Ionic 4 / Capacitor app on Google Play. Titled Sleep Log Pro (paid version) and Sleep Log Free (ad-supported version), the app targets that 30% or so of the population (including myself) with chronic sleep / insomnia issues, and uses behavioral therapy to help them. I use it myself and am quite pleased with the result. Do have a look.
If you would be interested in downloading the paid version for free (Android only, as yet – iOS to come later this year), let me know in the comments and I’ll post a promocode link.
Here are some links:
Sleep Log Pro: https://play.google.com/store/apps/details?id=com.selendy.sleeplog
Sleep Log Free: https://play.google.com/store/apps/details?id=com.selendy.sleeplogfreeHope you enjoy the app. Any and all feedback warmly welcomed.
Posts: 1
Participants: 1
@chakradharsw wrote:
Hello,
I am building an ionic app and for backend i am using nodejs and mongodb. Is there any budget friendly hosting services with support for both nodejs and mongodb.
Posts: 1
Participants: 1
@girish_fuluskar wrote:
Hi,
I am facing this issue.
I am working on Ionic 1 app.
I am able to build .apk for latest version android phones and app is working fine.
With following command:
ionic cordova run ios – --buildFlag="-UseModernBuildSystem=0"
I am able to build iOS project from ionic and able to generate ipa file from xcode 10. But after installing .ipa on actual device (with iOS 12 and above), app open for a second and went into background.
Same .ipa file is working fine for older iOS devices with iOS 9 and 10.Following are my setup details:
Ionic:
ionic (Ionic CLI) : 4.9.0 (/usr/local/lib/node_modules/ionic)
Ionic Framework : ionic1 1.3.3
@ionic/v1-toolkit : 1.0.17Cordova:
cordova (Cordova CLI) : 8.1.2 (cordova-lib@8.1.1)
Cordova Platforms : android 7.1.4, ios 5.0.0
Cordova Plugins : cordova-plugin-ionic-keyboard 2.1.3, cordova-plugin-ionic-webview 2.3.2, (and 19 other plugins)System:
ios-deploy : 1.9.2
ios-sim : 7.0.0
NodeJS : v10.15.0 (/usr/local/bin/node)
npm : 6.8.0
OS : macOS Mojave
Xcode : Xcode 10.1 Build version 10B61Kindly advise.
Posts: 1
Participants: 1
@r3mo wrote:
Hi All,
I have an ionic app that I plan to push to iOS and Android app stores. A website currently exists where users can log in (giving them an access token).
Ideally I would like to achieve a user flow where logged in users on the website can click a link to install the iOS/android app, with their access token string being passed as a parameter to App Store/Google Play store so that once they open the app, the app can automatically log them in using their access token from the website.
Questions:
[1] Is it possible to pass a parameter to the app stores and have access to this parameter on first launch?
[2] Is it secure (parameter sent over HTTPs) ?Many thanks!
Posts: 1
Participants: 1
@flo.riano wrote:
Hello Friends,
i’m new in ionic and developed an small App for our Company.
Now the App is Beta tested and we want to Publish the App with our Blackberry UEM Server.
We don’t have any problems with publishing an Android App (.apk) with the Server.
But we also tried it with an iOS App (.ipa) File.
The Upload to the UEM Server did not make any Problems.
But if any User want to install the App, it only shows an white App Icon (not ionic default icon) and the App did not start.
The .ipa File was created with xcode 10 on an Mac.
I have an Apple Developer Account activated.
What did i need to do to successful publish an iOS App with Blackberry UEM?
It’s not planned to Upload the App to the Apple Store.Best Wishes
flo.riano
Posts: 1
Participants: 1
@sniii wrote:
Hi there
I’m currently a developer on a new large scale Ionic development project, and the solution is based on Ionic 4.
We are however experiencing issues with the use of the DevApp in conjunction with Ionic 4.Here are our findings / issues:
- Android: Cordova is not available, giving us problems with using Advanced HTTP plugin / CORS etc…
- iOS: Cordova is available
- General: No console output is being captured
- General: Not possible to remote debug webview through Chrome or Safari
These issues are really making it hard to be productive as we are faced with a long and tedious debug turnaround time
Can you shed some light on when these bugs will be fixed?
Posts: 1
Participants: 1
@manojpatel0217 wrote:
Getting duplication fb_app_id error when try to use facebook account kit with facebook login.
I tried to install facebook accountkit plugin without passing app id and app name but it looks like we need to must pass them and i pass them i am getting this error(As i already added facebook login plugin).
Following is the error.
[string/fb_app_name] D:\ionic\k-i4\platforms\android\app\src\main\res\values\accountkit.xml [string/fb_app_name] D:\ionic\k-i4\platforms\android\app\src\main\res\values\facebookconnect.xml: Error: Duplicate resources
[string/fb_app_id] D:\ionic\k-i4\platforms\android\app\src\main\res\values\accountkit.xml [string/fb_app_id] D:\ionic\k-i4\platforms\android\app\src\main\res\values\facebookconnect.xml: Error: Duplicate resources
:app:mergeDebugResources FAILEDFAILURE: Build failed with an exception.
- What went wrong:
Execution failed for task ‘:app:mergeDebugResources’.[string/fb_app_name] D:\ionic\k-i4\platforms\android\app\src\main\res\values\accountkit.xml [string/fb_app_name] D:\ionic\k-i4\platforms\android\app\src\main\res\values\facebookconnect.xml: Error: Duplicate resources
[string/fb_app_id] D:\ionic\k-i4\platforms\android\app\src\main\res\values\accountkit.xml [string/fb_app_id] D:\ionic\k-i4\platforms\android\app\src\main\res\values\facebookconnect.xml: Error: Duplicate resources
Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.Get more help at https://help.gradle.org
BUILD FAILED in 6s
21 actionable tasks: 1 executed, 20 up-to-date
cmd: Command failed with exit code 1 Error output:
FAILURE: Build failed with an exception.
- What went wrong:
Execution failed for task ‘:app:mergeDebugResources’.[string/fb_app_name] D:\ionic\k-i4\platforms\android\app\src\main\res\values\accountkit.xml [string/fb_app_name] D:\ionic\k-i4\platforms\android\app\src\main\res\values\facebookconnect.xml: Error: Duplicate resources
[string/fb_app_id] D:\ionic\k-i4\platforms\android\app\src\main\res\values\accountkit.xml [string/fb_app_id] D:\ionic\k-i4\platforms\android\app\src\main\res\values\facebookconnect.xml: Error: Duplicate resources
Posts: 1
Participants: 1
@vcass wrote:
After browsing it seems like it is problem with permission related problem. However I could not get proper solution working around with this plugin. Although it is working fine for android version below 7.
let options: CaptureImageOptions = { limit: 3 };
this.mediaCapture.captureImage(options)
.then(
(data: MediaFile) => console.log(data),
(err: CaptureError) => console.error(err)
);
}In many cases it is written fixed. However in my case it is not working. The plugin suddenly crashes the app.
Posts: 1
Participants: 1
@dayanajabif wrote:
I’m so happy to share with you the we finally launched our new ionic 4 template. I’m also very grateful for all the work the community has done towards making Ionic v4 such an amazing tool.
At IonicThemes we have been using Ionic since the very first v1 betas and we are impressed about how the development experience keeps getting better and better.
This ionic template is built using Angular 7 and Ionic Framework v4 and has everything you need to jump start your app development! Get Ion4FullApp and enjoy lots of carefully designed pages with the most required functionalities. PWA ready, 100% Flexible and Customizable, developed using the latest standards and best practices and includes a detailed documentation.
Please let me know if you have any question or feedback
Posts: 1
Participants: 1
@Birke wrote:
i try to add a custom directive with a HostListener click. i generate a directive in ionic
import {Directive, ElementRef, HostListener} from '@angular/core'; @Directive({ selector: '[appGoHome]' }) export class GoHomeDirective { constructor() { } @HostListener('click') onClick() { console.log('Host Element Clicked'); } }
and this is my Element
<button appGoHome>test</button>
in app.modul the directive is set in declarations:
declarations: [AppComponent, RisHomeDirective],
But when i click on the Button, the directive is not firing? Whats wrong?
Posts: 1
Participants: 1
@mact972 wrote:
I HAVE A PROBLEM WHEN I IMPORT FILE IN app.module.ts,
I make ionic cordova plugin add cordova-plugin-file
npm install @ionic-native/fileand then i’m import the file in app.module.ts but i have a strange error.
SOMEONE CAN HELP ME PLEASE !!
Posts: 1
Participants: 1
@Ludolefrenchy wrote:
Hello
Attention google + will be closed from 2 April 2019 so no longer possible to use google sign-in.
if your app has the connection via google + it will remove it so you do not have a problem.enjoy
Posts: 1
Participants: 1
@Dunaan wrote:
Hello,
I would like to get the line where the checkbox is when I click on it.
HTML
<ion-row *ngFor="let ph of phrase"> <ion-col class="{{ph.class}} col"><p> {{ph.contenu}}</p></ion-col> <ion-col class="{{ph.class}} col colCenter"><ion-checkbox id="C1" (click)="getLine('{{ph.line}}');"></ion-checkbox></ion-col> <ion-col class="{{ph.class}} col colCenter"><ion-checkbox id="C2"></ion-checkbox></ion-col> <ion-col class="{{ph.class}} col colCenter"><ion-checkbox id="C3"></ion-checkbox></ion-col> <ion-col class="{{ph.class}} col colCenter"><ion-checkbox id="C4"></ion-checkbox></ion-col> <ion-col class="{{ph.class}} col colCenter"><ion-checkbox id="C5"></ion-checkbox></ion-col> </ion-row>
TS
public getLine(line : string){ alert(line); }
But the app tells me : “Error : Got interpolation ({{}}) where expression was expected…”
I don’t really understand what is the way to get back the line stocked into ph with an other method.Thank you by advance for any help.
Posts: 1
Participants: 1
@lsantaniello wrote:
I integrated OneSignal platform in my application. I successfully receive the push notifications but I’d like to show the notifies the the same layout for external and internal notifies of the app.
When I’m in the app and I receve the notify, The simple alert has been showed (similar to javascript alert).
When I’m out of the app and I receive the notify, the classic notify appears.How can I integrate the same layout inside the app? Could you please support me?
console.log("Cordova is available. PUSH Enabler has bean enabled"); var notificationReceidedCallback = function (jsonData) { console.log(jsonData); console.log('notificationReceidedCallback: ' + JSON.stringify(jsonData)); }; var notificationOpenedCallback = function (jsonData) { console.log(jsonData); console.log('notificationOpenedCallback: ' + JSON.stringify(jsonData)); }; window["plugins"].OneSignal .startInit(FIREBASE_APP_ID, FIREBASE_SENDER_ID) .handleNotificationOpened(notificationOpenedCallback) .handleNotificationReceived(notificationReceidedCallback) .endInit();
Thanks
Luca
Posts: 1
Participants: 1