Posts by caioyassoyama • 161 points
5 posts
-
3
votes1
answer596
viewsA: Failed to install Olamundo.apk on device 'Emulator-5554': EOF
This should happen because the emulator (in most cases) is too slow, and when adb finishes installing and sends the commands to start the installed app the emulator is not ready yet and therefore…
-
1
votes2
answers128
viewsA: How to implement the verifyDeveloperPayload method?
Developerpayload is just another way to make the whole purchase process more secure. If it is not implemented, you are dropping one more check to see if the request is true. Would be letting a user…
-
1
votes1
answer254
viewsA: Toast validation and seat insertion
Some tips: In the method GetActionValues(View objView) two checks are being made in sequence, if the two fields (Name and Customername) are invalid, one Toast will be sent on top of the other, and…
-
1
votes1
answer1710
viewsA: Logcat - Does not appear
Try to open the DDMS perspective (top right), and select the device you want to view the Logcat Output. Example: selecting the device "015DC1F50600" to display the Logcat.…
androidanswered caioyassoyama 161 -
2
votes4
answers7507
viewsA: Arduino and Android Bluetooth Connection (Java) - Inputstream storing old data
Maybe what you need is to "wipe" the data from Inputstream before calling the read(). The method available() checks if it has "dirt", and returns the number of bytes that can be "dropped". int…