Posts by Welington Fidelis • 18 points
5 posts
-
0
votes4
answers1242
viewsA: Error with "Cordova run android"
Tries to edit the bashrc file as sudo: sudo vim ~/. bashrc At the end of the file, put: export ANDROID_HOME=$HOME/Android/Sdk export PATH=$PATH:$ANDROID_HOME/tools:/Platform-tools/:/build-tools/ In…
-
0
votes1
answer1570
viewsA: Random numbers within a vector in C
'Cause you don’t have something like that : main(){ srand(time(NULL)); int vetor[vMax]; for(int i = 0; i < vMax; i++){ vetor[i] = rand() % 10 + 1; } }…
-
0
votes1
answer39
viewsA: Sqlite Ionic 3 - Problem saving SELECT responses to an array
I found a solution, I’m just not sure it’s the best way. I made the function work with answers in "promise", where the return of the function is a RESULT, type called with ajax. getListId(){ return…
-
0
votes1
answer39
viewsQ: Sqlite Ionic 3 - Problem saving SELECT responses to an array
I’m on a project using Ionic 3 and need to manipulate data in sqlite. The current problem is the following, I run a SELECT in a table and store the return in an array (this.list_off) created in the…
-
0
votes1
answer88
viewsQ: Ionic - Custom buttons in google maps
I’m using Ionic to create an app where I use the google maps api I need to put some buttons floating on this map, as in the image. I found a piece of code that seems to have worked for the person,…