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
adb help // List all comands | |
== Adb Server | |
adb kill-server | |
adb start-server | |
== Adb Reboot | |
adb reboot | |
adb reboot recovery | |
adb reboot-bootloader |
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
ERROR Invariant Violation: inputRange must be monotonically non-decreasing 0,-11.428571428571445,188.57142857142856 | |
This error is located at: | |
in CellRenderer (at VirtualizedList.js:807) | |
in AndroidHorizontalScrollContentView (at ScrollView.js:1107) | |
in AndroidHorizontalScrollView (at ScrollView.js:1238) | |
in ScrollView (at ScrollView.js:1264) | |
in ScrollView (at VirtualizedList.js:1250) | |
in VirtualizedListContextProvider (at VirtualizedList.js:1080) | |
in VirtualizedList (at FlatList.js:620) |
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
INITIATING CONNECTION Nov 26 01:33:38.930 host:smtp.gmail.com -- port:587 -- socket:0x0 -- thread:0x60000289d7c0 | |
CONNECTED Nov 26 01:33:38.973 [kCFStreamSocketSecurityLevelNone] -- host:smtp.gmail.com -- port:587 -- socket:0x6000016cb900 -- thread:0x60000289d7c0 | |
READ Nov 26 01:33:40.544 [kCFStreamSocketSecurityLevelNone] -- host:smtp.gmail.com -- port:587 -- socket:0x6000016cb900 -- thread:0x60000289d7c0 | |
220 smtp.gmail.com ESMTP j7sm4043386pfu.164 - gsmtp | |
WROTE Nov 26 01:33:40.581 [kCFStreamSocketSecurityLevelNone] -- host:smtp.gmail.com -- port:587 -- socket:0x6000016cb900 -- thread:0x60000289d7c0 | |
EHLO [192.168.1.159] |
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
{ | |
"version": "0.0.1", | |
"configurations": [ | |
{ | |
"name": "Flutter Debug", | |
"request": "launch", | |
"type": "dart", | |
"flutterMode": "debug", | |
"program": "lib/main_dev.dart", | |
"args": ["--flavor", "dev"] |
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
data type | descriptions | zero-value | |
---|---|---|---|
bool | bool is the set of boolean values. It can store set of untyped boolean value `true` or `false`. | false | |
uint8 | uint8 is the set of all unsigned 8-bit integers. Range: 0 through 255. | 0 | |
uint16 | uint16 is the set of all unsigned 16-bit integers. Range: 0 through 65535. | 0 | |
uint32 | uint32 is the set of all unsigned 32-bit integers. Range: 0 through 4294967295. | 0 | |
uint64 | uint64 is the set of all unsigned 64-bit integers. Range: 0 through 18446744073709551615. | 0 | |
int8 | int8 is the set of all signed 8-bit integers. Range: -128 through 127. | ||
int16 | int16 is the set of all signed 16-bit integers. Range: -32768 through 32767. | 0 | |
int32 | int32 is the set of all signed 32-bit integers. Range: -2147483648 through 2147483647. | 0 | |
int64 | int64 is the set of all signed 64-bit integers. Range: -9223372036854775808 through 9223372036854775807. | 0 |