Posts by Maico Rossarola • 41 points
4 posts
-
2
votes1
answer210
viewsQ: Remove the notification "App is running in background"
I fixed my app to work in the background with android 8 however many customers came to uninstall the application because of the permanent notification "App is running in background". I need my…
-
0
votes4
answers525
viewsA: Write inside a div with a function
var soma = 0; $(document).ready(function () { $.get(file, function (data) { ivps = parseDataToIvp(data); let fIvps = ivps.filter(i => i.idleTime < -60) fIvps.map(i =>…
-
0
votes1
answer45
viewsQ: Grab image from the gallery
Manifest <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <uses-permission…
androidasked Maico Rossarola 41 -
1
votes2
answers197
viewsA: How to receive an array of results in a variable
Model public function get_all($limit = NULL, $offset = NULL) { $this->db->select('cli_id, cli_nome'); $this->db->from("cliente"); $query = $this->db->get(); $data =…