Ls: no such file or directory: Error: No Java files found that extend...
More information please... For example: The command you are executing, your ionic info output, the complete build output including the error, same command output when you run it with --verbose.
View ArticlePush notification not work
What exactly did you implement? (Step by step please)What is your ionic info output?
View ArticleNode 8 and npm 5 are out - Your experience with Ionic?
@ionic/app-scripts finally released 1.3.8 with the node sass fixes! github.com ionic-team/ionic-app-scripts ionic-app-scripts - App Build Scripts for Ionic Projects So we should be fine on Windows now...
View ArticleDelete ionic 3.3.0 and work with ionic 1
Hello and thank you for your answer, can I know the equivalence on the new version? There is a link that shows old command, new command? thank you
View ArticleIonic native POST sending no data
I don't really have any reason except it makes sense to use Ionic libraries where ever I can. I will definitely try the Angular Http. Thanks!
View ArticlePush notification not work
all this tutorial https://docs.ionic.io/services/push/ from Summary to sending pushes .Here is my ionic info: global packages: @ionic/cli-utils : 1.4.0 Cordova CLI : not installed Ionic CLI : 3.4.0...
View ArticleCannot set property 'id' of null
The result: FirebaseListObservable $ref : U operator : ObserveOnOperator source : FirebaseListObservable $ref : U _isScalar : false _subscribe : function (obs) __proto__ : Observable constructor :...
View ArticleCannot set property 'id' of null
try changing return firebase.database().ref('/Bill' + billId).child(billId)to return firebase.database().ref('Bill/' + billId).child(billId);
View ArticleAfter use --prod code not work
This code not work after use --prod to build: "this.platform.registerBackButtonAction(() => { ... } import { Component, ViewChild } from '@angular/core'; import { Nav, Platform, ToastController,...
View ArticleCannot set property 'id' of null
jaydz: return firebase.database().ref('Bill/' + billId).child(billId); Same error: Cannot set property 'id' of null
View Article*ngIf fallback / default img src in Ionic
Figured it out...this is what I used in the HTML that needed the fallback image src.The fallback img is in the API call where I checked if a certain data in the JSON was there/true. -If it was there,...
View ArticleAfter use --prod code not work
"code not work" is not a good error description. How do you think we should help you now?
View ArticlePush notification not work
Your project doesn't have the android platform added. Without that, you can't even build and test for Android.
View ArticleCannot set property 'id' of null
should this.currentBill be an object? Or a string? Sounds like it may be an accidental object.also, try ensuring that billId = string;let tempId = billId.toString(); return...
View ArticleIonic native POST sending no data
Native HTTP is not a "Ionic library". Default way to do server communication is always Angular's http.
View ArticleDelete ionic 3.3.0 and work with ionic 1
https://github.com/ionic-team/ionic-cli/blob/master/CHANGELOG.md#removed-commands
View ArticleInstall ionic mac
Also probe adding -g and error iMac-de-TALLERMAC1:~ TALLERMAC1$ sudo npm install ionic@legacy -g Password: Sorry, try again. Password: /Users/TALLERMAC1/.npm-packages/bin/ionic...
View ArticleCannot set property 'id' of null
Same issue, different code: getBillDetail(billId: string): firebase.database.Reference{ let tempId = billId.toString(); return firebase.database().ref('Bill/' + tempId).child(tempId); }
View ArticleCannot set property 'id' of null
Also, try this.firebaseData.getBillDetail(this.navParams.get('billId')) .once("value", function(snapshot) {this.currentBill = snapshot.val(); this.currentBill.id = snapshot.key;} snapshot isn't...
View Article