This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "to":"/topics/client_android", | |
| "notification" : { | |
| "body" : "great match!", | |
| "icon" : "ic_silhoette", | |
| "color":"#99ff99", | |
| "title": "Title" | |
| }, | |
| "data":{ "title":"" }, | |
| "priority":"high" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "workbench.startupEditor": "newUntitledFile", | |
| "editor.detectIndentation": false, | |
| "editor.tabSize": 2, | |
| "php.validate.executablePath": "C:/xampp/php/" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ionic cordova run android --target 192.168.144.101:5555 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ionic config set -g backend pro | |
| # and then | |
| ionic login | |
| # make your ssh key and config | |
| # run resources again | |
| ionic cordova resources |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ cd ~ | |
| $ git clone https://github.com/facebook/watchman.git | |
| $ cd watchman/ | |
| $ git checkout v4.7.0 | |
| $ sudo apt-get install -y autoconf automake build-essential python-dev | |
| $ ./autogen.sh | |
| $ ./configure | |
| $ make | |
| $ sudo make install |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| In IOS the input padding works correctly, since in Android there is a | |
| default padding and you need to set it as | |
| ==>>> paddingBottom: 0 | |
| This solves the problem of padding. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Fixed for me | |
| #Run this | |
| echo fs.inotify.max_user_watches = 524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| react-native bundle \ | |
| --platform android \ | |
| --dev false \ | |
| --entry-file index.js \ | |
| --bundle-output android/app/src/main/assets/index.android.bundle \ | |
| --assets-dest android/app/src/main/res/ \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Win | |
| cd android && gradlew clean && cd .. && react-native run-android | |
| #osX | |
| cd android && bash gradlew clean && cd .. && react-native run-android |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "colaboradores", | |
| - "version": "1.7.7", | |
| + "version": "2.0", //"2.0" is not a valid version as defined by Semantic Versioning. Changing it to "2.0.0" should solve your issue. | |
| "private": true, | |
| "license": "ISC", | |
| "scripts": {} | |
| } | |