VirtualBox

Ticket #8186: SuccessAll.txt

File SuccessAll.txt, 17.8 KB (added by Douwe Kiestra, 13 years ago)
Line 
1Java Web Start 1.6.0_26
2Using JRE version 1.6.0_26-b03 Java HotSpot(TM) Client VM
3User home directory = /home/smru
4----------------------------------------------------
5c: clear console window
6f: finalize objects on finalization queue
7g: garbage collect
8h: display this help message
9m: print memory usage
10o: trigger logging
11p: reload proxy configuration
12q: hide console
13r: reload policy configuration
14s: dump system and deployment properties
15t: dump thread list
16v: dump thread stack
170-5: set trace level to <n>
18----------------------------------------------------
19Trying to download phone app apk
20Phone app apk saved into temp file: /tmp/phoneApp.apk
21filepath: /tmp/phoneApp.apk packageName: com.google.AppInventorPhoneApp
22systemId is file:///home/smru/ignore_lang_def.dtd publicId is null
23Reading language definition DTD from jar resources.
24==== Loading form, project is OrderDroid1_0
25Preparing phone for new project
26Creating GUI...
27No zip file from server. Returning empty file map.
28WorkspaceController: starting reload of workspace
29systemId is file:///yacodeblocks/support/save_format.dtd publicId is null
30Reading save file format DTD from jar resources.
31Preparing phone for new project
32WorkspaceController: loaded Codeblocks Source, starting JSON
33WorkspaceController: workspace reload done
34Device connected: ????????????
35Device connected: 1 devices plugged in.
36CDeviceSelector: adding device ????????????
3710:30:54 E/DeviceMonitor: Adb connection Error:EOF
38Device disconnected: ????????????
39Device disconnected: 0 devices plugged in.
40CDeviceSelector: removing device ????????????
4110:30:54 E/DeviceMonitor: Connection attempts: 1
4210:30:55 E/DeviceMonitor: Connection attempts: 2
4310:30:56 E/DeviceMonitor: Connection attempts: 3
4410:30:57 E/DeviceMonitor: Connection attempts: 4
45Device connected: 3533B0C8A7F500EC
46Device connected: 1 devices plugged in.
47CDeviceSelector: adding device 3533B0C8A7F500EC
48Device selected: 3533B0C8A7F500EC
49Selecting device 3533B0C8A7F500EC
50Creating the REPL controller
51********* Actually invoking CreateAndSend
52Restarting repl controller (true)
53ReplController sending (begin (require com.google.youngandroid.runtime) (setup-repl-environment "<<" ":" "@@" "Success" "Failure" "==" ">>" '((">>" "&2")("<<" "&1")("&" "&0"))))
54**** devicesPluggedIn: 1 selectedDevice: 3533B0C8A7F500EC connectionHappy: false
55**** Trying to do restart from reinstalling the application....
56Trying to sync and install on the device...
57Uninstalled previous version of package com.google.AppInventorPhoneApp
58killing app if necessary...
59*** Executing command: am start -n com.google.AppInventorPhoneApp/.Screen1
60Repl app is now running
61ADB forward command was successfully run
62trying to establish communication
63Sent '(begin (require com.google.youngandroid.runtime) (setup-repl-environment "<<" ":" "@@" "Success" "Failure" "==" ">>" '((">>" "&2")("<<" "&1")("&" "&0"))))
64
65Sending project startup definitions
66Pushing assets to phone...
67...finished pushing assets to phone.
68Sending to phone: (process-repl-input (begin (clear-current-form)(def varShoppingCart "") (def (procSendMail) (set-and-coerce-property! 'ActivityStarter1 'DataUri (call-yail-primitive string-append (*list-for-runtime* "mailto:" "dkiestra@xs4all.nl" "?subject=A new order from OrderDroid." "&body=" "Customer Name:%0A" (get-property 'txtCustomerName 'Text) "%0A" "Customer Address:%0A" (get-property 'txtAddress 'Text) "%0A" (get-property 'txtCityState 'Text) "%0A" (get-property 'txtZip 'Text) "%0A" "Purchased Items:%0A" (get-var varShoppingCart) "%0A" "Payment Type:%0A" "COD=" (get-property 'chkCOD 'Checked) "Paid in Full=" (get-property 'chkPaidFull 'Checked) ) '( text text text text text text text text text text text text text text text text text text text text text text) "make text") 'text) (call-component-method 'ActivityStarter1 'StartActivity (*list-for-runtime*) '()) ) (do-after-form-creation (set-and-coerce-property! 'Screen1 'BackgroundColor #xFF444444 'number) (set-and-coerce-property! 'Screen1 'Scrollable #f 'boolean) (set-and-coerce-property! 'Screen1 'Title "OrderDroid 1.0" 'text) ) (define-event Screen1 Initialize() (set-this-form) (set-and-coerce-property! 'lstpItems 'Elements (call-yail-primitive make-yail-list (*list-for-runtime* "'Andy' Android Figurine" "Android Laptop Decal" "App Inventor Desktop Blocks Set") '( any any any) "make a list") 'list) ) (add-component Screen1 VerticalArrangement VirtualScreen1 (set-and-coerce-property! 'VirtualScreen1 'Width -2 'number) ) (add-component VirtualScreen1 Label lblCustomerInfoText (set-and-coerce-property! 'lblCustomerInfoText 'Text "Customer Information" 'text) (set-and-coerce-property! 'lblCustomerInfoText 'TextColor #xFFFFFFFF 'number) ) (add-component VirtualScreen1 TextBox txtCustomerName (set-and-coerce-property! 'txtCustomerName 'Hint "Enter customer's name" 'text) (set-and-coerce-property! 'txtCustomerName 'MultiLine #t 'boolean) (set-and-coerce-property! 'txtCustomerName 'Width -2 'number) ) (add-component VirtualScreen1 TextBox txtAddress (set-and-coerce-property! 'txtAddress 'Hint "Enter Address" 'text) (set-and-coerce-property! 'txtAddress 'MultiLine #t 'boolean) ) (add-component VirtualScreen1 TextBox txtCityState (set-and-coerce-property! 'txtCityState 'Hint "City, State" 'text) (set-and-coerce-property! 'txtCityState 'MultiLine #t 'boolean) ) (add-component VirtualScreen1 TextBox txtZip (set-and-coerce-property! 'txtZip 'Hint "Postal Code" 'text) (set-and-coerce-property! 'txtZip 'MultiLine #t 'boolean) ) (add-component VirtualScreen1 ListPicker lstpItems (set-and-coerce-property! 'lstpItems 'Text "Select an item" 'text) ) (define-event lstpItems AfterPicking() (set-this-form) (set-var! varShoppingCart (get-property 'lstpItems 'Selection) ) (set-and-coerce-property! 'lstpItems 'Text (get-property 'lstpItems 'Selection) 'text) ) (add-component VirtualScreen1 Button Button1 (set-and-coerce-property! 'Button1 'Text "Text for Button1" 'text) ) (add-component VirtualScreen1 CheckBox chkPaidFull (set-and-coerce-property! 'chkPaidFull 'Text "Paid in full" 'text) (set-and-coerce-property! 'chkPaidFull 'TextColor #xFFFFFFFF 'number) ) (add-component VirtualScreen1 CheckBox chkCOD (set-and-coerce-property! 'chkCOD 'Text "Cash on delivery" 'text) (set-and-coerce-property! 'chkCOD 'TextColor #xFFFFFFFF 'number) ) (add-component VirtualScreen1 Button btnSendMail (set-and-coerce-property! 'btnSendMail 'Text "Submit Order" 'text) ) (define-event btnSendMail Click() (set-this-form) (if (call-yail-primitive yail-equal? (*list-for-runtime* (get-property 'txtCustomerName 'Text) "") '( any any) "=") (begin (call-component-method 'Notifier1 'ShowMessageDialog (*list-for-runtime* "Please enter a Customer Name..." "Attention" "OK") '( text text text) ) ) (begin (if (call-yail-primitive yail-equal? (*list-for-runtime* (get-property 'txtAddress 'Text) "") '( any any) "=") (begin (call-component-method 'Notifier1 'ShowTextDialog (*list-for-runtime* "Please enter a Customer Address." "Attention") '( text text) ) ) (begin ((get-var procSendMail)) ) ) ) ) ) (add-component Screen1 Notifier Notifier1 ) (define-event Notifier1 AfterTextInput( response ) (set-this-form) (set-and-coerce-property! 'txtAddress 'Text (lexical-value response) 'text) ) (add-component Screen1 ActivityStarter ActivityStarter1 (set-and-coerce-property! 'ActivityStarter1 'Action "android.intent.action.VIEW" 'text) ) (add-component Screen1 AccelerometerSensor AccelerometerSensor1 ) (init-runtime #f) (call-Initialize-of-components 'ActivityStarter1 'txtCustomerName 'lstpItems 'txtZip 'txtCityState 'btnSendMail 'VirtualScreen1 'chkPaidFull 'AccelerometerSensor1 'Notifier1 'chkCOD 'txtAddress 'Screen1 'Button1 'lblCustomerInfoText)) "Project loading:0")
69Received from phone: "#|kawa:1|# "
70ReplController sending (process-repl-input (begin (clear-current-form)(def varShoppingCart "") (def (procSendMail) (set-and-coerce-property! 'ActivityStarter1 'DataUri (call-yail-primitive string-append (*list-for-runtime* "mailto:" "dkiestra@xs4all.nl" "?subject=A new order from OrderDroid." "&body=" "Customer Name:%0A" (get-property 'txtCustomerName 'Text) "%0A" "Customer Address:%0A" (get-property 'txtAddress 'Text) "%0A" (get-property 'txtCityState 'Text) "%0A" (get-property 'txtZip 'Text) "%0A" "Purchased Items:%0A" (get-var varShoppingCart) "%0A" "Payment Type:%0A" "COD=" (get-property 'chkCOD 'Checked) "Paid in Full=" (get-property 'chkPaidFull 'Checked) ) '( text text text text text text text text text text text text text text text text text text text text text text) "make text") 'text) (call-component-method 'ActivityStarter1 'StartActivity (*list-for-runtime*) '()) ) (do-after-form-creation (set-and-coerce-property! 'Screen1 'BackgroundColor #xFF444444 'number) (set-and-coerce-property! 'Screen1 'Scrollable #f 'boolean) (set-and-coerce-property! 'Screen1 'Title "OrderDroid 1.0" 'text) ) (define-event Screen1 Initialize() (set-this-form) (set-and-coerce-property! 'lstpItems 'Elements (call-yail-primitive make-yail-list (*list-for-runtime* "'Andy' Android Figurine" "Android Laptop Decal" "App Inventor Desktop Blocks Set") '( any any any) "make a list") 'list) ) (add-component Screen1 VerticalArrangement VirtualScreen1 (set-and-coerce-property! 'VirtualScreen1 'Width -2 'number) ) (add-component VirtualScreen1 Label lblCustomerInfoText (set-and-coerce-property! 'lblCustomerInfoText 'Text "Customer Information" 'text) (set-and-coerce-property! 'lblCustomerInfoText 'TextColor #xFFFFFFFF 'number) ) (add-component VirtualScreen1 TextBox txtCustomerName (set-and-coerce-property! 'txtCustomerName 'Hint "Enter customer's name" 'text) (set-and-coerce-property! 'txtCustomerName 'MultiLine #t 'boolean) (set-and-coerce-property! 'txtCustomerName 'Width -2 'number) ) (add-component VirtualScreen1 TextBox txtAddress (set-and-coerce-property! 'txtAddress 'Hint "Enter Address" 'text) (set-and-coerce-property! 'txtAddress 'MultiLine #t 'boolean) ) (add-component VirtualScreen1 TextBox txtCityState (set-and-coerce-property! 'txtCityState 'Hint "City, State" 'text) (set-and-coerce-property! 'txtCityState 'MultiLine #t 'boolean) ) (add-component VirtualScreen1 TextBox txtZip (set-and-coerce-property! 'txtZip 'Hint "Postal Code" 'text) (set-and-coerce-property! 'txtZip 'MultiLine #t 'boolean) ) (add-component VirtualScreen1 ListPicker lstpItems (set-and-coerce-property! 'lstpItems 'Text "Select an item" 'text) ) (define-event lstpItems AfterPicking() (set-this-form) (set-var! varShoppingCart (get-property 'lstpItems 'Selection) ) (set-and-coerce-property! 'lstpItems 'Text (get-property 'lstpItems 'Selection) 'text) ) (add-component VirtualScreen1 Button Button1 (set-and-coerce-property! 'Button1 'Text "Text for Button1" 'text) ) (add-component VirtualScreen1 CheckBox chkPaidFull (set-and-coerce-property! 'chkPaidFull 'Text "Paid in full" 'text) (set-and-coerce-property! 'chkPaidFull 'TextColor #xFFFFFFFF 'number) ) (add-component VirtualScreen1 CheckBox chkCOD (set-and-coerce-property! 'chkCOD 'Text "Cash on delivery" 'text) (set-and-coerce-property! 'chkCOD 'TextColor #xFFFFFFFF 'number) ) (add-component VirtualScreen1 Button btnSendMail (set-and-coerce-property! 'btnSendMail 'Text "Submit Order" 'text) ) (define-event btnSendMail Click() (set-this-form) (if (call-yail-primitive yail-equal? (*list-for-runtime* (get-property 'txtCustomerName 'Text) "") '( any any) "=") (begin (call-component-method 'Notifier1 'ShowMessageDialog (*list-for-runtime* "Please enter a Customer Name..." "Attention" "OK") '( text text text) ) ) (begin (if (call-yail-primitive yail-equal? (*list-for-runtime* (get-property 'txtAddress 'Text) "") '( any any) "=") (begin (call-component-method 'Notifier1 'ShowTextDialog (*list-for-runtime* "Please enter a Customer Address." "Attention") '( text text) ) ) (begin ((get-var procSendMail)) ) ) ) ) ) (add-component Screen1 Notifier Notifier1 ) (define-event Notifier1 AfterTextInput( response ) (set-this-form) (set-and-coerce-property! 'txtAddress 'Text (lexical-value response) 'text) ) (add-component Screen1 ActivityStarter ActivityStarter1 (set-and-coerce-property! 'ActivityStarter1 'Action "android.intent.action.VIEW" 'text) ) (add-component Screen1 AccelerometerSensor AccelerometerSensor1 ) (init-runtime #f) (call-Initialize-of-components 'ActivityStarter1 'txtCustomerName 'lstpItems 'txtZip 'txtCityState 'btnSendMail 'VirtualScreen1 'chkPaidFull 'AccelerometerSensor1 'Notifier1 'chkCOD 'txtAddress 'Screen1 'Button1 'lblCustomerInfoText)) "Project loading:0")
71Sent '(process-repl-input (begin (clear-current-form)(def varShoppingCart "") (def (procSendMail) (set-and-coerce-property! 'ActivityStarter1 'DataUri (call-yail-primitive string-append (*list-for-runtime* "mailto:" "dkiestra@xs4all.nl" "?subject=A new order from OrderDroid." "&body=" "Customer Name:%0A" (get-property 'txtCustomerName 'Text) "%0A" "Customer Address:%0A" (get-property 'txtAddress 'Text) "%0A" (get-property 'txtCityState 'Text) "%0A" (get-property 'txtZip 'Text) "%0A" "Purchased Items:%0A" (get-var varShoppingCart) "%0A" "Payment Type:%0A" "COD=" (get-property 'chkCOD 'Checked) "Paid in Full=" (get-property 'chkPaidFull 'Checked) ) '( text text text text text text text text text text text text text text text text text text text text text text) "make text") 'text) (call-component-method 'ActivityStarter1 'StartActivity (*list-for-runtime*) '()) ) (do-after-form-creation (set-and-coerce-property! 'Screen1 'BackgroundColor #xFF444444 'number) (set-and-coerce-property! 'Screen1 'Scrollable #f 'boolean) (set-and-coerce-property! 'Screen1 'Title "OrderDroid 1.0" 'text) ) (define-event Screen1 Initialize() (set-this-form) (set-and-coerce-property! 'lstpItems 'Elements (call-yail-primitive make-yail-list (*list-for-runtime* "'Andy' Android Figurine" "Android Laptop Decal" "App Inventor Desktop Blocks Set") '( any any any) "make a list") 'list) ) (add-component Screen1 VerticalArrangement VirtualScreen1 (set-and-coerce-property! 'VirtualScreen1 'Width -2 'number) ) (add-component VirtualScreen1 Label lblCustomerInfoText (set-and-coerce-property! 'lblCustomerInfoText 'Text "Customer Information" 'text) (set-and-coerce-property! 'lblCustomerInfoText 'TextColor #xFFFFFFFF 'number) ) (add-component VirtualScreen1 TextBox txtCustomerName (set-and-coerce-property! 'txtCustomerName 'Hint "Enter customer's name" 'text) (set-and-coerce-property! 'txtCustomerName 'MultiLine #t 'boolean) (set-and-coerce-property! 'txtCustomerName 'Width -2 'number) ) (add-component VirtualScreen1 TextBox txtAddress (set-and-coerce-property! 'txtAddress 'Hint "Enter Address" 'text) (set-and-coerce-property! 'txtAddress 'MultiLine #t 'boolean) ) (add-component VirtualScreen1 TextBox txtCityState (set-and-coerce-property! 'txtCityState 'Hint "City, State" 'text) (set-and-coerce-property! 'txtCityState 'MultiLine #t 'boolean) ) (add-component VirtualScreen1 TextBox txtZip (set-and-coerce-property! 'txtZip 'Hint "Postal Code" 'text) (set-and-coerce-property! 'txtZip 'MultiLine #t 'boolean) ) (add-component VirtualScreen1 ListPicker lstpItems (set-and-coerce-property! 'lstpItems 'Text "Select an item" 'text) ) (define-event lstpItems AfterPicking() (set-this-form) (set-var! varShoppingCart (get-property 'lstpItems 'Selection) ) (set-and-coerce-property! 'lstpItems 'Text (get-property 'lstpItems 'Selection) 'text) ) (add-component VirtualScreen1 Button Button1 (set-and-coerce-property! 'Button1 'Text "Text for Button1" 'text) ) (add-component VirtualScreen1 CheckBox chkPaidFull (set-and-coerce-property! 'chkPaidFull 'Text "Paid in full" 'text) (set-and-coerce-property! 'chkPaidFull 'TextColor #xFFFFFFFF 'number) ) (add-component VirtualScreen1 CheckBox chkCOD (set-and-coerce-property! 'chkCOD 'Text "Cash on delivery" 'text) (set-and-coerce-property! 'chkCOD 'TextColor #xFFFFFFFF 'number) ) (add-component VirtualScreen1 Button btnSendMail (set-and-coerce-property! 'btnSendMail 'Text "Submit Order" 'text) ) (define-event btnSendMail Click() (set-this-form) (if (call-yail-primitive yail-equal? (*list-for-runtime* (get-property 'txtCustomerName 'Text) "") '( any any) "=") (begin (call-component-method 'Notifier1 'ShowMessageDialog (*list-for-runtime* "Please enter a Customer Name..." "Attention" "OK") '( text text text) ) ) (begin (if (call-yail-primitive yail-equal? (*list-for-runtime* (get-property 'txtAddress 'Text) "") '( any any) "=") (begin (call-component-method 'Notifier1 'ShowTextDialog (*list-for-runtime* "Please enter a Customer Address." "Attention") '( text text) ) ) (begin ((get-var procSendMail)) ) ) ) ) ) (add-component Screen1 Notifier Notifier1 ) (define-event Notifier1 AfterTextInput( response ) (set-this-form) (set-and-coerce-property! 'txtAddress 'Text (lexical-value response) 'text) ) (add-component Screen1 ActivityStarter ActivityStarter1 (set-and-coerce-property! 'ActivityStarter1 'Action "android.intent.action.VIEW" 'text) ) (add-component Screen1 AccelerometerSensor AccelerometerSensor1 ) (init-runtime #f) (call-Initialize-of-components 'ActivityStarter1 'txtCustomerName 'lstpItems 'txtZip 'txtCityState 'btnSendMail 'VirtualScreen1 'chkPaidFull 'AccelerometerSensor1 'Notifier1 'chkCOD 'txtAddress 'Screen1 'Button1 'lblCustomerInfoText)) "Project loading:0")
72
73Sending to phone: (process-repl-input (newline) "Confirmation:0")
74ReplController sending (process-repl-input (newline) "Confirmation:0")
75Sent '(process-repl-input (newline) "Confirmation:0")
76
77Received from phone: "The blocks editor (or telnet client) is connected to the phone."
78Received from phone: "
79#|kawa:2|# "
80Received from phone: "
81"
82Received from phone: "#|kawa:3|# "
83Received from phone: "
84"
85Received from phone: "#|kawa:4|# "
86Received from phone: "<<Project loading:0@@Success==>>"
87Ignored "#|kawa:1|# The blocks editor (or telnet client) is connected to the phone.
88#|kawa:2|#
89#|kawa:3|#
90#|kawa:4|# "
91Received from phone: "
92"
93Received from phone: "<<Confirmation:0@@Success==>>"

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy