Posts by i9on i9on • 147 points
23 posts
-
0
votes2
answers1747
viewsA: Error CORS api Post Office
I had the same problem with the ZIP code consultation, I decided doing it this way, it might help you there: export class ConsultaCepService { constructor(private backend: HttpXhrBackend) { }…
-
0
votes1
answer91
viewsA: Ionic app signed does not install manually
If you had the old unsigned version on mobile, vc should delete and then after that can install the signed version.
-
1
votes1
answer395
views -
0
votes1
answer319
viewsA: Only test ads work on Admob
Buddy, now the ad only works with the signed apk, don’t worry, when publishing your banner will appear in the app. follows an example to help you: admob(){ const bannerConfig: AdMobFreeBannerConfig…
-
0
votes2
answers289
views -
0
votes1
answer70
viewsA: Admob banner on Ionic no longer appears when I place the Id generated by the site
Friend, now only appears when you sign the apk, IE, rest assured that when you publish the banner will appear, I had the same problem.
-
0
votes2
answers117
viewsA: HOW TO MAKE A BOOT APPEAR ONLY TO THE ADMINISTRATOR
Do with ngIf, follow example of the button appearing for user of type administrate and the other only appearing for who is not administrator: <ng-container *ngIf = "usuario === 'Administrador'…
-
0
votes2
answers160
viewsA: Hide element when selected by another Select
You can set an ngChange for when the value of the first select is changed. And in the controller you create the ng-change function to list in the second select. <select select-normal…
-
-1
votes1
answer239
views -
1
votes0
answers79
viewsQ: create and write with Cordova file Ionic plugin
I am trying to write to a file using the Cordova file, as I cannot write straight to the Assets (which is read-only), I move the file and try to write, but it falls in the catch erro2.…
-
0
votes4
answers519
viewsA: Remove last space from a variable
using trim doesn’t solve? <?php echo trim(' Removendo Espaços '); //Resultado: 'Removendo Espaços' ?>
-
1
votes0
answers194
viewsQ: Cordova-pdf-Generator Ionic plugin
I use the c plugin in Ionic to generate a pdf type file, but notice in the example below the writing is html. Does it have a way to instead I generate the pdf generate an html file? import {…
-
0
votes0
answers274
viewsQ: Document.getElementById no Ionic
I have an application developed with Ionic 3 and would like to know if this type of implementation should work. I have an html file with a div with id = corpoId. And in the implementation I open the…
-
1
votes1
answer452
viewsQ: Javascript filter
I have the script below that aims to search for the text of the blocks, but the search is performed only until the first paragraph, then does not find the word, for example: search by coast and…
-
0
votes2
answers655
viewsQ: How to run the method only after the previous function has ended
I have the code below, but the method showVideo() is executed and follows the execution at the same time of the code below it, without waiting for the showVideo() is due to simultaneous execution…
-
1
votes1
answer202
viewsA: ADMOB free Advertising award-winning video does not work
After a lot of tests and a lot of searching for this problem, I was able to solve it. Using the type of award-winning video ad as a test doesn’t always have a video to be shown by admob, I know that…
-
-1
votes1
answer202
viewsQ: ADMOB free Advertising award-winning video does not work
I have a problem with showing ads like video admob free, I have other types of advertising and it works 100%. I know you have some more current versions of admob free, but I would like to resolve it…
-
-2
votes1
answer83
viewsQ: Creation of JSON with numeral
I would like to create a JSON like this (this is only a part), I always create the object with the value, but I can’t do it this way using the 200 as an object: path.get.response = new Object()…
-
0
votes1
answer59
viewsA: Click on an item and send to the specific page
export class HomePage { opcoes: Array<any> = []; .... } constructor() { this.opcoes.push({name:'Carros',function:'novoCarro' });…
-
1
votes1
answer335
viewsA: How to navigate on Ionic tables
Put the name to the tab <ion-tabs #myTabs> @ViewChild('myTabs') tabRef: Tabs; this.tabRef.select(1); //1 é o índice da tab
-
0
votes1
answer688
viewsA: Corrupted Ionic apk
Solution: In android studio I updated the sdk and when generating the signed apk I used this version: C: Users xxxx Appdata Local Android Sdk build-tools 27.0.3 That settled it for me.
-
2
votes1
answer688
viewsQ: Corrupted Ionic apk
I have an app published in the playstore, made with Ionic 3. I changed the machine did the installation again and tried to build the app with --release --Prod to sign the apk and see if everything…
-
1
votes1
answer247
viewsQ: Hide image from a button
I have an ngfor of buttons with certain images, but I want that image to appear initially with the black color and only when clicking on the image appears the image. What would my class look like in…