Titanium JIRA Archive
Appcelerator Community (AC)

[AC-416] ListView with a set of image templates, crashing the app

GitHub Issuen/a
TypeBug
Priorityn/a
StatusClosed
ResolutionInvalid
Resolution Date2015-11-05T09:43:37.000+0000
Affected Version/sn/a
Fix Version/sn/a
Componentsn/a
Labelsandroid
ReporterPeter Ladis
AssigneeShak Hossain
Created2015-08-22T01:38:37.000+0000
Updated2015-11-05T09:43:37.000+0000

Description

The exact same code works without issue on IOS...however on android we eventually run out to memory. I am using scaled down images to try and alleviate the issue but its the same. Any issues on how to solve this We have a feed sort of like Facebook. Please advise

Comments

  1. Rakhi Mitro 2015-08-22

    Hello [~peterladis], We tested your issue in our environment. Its working as expected. Can you Please attach your test code,logs & let us know. *Test Environments:* CLI Version = 4.0.1 Titanium SDK Version = 4.1.0.GA Android: Google Galaxy Nexus - 4.1.1 - API 16 - 720x1280 Appc Studio: Appcelerator Studio, build: 4.1.0.201507140915 Device: Nexus 7,Android Version:5.1.1 *Test Code:* app.js
       var win = Ti.UI.createWindow({backgroundColor: 'white'});
       
       // Create a custom template that displays an image on the left, 
       // then a title next to it with a subtitle below it.
       var myTemplate = {
           childTemplates: [
               {                            // Image justified left
                   type: 'Ti.UI.ImageView', // Use an image view for the image
                   bindId: 'pic',           // Maps to a custom pic property of the item data
                   properties: {            // Sets the image view  properties
                       width: '50dp', height: '50dp', left: 0
                   }
               },
               {                            // Title 
                   type: 'Ti.UI.Label',     // Use a label for the title 
                   bindId: 'info',          // Maps to a custom info property of the item data
                   properties: {            // Sets the label properties
                       color: 'black',
                       font: { fontFamily:'Arial', fontSize: '20dp', fontWeight:'bold' },
                       left: '60dp', top: 0,
                   }
               },
               {                            // Subtitle
                   type: 'Ti.UI.Label',     // Use a label for the subtitle
                   bindId: 'es_info',       // Maps to a custom es_info property of the item data
                   properties: {            // Sets the label properties
                       color: 'gray',
                       font: { fontFamily:'Arial', fontSize: '14dp' },
                       left: '60dp', top: '25dp',
                   }
               }
           ]
       };
       
       var listView = Ti.UI.createListView({
           // Maps myTemplate dictionary to 'template' string
           templates: { 'template': myTemplate },
           // Use 'template', that is, the myTemplate dict created earlier
           // for all items as long as the template property is not defined for an item.
           defaultItemTemplate: 'template'
       });
       var sections = [];
       
       var fruitSection = Ti.UI.createListSection({ headerTitle: 'Fruits / Frutas'});
       var fruitDataSet = [
           // the text property of info maps to the text property of the title label
           // the text property of es_info maps to text property of the subtitle label
           // the image property of pic maps to the image property of the image view
           { info: {text: 'Apple'}, es_info: {text: 'Manzana'}, pic: {image: 'KS_nav_ui.png'}},
           { info: {text: 'Banana'}, es_info: {text: 'Banana'}, pic: {image: 'KS_nav_ui.png'}},
           { info: {text: 'Banana'}, es_info: {text: 'Banana'}, pic: {image: 'KS_nav_ui.png'}},
           { info: {text: 'Banana'}, es_info: {text: 'Banana'}, pic: {image: 'KS_nav_ui.png'}},
           { info: {text: 'Banana'}, es_info: {text: 'Banana'}, pic: {image: 'KS_nav_ui.png'}},
           { info: {text: 'Banana'}, es_info: {text: 'Banana'}, pic: {image: 'KS_nav_ui.png'}},
           { info: {text: 'Banana'}, es_info: {text: 'Banana'}, pic: {image: 'KS_nav_ui.png'}},
           { info: {text: 'Banana'}, es_info: {text: 'Banana'}, pic: {image: 'KS_nav_ui.png'}},
           { info: {text: 'Apple'}, es_info: {text: 'Manzana'}, pic: {image: 'KS_nav_ui.png'}},
           { info: {text: 'Banana'}, es_info: {text: 'Banana'}, pic: {image: 'KS_nav_ui.png'}},
           { info: {text: 'Banana'}, es_info: {text: 'Banana'}, pic: {image: 'KS_nav_ui.png'}},
           { info: {text: 'Banana'}, es_info: {text: 'Banana'}, pic: {image: 'KS_nav_ui.png'}},
           { info: {text: 'Banana'}, es_info: {text: 'Banana'}, pic: {image: 'KS_nav_ui.png'}},
           { info: {text: 'Banana'}, es_info: {text: 'Banana'}, pic: {image: 'KS_nav_ui.png'}},
           { info: {text: 'Banana'}, es_info: {text: 'Banana'}, pic: {image: 'KS_nav_ui.png'}},
           { info: {text: 'Banana'}, es_info: {text: 'Banana'}, pic: {image: 'KS_nav_ui.png'}},
           { info: {text: 'Banana'}, es_info: {text: 'Banana'}, pic: {image: 'KS_nav_ui.png'}},
           { info: {text: 'Banana'}, es_info: {text: 'Banana'}, pic: {image: 'KS_nav_ui.png'}},
           { info: {text: 'Banana'}, es_info: {text: 'Banana'}, pic: {image: 'KS_nav_ui.png'}},
           { info: {text: 'Banana'}, es_info: {text: 'Banana'}, pic: {image: 'KS_nav_ui.png'}},
           { info: {text: 'Banana'}, es_info: {text: 'Banana'}, pic: {image: 'KS_nav_ui.png'}},
           { info: {text: 'Banana'}, es_info: {text: 'Banana'}, pic: {image: 'KS_nav_ui.png'}},
           { info: {text: 'Apple'}, es_info: {text: 'Manzana'}, pic: {image: 'KS_nav_ui.png'}},
           { info: {text: 'Banana'}, es_info: {text: 'Banana'}, pic: {image: 'KS_nav_ui.png'}},
           { info: {text: 'Banana'}, es_info: {text: 'Banana'}, pic: {image: 'KS_nav_ui.png'}},
           { info: {text: 'Banana'}, es_info: {text: 'Banana'}, pic: {image: 'KS_nav_ui.png'}},
           { info: {text: 'Banana'}, es_info: {text: 'Banana'}, pic: {image: 'KS_nav_ui.png'}},
           { info: {text: 'Banana'}, es_info: {text: 'Banana'}, pic: {image: 'KS_nav_ui.png'}},
           { info: {text: 'Banana'}, es_info: {text: 'Banana'}, pic: {image: 'KS_nav_ui.png'}},
           { info: {text: 'Banana'}, es_info: {text: 'Banana'}, pic: {image: 'KS_nav_ui.png'}},
       ];
       fruitSection.setItems(fruitDataSet);
       sections.push(fruitSection);
       
       listView.setSections(sections);
       win.add(listView);
       win.open();
       
    Thanks
  2. Peter Ladis 2015-08-22

    Here is my template: FeedService.prototype.messagetemplateImage = function(){ var myTemplate = { bindId: 'parentview', properties: {height: 0, selectedBackgroundColor:$Class.MainBackground, backgroundColor:$Class.MainBackground }, childTemplates: [ { type: 'Ti.UI.View', // Use an image view for the image bindId: 'messageview', properties: { selectedBackgroundColor:$Class.PrimaryColor, right:5, left:5, height: 0, borderRadius:4, backgroundColor:$Class.White, borderColor:$Class.DarkGrey, borderWidth:1 }, childTemplates: [ ///Main Child Tempplates { type: 'Ti.UI.View', // Use an image view for the image bindId: 'authorView', // Maps to a custom pic property of the item data properties: { // Sets the image view properties height:'60', top:0 }, childTemplates: [ //Author View { type: 'Ti.UI.ImageView', // Use a label for the title bindId: 'author_image', // Maps to a custom title property of the item data properties: { // Sets the label properties height:40, width:40, left: 10, backgroundImage:$Class.Avatar, borderRadius:4 } }, authorLabel(), authorTime(), { // Title type: 'Ti.UI.Button', // Use a label for the title bindId: 'edit_carrot', // Maps to a custom title property of the item data properties: { // Sets the label properties right:0, top:0, width:35, heigth:35, opacity:.4, backgroundImage:$Class.CaretDown, visible:false, zIndex:20, feeditem:'', parentWindow:'' }, events:{ click:editHandler } } ] }, { type: 'Ti.UI.View', // Use an image view for the image bindId: 'mainContentView', // Maps to a custom pic property of the item data properties: { // Sets the image view properties top:60, bottom:likeBarH }, childTemplates: [ { type: 'Ti.UI.Label', // IOS: TiStyledlabelLabel bindId: 'content_text', // Maps to a custom title property of the item data properties: { // Sets the label properties left:15, right:15, height: Ti.UI.SIZE || 'auto', scrollable:false, autoLink:Titanium.UI.AUTOLINK_URLS, editable:false, zIndex:25, color : $Class.LightBlack, top:0 }, events:{ click:commentsEvent }, { type: 'Ti.UI.View', // Use an image view for the image bindId: 'content_image_view', // Maps to a custom pic property of the item data properties: { // Sets the image view properties backgroundColor:'transparent', }, childTemplates: [ { type: 'Ti.UI.ScrollableView', bindId: 'content_image', properties: { showPagingControl:false, pagingControlColor:'transparent', pagingControlHeight:0, width:'95%' } }, { type: 'Ti.UI.View', // Use an image view for the image bindId: 'content_image_panel', // Maps to a custom pic property of the item data properties: { // Sets the image view properties backgroundColor:'transparent', zIndex:20 } //, //events:{ //click:commentsEvent //} } ] }; ] }, { type: 'Ti.UI.View', // Use an image view for the image bindId: 'likeBarView', // Maps to a custom pic property of the item data properties: { // Sets the image view properties height:likeBarH, bottom:0 }, childTemplates: [ ContentMainLikeTemplate() ] } ] } ]}; return myTemplate;
  3. Peter Ladis 2015-08-22

    FYI..al my images are remote URL that are sized 240 by 240
  4. Peter Ladis 2015-08-22

    Here is a copy of my console log...I even took out the code that loads the image and STILL get an process memory issue...it happens when i scroll down to the 200 element..and then scroll back up Appcelerator Command-Line Interface, version 4.1.2 Copyright (c) 2014-2015, Appcelerator, Inc. All Rights Reserved. TRACE | __command__ search paths: [ "/Users/pladis/.appcelerator/install/4.1.2/package", "/Users/pladis/.appcelerator/install/4.1.2/package/node_modules", "/Applications/Appcelerator Studio/AppceleratorStudio.app/Contents/MacOS/node_modules", "/Applications/Appcelerator Studio/AppceleratorStudio.app/Contents/node_modules", "/Applications/Appcelerator Studio/AppceleratorStudio.app/node_modules", "/Applications/Appcelerator Studio/node_modules", "/Applications/node_modules", "/node_modules", "/Users/pladis/.appcelerator/.npm/lib/node_modules" ] DEBUG | [PLUGIN-LOAD] 0ms /Users/pladis/.appcelerator/install/4.1.2/package/appc.js DEBUG | [PLUGIN-LOAD] 359ms /Users/pladis/.appcelerator/install/4.1.2/package/node_modules/appc-cli-titanium/appc.js DEBUG | [PLUGIN-LOAD] 0ms /Users/pladis/.appcelerator/install/4.1.2/package/node_modules/arrow/appc.js log level set to "trace" executing command "run" set environment to {"registry":"https://software.appcelerator.com","security":"https://security.appcelerator.com","baseurl":"https://platform.appcelerator.com"} checking credentials for existing session Attempting to load session info from config file check if session is invalidated session expiry 1440339381696 false Arrow Cloud config file: /Users/pladis/.acs found Arrow Cloud login { mid: '87522c48aa9ee8f7962f5617cd32a7828d13f42d', publishPort: 443, publishHost: 'https://admin.cloudapp-enterprise.appcelerator.com', username: 'peter@lilypadsolutions.com', cookie: [ 'connect.sid=s%3Apft4bf0CvjKsNQdVz9a11liK.lTVWC%2FFc5IBLE6wt81Q0%2FbQd7lKLUzg73ve8hXIVtvk; Path=/; Expires=Sun, 23 Aug 2015 14:16:25 GMT; HttpOnly' ], defaultEP: { publishHost: 'https://admin.cloudapp-enterprise.appcelerator.com', publishPort: 443 } } , checking nodeACSEndpoint= https://admin.cloudapp-enterprise.appcelerator.com Arrow Cloud cookie expiry [ 1440339385000 ] session already loaded in opts.session getCredentials() session: { "ipaddress": "10.54.150.249", "username": "peter@lilypadsolutions.com", "password": "", "session": "", "nonce": "", "environment": { "name": "production", "isProduction": true, "acsBaseUrl": "https://api.cloud.appcelerator.com", "acsAuthBaseUrl": "https://secure-identity.cloud.appcelerator.com", "nodeACSEndpoint": "https://admin.cloudapp-enterprise.appcelerator.com" }, "token": "", "fingerprint": "87522c48aa9ee8f7962f5617cd32a7828d13f42d", "fingerprint_description": "Mac OSX Serial Number: C02LMF4RFD57", "org_id": 100005239, "expiry": 1440339381696 } loading plugins for command "run" run search paths: [ "/Users/pladis/.appcelerator/install/4.1.2/package", "/Users/pladis/.appcelerator/install/4.1.2/package/node_modules", "/Applications/Appcelerator Studio/AppceleratorStudio.app/Contents/MacOS/node_modules", "/Applications/Appcelerator Studio/AppceleratorStudio.app/Contents/node_modules", "/Applications/Appcelerator Studio/AppceleratorStudio.app/node_modules", "/Applications/Appcelerator Studio/node_modules", "/Applications/node_modules", "/node_modules", "/Users/pladis/.appcelerator/.npm/lib/node_modules" ] [PLUGIN-LOAD] 0ms /Users/pladis/.appcelerator/install/4.1.2/package/appc.js [PLUGIN-LOAD] 161ms /Users/pladis/.appcelerator/install/4.1.2/package/node_modules/appc-cli-titanium/appc.js run plugin: /Users/pladis/.appcelerator/install/4.1.2/package/node_modules/appc-cli-titanium [PLUGIN-LOAD] 0ms /Users/pladis/.appcelerator/install/4.1.2/package/node_modules/arrow/appc.js run plugin: /Users/pladis/.appcelerator/install/4.1.2/package/node_modules/arrow plugin "arrow" failed its "when" function check, skipping... loading plugin "titanium" for command "run" CLI options via function loading plugin "titanium" for command "run" CLI options via array Duplicate option "colors" for command "run", removing... executing command "run" with the following plugins: ["titanium"] TRACE | Attempting to load session info from config file TRACE | check if session is invalidated TRACE | session expiry 1440339381696 false TRACE | session already loaded in opts.session DEBUG | Titanium Downloads Last Checked: 1440182845511 TRACE | "/usr/local/bin/node" "/Users/pladis/.appcelerator/install/4.1.2/package/node_modules/appc-cli-titanium/node_modules/titanium/bin/titanium" config -o json-object TRACE | "/usr/local/bin/node" "/Users/pladis/.appcelerator/install/4.1.2/package/node_modules/appc-cli-titanium/node_modules/titanium/bin/titanium" sdk -o json TRACE | checking for titanium, result: { activeSDK: '4.0.0.GA', defaultInstallLocation: '/Users/pladis/Library/Application Support/Titanium', installLocations: [ '/Users/pladis/Library/Application Support/Titanium', '/Library/Application Support/Titanium' ], installed: { '4.1.0.GA': '/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA', '4.0.0.GA': '/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.0.0.GA', '3.5.1.GA': '/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/3.5.1.GA', '3.5.0.GA': '/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/3.5.0.GA', '3.4.1.GA': '/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/3.4.1.GA', '3.4.0.GA': '/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/3.4.0.GA', '3.3.0.GA': '/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/3.3.0.GA' } } TRACE | /usr/local/bin/node [ '/Users/pladis/.appcelerator/install/4.1.2/package/node_modules/appc-cli-titanium/node_modules/titanium/bin/titanium', 'build', '--platform', 'android', '--log-level', 'trace', '--sdk', '4.1.0.GA', '--project-dir', '/Users/pladis/Documents/LPDevices/IOS', '--target', 'device', '--android-sdk', '/Users/pladis/Library/android-sdk-macosx', '--device-id', '03157df383849710', '--no-colors', '--no-progress-bars', '--no-prompt', '--prompt-type', 'socket-bundle', '--prompt-port', '59365', '--plugin-paths', '/Users/pladis/.appcelerator/install/4.1.2/package/node_modules', '--config-file', '/var/folders/17/5jc_3fjj0g5b23dwqs5zm7kc0000gq/T/build-1440255221076.json', '--no-banner' ] Sat Aug 22 2015 10:53:45 GMT-0400 (EDT) Operating System Name = Mac OS X Version = 10.10.5 Architecture = 64bit # CPUs = 8 Memory = 17179869184 Node.js Node.js Version = 0.10.32 npm Version = 1.4.28 Titanium CLI CLI Version = 4.0.1 Titanium SDK SDK Version = 4.1.0.GA SDK Path = /Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA Target Platform = android Command /usr/local/bin/node /Users/pladis/.appcelerator/install/4.1.2/package/node_modules/appc-cli-titanium/node_modules/titanium/bin/titanium build --platform android --log-level trace --sdk 4.1.0.GA --project-dir /Users/pladis/Documents/LPDevices/IOS --target device --android-sdk /Users/pladis/Library/android-sdk-macosx --device-id 03157df383849710 --no-colors --no-progress-bars --no-prompt --prompt-type socket-bundle --prompt-port 59365 --plugin-paths /Users/pladis/.appcelerator/install/4.1.2/package/node_modules --config-file /var/folders/17/5jc_3fjj0g5b23dwqs5zm7kc0000gq/T/build-1440255221076.json --no-banner [INFO] : Found Titanium module id=de.marcelpociot.androidpdfviewer version=1.0 platform=android deploy-type=test path=/Users/pladis/Library/Application Support/Titanium/modules/android/de.marcelpociot.androidpdfviewer/1.0 [INFO] : Found Titanium module id=ti.mediapicker version=1.0.2 platform=android deploy-type=test path=/Users/pladis/Library/Application Support/Titanium/modules/android/ti.mediapicker/1.0.2 [INFO] : Found Titanium module id=net.iamyellow.gcmjs version=0.2 platform=android deploy-type=test path=/Users/pladis/Library/Application Support/Titanium/modules/android/net.iamyellow.gcmjs/0.2 [INFO] : Found Titanium module id=ti.styledlabel version=2.0.1 platform=android deploy-type=test path=/Users/pladis/Library/Application Support/Titanium/modules/android/ti.styledlabel/2.0.1 [INFO] : Found Titanium module id=ti.imagefactory version=2.2.1 platform=android deploy-type=test path=/Users/pladis/Library/Application Support/Titanium/modules/android/ti.imagefactory/2.2.1 [INFO] : Found Titanium module id=ti.paint version=2.0.2 platform=android deploy-type=test path=/Users/pladis/Library/Application Support/Titanium/modules/android/ti.paint/2.0.2 [INFO] : Found Titanium module id=appcelerator.salesforce version=1.1.0 platform=android deploy-type=test path=/Users/pladis/Library/Application Support/Titanium/modules/android/appcelerator.salesforce/1.1.0 [INFO] : Found Titanium module id=ti.cloudpush version=3.3.8 platform=android deploy-type=test path=/Users/pladis/Library/Application Support/Titanium/modules/android/ti.cloudpush/3.3.8 [INFO] : Found Titanium module id=ti.cloud version=3.2.9 platform=commonjs deploy-type=test path=/Users/pladis/Library/Application Support/Titanium/modules/commonjs/ti.cloud/3.2.9 [INFO] : Found Titanium module id=ti.map version=2.3.1 platform=android deploy-type=test path=/Users/pladis/Library/Application Support/Titanium/modules/android/ti.map/2.3.1 [INFO] : Found Titanium module id=fh.imagefactory version=1.1 platform=android deploy-type=test path=/Users/pladis/Library/Application Support/Titanium/modules/android/fh.imagefactory/1.1 [INFO] : Found Titanium module id=dk.napp.drawer version=1.1.5.RC platform=android deploy-type=test path=/Users/pladis/Library/Application Support/Titanium/modules/android/dk.napp.drawer/1.1.5.RC [INFO] : Found Titanium module id=com.mykingdom.media version=1.0 platform=android deploy-type=test path=/Users/pladis/Library/Application Support/Titanium/modules/android/com.mykingdom.media/1.0 [INFO] : Found Titanium module id=prakash.garbagecollector version=1.0 platform=android deploy-type=test path=/Users/pladis/Library/Application Support/Titanium/modules/android/prakash.garbagecollector/1.0 [INFO] : Deploy type: test [INFO] : Building for target: device [INFO] : Building for device: 03157df383849710 [INFO] : Targeting Android SDK: 21 [INFO] : Building for the following architectures: armeabi, armeabi-v7a, x86 [INFO] : Signing with keystore: /Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/dev_keystore (tidev) [INFO] : Debugging disabled [INFO] : Profiler disabled [INFO] : Forcing rebuild: JavaScript files need to be re-encrypted [INFO] : JavaScript files need to be encrypted [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Banners/btn-appointment.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Banners/btn-appointment@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Banners/btn-banner-grid.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Banners/btn-banner-grid@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Banners/btn-briefcase.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Banners/btn-briefcase@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Banners/btn-closed-deal.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Banners/btn-closed-deal@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Banners/btn-driving.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Banners/btn-driving@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Banners/btn-expenses.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Banners/btn-expenses@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Banners/btn-flying.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Banners/btn-flying@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Banners/btn-funnel.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Banners/btn-funnel@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Banners/btn-meeting.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Banners/btn-meeting@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Banners/btn-networking.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Banners/btn-networking@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Banners/btn-office-work.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Banners/btn-office-work@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Banners/btn-prospecting.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Banners/btn-prospecting@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Banners/btn-put-out-fire.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Banners/btn-put-out-fire@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Banners/btn-support.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Banners/btn-support@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Banners/btn-training.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Banners/btn-training@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Icons/ico-appointment.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Icons/ico-appointment@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Icons/ico-briefcase.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Icons/ico-briefcase@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Icons/ico-circle-grid.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Icons/ico-circle-grid@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Icons/ico-closed-deal.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Icons/ico-closed-deal@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Icons/ico-driving.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Icons/ico-driving@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Icons/ico-expenses.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Icons/ico-expenses@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Icons/ico-flying.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Icons/ico-flying@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Icons/ico-funnel.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Icons/ico-funnel@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Icons/ico-meeting.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Icons/ico-meeting@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Icons/ico-networking.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Icons/ico-networking@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Icons/ico-office-work.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Icons/ico-office-work@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Icons/ico-prospecting.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Icons/ico-prospecting@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Icons/ico-put-out-fire.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Icons/ico-put-out-fire@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Icons/ico-support.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Icons/ico-support@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Icons/ico-training.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Activities/Icons/ico-training@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/ActivityGeo.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/ActivityNotes.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/ActivityPhoto.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Default/btn-primary-248-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Default/btn-primary-248-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Default/btn-primary-248-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Default/btn-primary-248-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Default/btn-primary-sq-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Default/btn-primary-sq-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Default/btn-primary-sq-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Default/btn-primary-sq-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Default/btn-secondary-248-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Default/btn-secondary-248-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Default/btn-secondary-248-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Default/btn-secondary-248-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Default/btn-secondary-sq-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Default/btn-secondary-sq-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Default/btn-secondary-sq-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Default/btn-secondary-sq-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Default/btn-tertiary-248-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Default/btn-tertiary-248-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Default/btn-tertiary-248-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Default/btn-tertiary-248-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Default/btn-tertiary-sq-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Default/btn-tertiary-sq-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Default/btn-tertiary-sq-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Default/btn-tertiary-sq-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Feed/FeedCreate.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Feed/FeedCreateWhite.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Feed/FeedHeadsUp.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Feed/FeedHome.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Feed/Play1.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Forms/AddPhoto.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Forms/LongTextExpander.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Forms/SignaturePen.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Forms/TakePhoto.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Forms/btn-multiselect-active.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Forms/btn-multiselect-active@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Forms/btn-multiselect-inactive.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Forms/btn-multiselect-inactive@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Forms/btn-photo-picker-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Forms/btn-photo-picker-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Forms/btn-photo-picker-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Forms/btn-photo-picker-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Forms/btn-radio-active.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Forms/btn-radio-active@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Forms/btn-radio-inactive.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Forms/btn-radio-inactive@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Forms/btn-remove-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Forms/btn-remove-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Forms/btn-remove-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Forms/btn-remove-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/HomeScreen/btn-contests-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/HomeScreen/btn-contests-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/HomeScreen/btn-contests-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/HomeScreen/btn-contests-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/HomeScreen/btn-dashboard-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/HomeScreen/btn-dashboard-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/HomeScreen/btn-dashboard-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/HomeScreen/btn-dashboard-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/HomeScreen/btn-documents-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/HomeScreen/btn-documents-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/HomeScreen/btn-documents-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/HomeScreen/btn-documents-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/HomeScreen/btn-goals-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/HomeScreen/btn-goals-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/HomeScreen/btn-goals-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/HomeScreen/btn-goals-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/HomeScreen/btn-messages-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/HomeScreen/btn-messages-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/HomeScreen/btn-messages-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/HomeScreen/btn-messages-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/HomeScreen/btn-timeline-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/HomeScreen/btn-timeline-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/HomeScreen/btn-timeline-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/HomeScreen/btn-timeline-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/LeftFistGreen.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/LeftFistGrey.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Messages/btn-chat-bell.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Messages/btn-chat-bell@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Messages/btn-chat-idea.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Messages/btn-chat-idea@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Messages/btn-chat-message.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Messages/btn-chat-message@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Messages/btn-chat-question.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Messages/btn-chat-question@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-arrow-left-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-arrow-left-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-arrow-left-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-arrow-left-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-arrow-right-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-arrow-right-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-arrow-right-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-arrow-right-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-caret-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-caret-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-compose-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-compose-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-compose-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-compose-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-cross-alt-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-cross-alt-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-cross-alt-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-cross-alt-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-cross-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-cross-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-cross-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-cross-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-gear-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-gear-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-gear-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-gear-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-location-search-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-location-search-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-location-search-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-location-search-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-options-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-options-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-options-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-options-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-tick-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-tick-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-tick-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Navbar/btn-tick-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/PostMessage.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/PostPicture.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/PostPoll.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/PostVideo.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Profile/ProfileCall.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Profile/ProfileEmail.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Profile/ProfileLinkedIn.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Profile/ProfileTwitter.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/RightFistGreen.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/RightFistGrey.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/RightSelectArrow.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/RingBell.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Tabbar/btn-activity-done-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Tabbar/btn-activity-done-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Tabbar/btn-activity-done-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Tabbar/btn-activity-done-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Tabbar/btn-camera-circle-active.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Tabbar/btn-camera-circle-active@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Tabbar/btn-camera-circle-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Tabbar/btn-camera-circle-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Tabbar/btn-camera-circle-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Tabbar/btn-camera-circle-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Tabbar/btn-location-circle-active.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Tabbar/btn-location-circle-active@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Tabbar/btn-location-circle-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Tabbar/btn-location-circle-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Tabbar/btn-location-circle-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Tabbar/btn-location-circle-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Tabbar/btn-task-circle-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Tabbar/btn-task-circle-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Tabbar/btn-task-circle-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Tabbar/btn-task-circle-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Toggle/toggle-clock-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Toggle/toggle-clock-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Toggle/toggle-clock-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Toggle/toggle-clock-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Toggle/toggle-invisible-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Toggle/toggle-invisible-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Toggle/toggle-invisible-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Toggle/toggle-invisible-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Toggle/toggle-plus-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Toggle/toggle-plus-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Toggle/toggle-plus-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Toggle/toggle-plus-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Toggle/toggle-trophy-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Toggle/toggle-trophy-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Toggle/toggle-trophy-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Toggle/toggle-trophy-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Toggle/toggle-user-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Toggle/toggle-user-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Toggle/toggle-user-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Toggle/toggle-user-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Toggle/toggle-visible-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Toggle/toggle-visible-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Toggle/toggle-visible-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/Toggle/toggle-visible-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/btn-add-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/btn-create-note-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/btn-create-note-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/btn-create-note-lg-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/btn-create-note-lg-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/btn-create-note-lg-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/btn-create-note-lg-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/btn-create-note-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/btn-create-note-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/btn-refresh-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/btn-refresh-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/btn-refresh-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/btn-refresh-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/connect.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/salesforce.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Buttons/up-feed.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Contest/img-badge.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Contest/img-badge@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Contest/img-calendar.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Contest/img-calendar@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Dashboard/BackArrow.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Dashboard/ContestRibbon.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Dashboard/DashBullsEye.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Dashboard/DashTrophy.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Dashboard/DownArrow.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Dashboard/DropDown.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Dashboard/bkg-heart.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Dashboard/bkg-heart@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Dashboard/bkg-heartbeat.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Dashboard/bkg-heartbeat@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Dashboard/bkg-task-check.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Dashboard/bkg-task-check@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Dashboard/chart.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Dashboard/img-seesaw-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Dashboard/img-seesaw-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Dashboard/img-seesaw-level.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Dashboard/img-seesaw-level@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Dashboard/img-seesaw-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Dashboard/img-seesaw-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Dashboard/img-timer-lg.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Dashboard/img-timer-lg@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/FinishScreen/Clock.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Funnel/ActivityNotes.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Funnel/PlusSign.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Funnel/Start.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Funnel/call.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Funnel/calldialog.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Funnel/datesdialog.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Funnel/email.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Funnel/emaildialog.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Funnel/funnelicon.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Funnel/lognote.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Funnel/timer.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/HomeScreen/ActivityReturn.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/HomeScreen/CloseSign.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/HomeScreen/Contest.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/HomeScreen/ContestGreen.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/HomeScreen/Dashboard.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/HomeScreen/DashboardGreen.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/HomeScreen/Home.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/HomeScreen/HomeGreen.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/HomeScreen/HomeReturn.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/HomeScreen/Manager.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/HomeScreen/ManagerGreen.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/HomeScreen/MenuBorder.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/HomeScreen/MenuNavigation.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/HomeScreen/Networking.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/HomeScreen/PlusSign.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/HomeScreen/Start.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/HomeScreen/Timeline.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/HomeScreen/TimelineGreen.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/HomeScreen/more.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/HomeScreen/moresolid.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Activities/AdjustTime.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Activities/ico-date.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Activities/ico-date@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Calendar.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Contest/Crown.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Contest/Daily.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Contest/Plus.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Contest/Star.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Contest/ico-arrow-finish.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Contest/ico-arrow-finish@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Contest/ico-pending.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Contest/ico-pending@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Contest/ico-winner.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Contest/ico-winner@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Forms/ico-company.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Forms/ico-company@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Forms/ico-email.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Forms/ico-email@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Forms/ico-lock.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Forms/ico-lock@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Forms/ico-profile.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Forms/ico-profile@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Goals/GoalCongrats.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Goals/PostToBoard.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Goals/ico-bell.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Goals/ico-bell@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Messages/ChickenDinner.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Messages/Comment.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Messages/GoalThumb.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Messages/Like.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Messages/WriteMessage.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Messages/ico-chat-bell.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Messages/ico-chat-bell@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Messages/ico-chat-message.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Messages/ico-chat-message@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Messages/ico-chat-org.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Messages/ico-chat-org@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Messages/ico-chat-question.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Messages/ico-chat-question@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Messages/ico-chat-tip.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Messages/ico-chat-tip@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/NoMap.jpg [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/NoMap@2x.jpg [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Resources/ico-date.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Resources/ico-date@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Resources/ico-file-doc.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Resources/ico-file-doc@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Resources/ico-file-jpg.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Resources/ico-file-jpg@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Resources/ico-file-mpg.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Resources/ico-file-mpg@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Resources/ico-file-pdf.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Resources/ico-file-pdf@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Resources/ico-file-ppt.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Resources/ico-file-ppt@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Resources/ico-file-xls.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Resources/ico-file-xls@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Resources/ico-folder.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Resources/ico-folder@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Timeline/ico-image.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Timeline/ico-image@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Timeline/ico-location.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Timeline/ico-location@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/Todo.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/flipcamera.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/ico-timer-blue.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/ico-timer-blue@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/manyusers.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/more.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/moresolid.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/notavailable.jpg [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/notavailable@2x.jpg [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/team.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Icons/tweetBtn.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/LoadingAnimation/loader-135.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/LoadingAnimation/loader-135@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/LoadingAnimation/loader-180.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/LoadingAnimation/loader-180@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/LoadingAnimation/loader-45.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/LoadingAnimation/loader-45@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/LoadingAnimation/loader-90.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/LoadingAnimation/loader-90@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/LoadingAnimation/loader0.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/LoadingAnimation/loader0@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/LoadingAnimation/loader135.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/LoadingAnimation/loader135@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/LoadingAnimation/loader45.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/LoadingAnimation/loader45@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/LoadingAnimation/loader90.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/LoadingAnimation/loader90@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Logo-White.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/PostImages/Bell.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/PostImages/Camera.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/PostImages/Close.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/PostImages/Link.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/PostImages/Stats.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/PostImages/Text.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Sidebar/AccountsSide.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Sidebar/AlertsSide.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Sidebar/ContestSide.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Sidebar/DashboardSide.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Sidebar/FeedbackSide.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Sidebar/GoalsSide.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Sidebar/Logout.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Sidebar/Networking.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Sidebar/ResourceSide.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Sidebar/TimelineSide.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Sidebar/call.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Sidebar/costumer.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Sidebar/driving.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Sidebar/errors.txt [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Sidebar/prospecting.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/Sidebar/training.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/WelcomeScreen/Background.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/WelcomeScreen/Screen-Shot.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/WelcomeScreen/Welcome_Screen1.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/WelcomeScreen/Welcome_Screen15@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/WelcomeScreen/Welcome_Screen1@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/WelcomeScreen/Welcome_Screen2.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/WelcomeScreen/Welcome_Screen25@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/WelcomeScreen/Welcome_Screen2@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/WelcomeScreen/Welcome_Screen3.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/WelcomeScreen/Welcome_Screen35@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/WelcomeScreen/Welcome_Screen3@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/WelcomeScreen/bkg-splash.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/WelcomeScreen/bkg-splash5@2x-02.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/WelcomeScreen/bkg-splash5@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/WelcomeScreen/bkg-splash@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/WelcomeScreen/ico-appicon.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/WelcomeScreen/ico-appicon@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/WelcomeScreen/ico-company.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/WelcomeScreen/ico-company@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/WelcomeScreen/ico-email.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/WelcomeScreen/ico-email@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/WelcomeScreen/ico-lock.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/WelcomeScreen/ico-lock@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/WelcomeScreen/ico-profile.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/WelcomeScreen/ico-profile@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/WelcomeScreen/logo-lilypad.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/WelcomeScreen/logo-lilypad@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/btn-multiselect-active.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/btn-multiselect-active@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/btn-multiselect-inactive.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/btn-multiselect-inactive@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/btn-radio-active.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/btn-radio-active@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/btn-radio-inactive.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/btn-radio-inactive@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/expander.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/iPad/Buttons/HomeScreen/btn-contests-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/iPad/Buttons/HomeScreen/btn-contests-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/iPad/Buttons/HomeScreen/btn-contests-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/iPad/Buttons/HomeScreen/btn-contests-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/iPad/Buttons/HomeScreen/btn-dashboard-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/iPad/Buttons/HomeScreen/btn-dashboard-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/iPad/Buttons/HomeScreen/btn-dashboard-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/iPad/Buttons/HomeScreen/btn-dashboard-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/iPad/Buttons/HomeScreen/btn-documents-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/iPad/Buttons/HomeScreen/btn-documents-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/iPad/Buttons/HomeScreen/btn-documents-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/iPad/Buttons/HomeScreen/btn-documents-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/iPad/Buttons/HomeScreen/btn-goals-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/iPad/Buttons/HomeScreen/btn-goals-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/iPad/Buttons/HomeScreen/btn-goals-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/iPad/Buttons/HomeScreen/btn-goals-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/iPad/Buttons/HomeScreen/btn-messages-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/iPad/Buttons/HomeScreen/btn-messages-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/iPad/Buttons/HomeScreen/btn-messages-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/iPad/Buttons/HomeScreen/btn-messages-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/iPad/Buttons/HomeScreen/btn-timeline-down.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/iPad/Buttons/HomeScreen/btn-timeline-down@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/iPad/Buttons/HomeScreen/btn-timeline-up.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/iPad/Buttons/HomeScreen/btn-timeline-up@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/img-avatar-add.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/img-avatar-add@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/img-avatar-empty.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/img-avatar-empty@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/img-offline.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/img-offline@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/img-soon-banner.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/img-soon-banner@2x.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/lilypad.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/timeline/TimelineNoData.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/timeline/camera.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/timeline/pin.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/video/largescreen.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/video/pause.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/video/play.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/video/playblack.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/video/playwhite.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/video/stopblack.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/images/video/stopwhite.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/ui/handheld/iphoneV2/Messages/PostImageMessage.js.orig [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/appicon.png [WARN] : Overwriting file /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/Resources/fonts/Impact.ttf [INFO] : Processing JavaScript files [INFO] : Encrypting JavaScript files: /Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/titanium_prep.macos "com.lilypadsolutions.lilypadappV2" "/Users/pladis/Documents/LPDevices/IOS/build/android/assets" "app.js" "file_loader.js" "gcm.js" "gcm_activity.js" "mixpanel.js" "path.js" "ui/appygram/appygram.js" "ui/common/ApplicationTabGroup.js" "ui/common/ApplicationWindow.js" "ui/common/ConnectionIssue.js" "ui/common/ContactUs.js" "ui/common/Feedback.js" "ui/common/InviteReps.js" "ui/common/LPAlert.js" "ui/common/Loader.js" "ui/common/NewUser.js" "ui/common/NewUserCreate.js" "ui/common/NewUserCreateCommunity.js" "ui/common/Password.js" "ui/common/ReceivedCommunityInvite.js" "ui/common/ReceivedInvite.js" "ui/common/RegisterEmail.js" "ui/common/RegisterName.js" "ui/common/Reminder/NewReminder.js" "ui/common/ReminderView.js" "ui/common/Settings.js" "ui/common/Styles.js" "ui/common/Timer.js" "ui/common/linq.min.js" "ui/common/mask.js" "ui/common/moment-timezone.js" "ui/common/moment.js" "ui/data/LPDataLayer.js" "ui/handheld/FinishWindow/FinishWindow.js" "ui/handheld/android/ActivityDetailsView.js" "ui/handheld/android/ActivityListViewAndroid.js" "ui/handheld/android/ContentWindows/Dashboard.js" "ui/handheld/android/ContentWindows/Home.js" "ui/handheld/android/ContentWindows/Manager.js" "ui/handheld/android/ContentWindows/ProfileWindowEdit.js" "ui/handheld/android/ContentWindows/Timeline.js" "ui/handheld/android/FeedTemplates/AnswerPollView.js" "ui/handheld/android/FeedTemplates/AnsweredPollView.js" "ui/handheld/android/FeedTemplates/InviteUserView.js" "ui/handheld/android/FeedTemplates/LinkView.js" "ui/handheld/android/FeedTemplates/ManagerView.js" "ui/handheld/android/FeedTemplates/MessageView.js" "ui/handheld/android/FeedTemplates/MessageViewActivity.js" "ui/handheld/android/FeedTemplates/MessageViewBell.js" "ui/handheld/android/FeedTemplates/MessageViewImage.js" "ui/handheld/android/FeedTemplates/MessageViewQuote.js" "ui/handheld/android/FeedTemplates/MondayView.js" "ui/handheld/android/FeedTemplates/PhotoView.js" "ui/handheld/android/FeedTemplates/UserUpgradeView.js" "ui/handheld/android/FeedTemplates/WedView.js" "ui/handheld/android/FeedTemplates/WelcomeView.js" "ui/handheld/android/FirstView.js" "ui/handheld/android/Messages/EditFeedItem.js" "ui/handheld/android/Messages/PostBellMessage.js" "ui/handheld/android/Messages/PostGeneralMessage.js" "ui/handheld/android/Messages/PostImageMessage.js" "ui/handheld/android/Messages/PostLinkMessage.js" "ui/handheld/android/Messages/PostPollMessage.js" "ui/handheld/android/Messages/ShareOnFeed.js" "ui/handheld/android/NavigationController.js" "ui/handheld/android/NewUser.js" "ui/handheld/android/NewUserCreate.js" "ui/handheld/android/NewUserCreateCommunity.js" "ui/handheld/android/ReceivedCommunityInvite.js" "ui/handheld/android/ReceivedInvite.js" "ui/handheld/android/RegisterName.js" "ui/handheld/android/RequestInfo.js" "ui/handheld/android/RequestInfo2.js" "ui/handheld/android/WelcomeScreen/Login.js" "ui/handheld/android/WelcomeScreen/Password.js" "ui/handheld/android/WelcomeScreen/SignIn.js" "ui/handheld/iphone/Activities/ActivityGeo.js" "ui/handheld/iphone/Activities/ActivityPhotos.js" "ui/handheld/iphone/Activities/ActivityTasks.js" "ui/handheld/iphone/Activities/AddAccount.js" "ui/handheld/iphone/Activities/DynamicsCreds.js" "ui/handheld/iphone/Activities/FormPickerCheck.js" "ui/handheld/iphone/Activities/FormPickerLocation.js" "ui/handheld/iphone/Activities/FormPickerLongNote.js" "ui/handheld/iphone/Activities/FormPickerPicture.js" "ui/handheld/iphone/Activities/FormPickerRadio.js" "ui/handheld/iphone/Activities/FormPickerSig.js" "ui/handheld/iphone/Activities/FormPickerTable.js" "ui/handheld/iphone/Activities/FormPickerTableDynamics.js" "ui/handheld/iphone/Activities/FormPickerTableGeneric.js" "ui/handheld/iphone/Activities/FormPickerTableNetsuite.js" "ui/handheld/iphone/Activities/FormPickerTableSalesforce.js" "ui/handheld/iphone/Activities/NetsuiteCreds.js" "ui/handheld/iphone/Activities/ViewPhoto.js" "ui/handheld/iphone/Contest/ContestDetailView.js" "ui/handheld/iphone/Contest/ContestDetailViewV2.js" "ui/handheld/iphone/Contest/ContestView.js" "ui/handheld/iphone/Contest/ContestViewV2.js" "ui/handheld/iphone/DashboardViews/ActivitiesDBView.js" "ui/handheld/iphone/DashboardViews/DocumentsDBView.js" "ui/handheld/iphone/DashboardViews/LeaderboardDBView.js" "ui/handheld/iphone/DashboardViews/ScoreDBView.js" "ui/handheld/iphone/DashboardViews/TasksDBView.js" "ui/handheld/iphone/DocViewer.js" "ui/handheld/iphone/Documents/DocumentSendReview.js" "ui/handheld/iphone/DocumentsView.js" "ui/handheld/iphone/Messages/MessageReply.js" "ui/handheld/iphone/Messages/MessagesDetailsView.js" "ui/handheld/iphone/Messages/Share.js" "ui/handheld/iphone/Messages/ShareGoal.js" "ui/handheld/iphone/MessagesView.js" "ui/handheld/iphone/Tasks/NewTask.js" "ui/handheld/iphone/Tasks/NewTaskEdit.js" "ui/handheld/iphone/Tasks/TaskListView.js" "ui/handheld/iphone/Tasks/TaskTimeLineView.js" "ui/handheld/iphone/Tasks/TaskTimeLineViewForms.js" "ui/handheld/iphone/TimeLineViewV2.js" "ui/handheld/iphone/WelcomeScreen/ChangeAccountSettings.js" "ui/handheld/iphone/WelcomeScreen/ChangePassword.js" "ui/handheld/iphone/WelcomeScreen/CreateActivities.js" "ui/handheld/iphone/WelcomeScreen/CreateTasks.js" "ui/handheld/iphone/WelcomeScreen/CrmSettings.js" "ui/handheld/iphone/WelcomeScreen/IntegrationsView.js" "ui/handheld/iphone/WelcomeScreen/IntegrationsViewDyn.js" "ui/handheld/iphone/WelcomeScreen/IntegrationsViewNS.js" "ui/handheld/iphone/WelcomeScreen/Login.js" "ui/handheld/iphone/WelcomeScreen/NewUser.js" "ui/handheld/iphone/WelcomeScreen/SelectIndustry.js" "ui/handheld/iphone/WelcomeScreen/SignIn.js" "ui/handheld/iphone/WelcomeScreen/WebSite.js" "ui/handheld/iphone/bg.js" "ui/handheld/iphoneV2/Activity/FinishWindow.js" "ui/handheld/iphoneV2/Activity/FormPickerSigV2.js" "ui/handheld/iphoneV2/ApplicationWindow.js" "ui/handheld/iphoneV2/Challenges/ChallengeView.js" "ui/handheld/iphoneV2/Challenges/ContestTypes.js" "ui/handheld/iphoneV2/Challenges/CreateCustom.js" "ui/handheld/iphoneV2/ContentWindows/ActivityHeader.js" "ui/handheld/iphoneV2/ContentWindows/ActivityHeaderPast.js" "ui/handheld/iphoneV2/ContentWindows/ChooseActivityV2.js" "ui/handheld/iphoneV2/ContentWindows/Contest.js" "ui/handheld/iphoneV2/ContentWindows/ContestChallenges.js" "ui/handheld/iphoneV2/ContentWindows/ContestWindow.js" "ui/handheld/iphoneV2/ContentWindows/CustomDataPicker.js" "ui/handheld/iphoneV2/ContentWindows/CustomPhotoLibrary.js" "ui/handheld/iphoneV2/ContentWindows/Dashboard.js" "ui/handheld/iphoneV2/ContentWindows/EditActivityTimes.js" "ui/handheld/iphoneV2/ContentWindows/GeoModule.js" "ui/handheld/iphoneV2/ContentWindows/Home.js" "ui/handheld/iphoneV2/ContentWindows/InActivity.js" "ui/handheld/iphoneV2/ContentWindows/InActivityWithForm.js" "ui/handheld/iphoneV2/ContentWindows/LogPrevious.js" "ui/handheld/iphoneV2/ContentWindows/Manager.js" "ui/handheld/iphoneV2/ContentWindows/PhotoModule.js" "ui/handheld/iphoneV2/ContentWindows/ProfileWindow.js" "ui/handheld/iphoneV2/ContentWindows/ProfileWindowEdit.js" "ui/handheld/iphoneV2/ContentWindows/ReloadFeed.js" "ui/handheld/iphoneV2/ContentWindows/StatusWidget.js" "ui/handheld/iphoneV2/ContentWindows/TakePhotoWindow.js" "ui/handheld/iphoneV2/ContentWindows/TimeLineViewDetails.js" "ui/handheld/iphoneV2/ContentWindows/Timeline.js" "ui/handheld/iphoneV2/ContentWindows/WebWindow.js" "ui/handheld/iphoneV2/ContentWindows/graphsLoading.js" "ui/handheld/iphoneV2/FeedTemplates/AnswerPollView.js" "ui/handheld/iphoneV2/FeedTemplates/AnsweredPollView.js" "ui/handheld/iphoneV2/FeedTemplates/ImageContent.js" "ui/handheld/iphoneV2/FeedTemplates/InviteUserView.js" "ui/handheld/iphoneV2/FeedTemplates/LinkView.js" "ui/handheld/iphoneV2/FeedTemplates/ManagerView.js" "ui/handheld/iphoneV2/FeedTemplates/MessageView.js" "ui/handheld/iphoneV2/FeedTemplates/MessageViewActivity.js" "ui/handheld/iphoneV2/FeedTemplates/MessageViewBell.js" "ui/handheld/iphoneV2/FeedTemplates/MessageViewImage.js" "ui/handheld/iphoneV2/FeedTemplates/MessageViewQuote.js" "ui/handheld/iphoneV2/FeedTemplates/MondayView.js" "ui/handheld/iphoneV2/FeedTemplates/PhotoView.js" "ui/handheld/iphoneV2/FeedTemplates/UserUpgradeView.js" "ui/handheld/iphoneV2/FeedTemplates/VideoContent.js" "ui/handheld/iphoneV2/FeedTemplates/WedView.js" "ui/handheld/iphoneV2/FeedTemplates/WelcomeView.js" "ui/handheld/iphoneV2/FirstView.js" "ui/handheld/iphoneV2/ManagerViews/LiveUserView.js" "ui/handheld/iphoneV2/ManagerViews/LiveView.js" "ui/handheld/iphoneV2/ManagerViews/TeamAccount.js" "ui/handheld/iphoneV2/ManagerViews/UserDetails.js" "ui/handheld/iphoneV2/Messages/EditFeedItem.js" "ui/handheld/iphoneV2/Messages/PollAnswers.js" "ui/handheld/iphoneV2/Messages/PostBellMessage.js" "ui/handheld/iphoneV2/Messages/PostGeneralMessage.js" "ui/handheld/iphoneV2/Messages/PostImageMessage.js" "ui/handheld/iphoneV2/Messages/PostImageMessageOLD.js" "ui/handheld/iphoneV2/Messages/PostLinkMessage.js" "ui/handheld/iphoneV2/Messages/PostPollMessage.js" "ui/handheld/iphoneV2/Messages/SendTo.js" "ui/handheld/iphoneV2/Messages/ShareOnFeed.js" "ui/handheld/iphoneV2/ModalWindows/ActivitySelector.js" "ui/handheld/iphoneV2/ModalWindows/AddUsers.js" "ui/handheld/iphoneV2/ModalWindows/CustomLogout.js" "ui/handheld/iphoneV2/ModalWindows/Dashboard.js" "ui/handheld/iphoneV2/ModalWindows/IconSelector.js" "ui/handheld/iphoneV2/ModalWindows/Leaderboard.js" "ui/handheld/iphoneV2/ModalWindows/MessageRepSelector.js" "ui/handheld/iphoneV2/ModalWindows/SubmitFeedback.js" "ui/handheld/iphoneV2/ModalWindows/SyncOffline.js" "ui/handheld/iphoneV2/ModalWindows/TeamSelector.js" "ui/handheld/iphoneV2/ModalWindows/UserSelector.js" "ui/handheld/iphoneV2/ModalWindows/modalmenu.js" "ui/handheld/iphoneV2/Modules/Funnel/FunnelActivities.js" "ui/handheld/iphoneV2/Modules/Funnel/FunnelDetails.js" "ui/handheld/iphoneV2/Modules/Funnel/FunnelMenu.js" "ui/handheld/iphoneV2/Modules/Funnel/FunnelMenuClose.js" "ui/handheld/iphoneV2/Modules/Funnel/FunnelMenuFollow.js" "ui/handheld/iphoneV2/Modules/Funnel/FunnelMenuName.js" "ui/handheld/iphoneV2/Modules/Funnel/FunnelMenuStatus.js" "ui/handheld/iphoneV2/Modules/Funnel/FunnelStyles.js" "ui/handheld/iphoneV2/Modules/Funnel/FunnelWindow.js" "ui/handheld/iphoneV2/Modules/Funnel/LogCall.js" "ui/handheld/iphoneV2/Modules/Funnel/LogDates.js" "ui/handheld/iphoneV2/Modules/Funnel/LogEmail.js" "ui/handheld/iphoneV2/Modules/Funnel/LogNotes.js" "ui/handheld/iphoneV2/Modules/Funnel/LogStatus.js" "ui/handheld/iphoneV2/Modules/Funnel/funnelpath.js" "ui/handheld/iphoneV2/Modules/Reports/ReportFilter.js" "ui/handheld/iphoneV2/Modules/Reports/ReportTypes.js" "ui/handheld/iphoneV2/Modules/Reports/ReportWindow.js" "ui/handheld/iphoneV2/PersonalGoals/GoalsViewV2.js" "ui/handheld/iphoneV2/PersonalGoals/PersonalGoals.js" "ui/handheld/iphoneV2/PersonalGoals/SetGoalsV2.js" "ui/handheld/iphoneV2/Reporting/LeaderBoardGraph.js" "ui/handheld/iphoneV2/Reporting/Report.js" "ui/handheld/iphoneV2/Reporting/ReportsGraph.js" "ui/handheld/iphoneV2/Services/AccountService.js" "ui/handheld/iphoneV2/Services/ActivityService.js" "ui/handheld/iphoneV2/Services/ContentService.js" "ui/handheld/iphoneV2/Services/ContestService.js" "ui/handheld/iphoneV2/Services/DashboardService.js" "ui/handheld/iphoneV2/Services/EventsService.js" "ui/handheld/iphoneV2/Services/FeedService.js" "ui/handheld/iphoneV2/Services/FormsService.js" "ui/handheld/iphoneV2/Services/FunnelService.js" "ui/handheld/iphoneV2/Services/GoalsService.js" "ui/handheld/iphoneV2/Services/ImageService.js" "ui/handheld/iphoneV2/Services/ManagerService.js" "ui/handheld/iphoneV2/Services/ModuleService.js" "ui/handheld/iphoneV2/Services/OfflineService.js" "ui/handheld/iphoneV2/Services/OrganizationService.js" "ui/handheld/iphoneV2/Services/ReportingService.js" "ui/handheld/iphoneV2/Services/TeamService.js" "ui/handheld/iphoneV2/Services/UserService.js" "ui/handheld/iphoneV2/Tasks/NewTaskV2.js" "ui/handheld/request/RequestInfo.js" "ui/handheld/request/RequestInfo2.js" "ui/lib/LPTableView.js" "ui/lib/ScrollView.js" "ui/lib/underscore-min.js" "ti.cloud.js" "_app_props_.json" [INFO] : Writing /Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets/app.json [INFO] : Extracting module resources: /Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-analytics.res.zip [INFO] : Extracting module resources: /Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-android.res.zip [INFO] : Extracting module resources: /Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-app.res.zip [INFO] : Extracting module resources: /Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-filesystem.res.zip [INFO] : Extracting module resources: /Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-media.res.zip [INFO] : Extracting module resources: /Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-locale.res.zip [INFO] : Extracting module resources: /Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-network.res.zip [INFO] : Extracting module resources: /Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-xml.res.zip [INFO] : Extracting module resources: /Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-platform.res.zip [INFO] : Extracting module resources: /Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-utils.res.zip [INFO] : Extracting module resources: /Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-calendar.res.zip [INFO] : Extracting module resources: /Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-geolocation.res.zip [INFO] : Extracting module resources: /Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-contacts.res.zip [INFO] : Extracting module resources: /Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-map.res.zip [INFO] : No aidl files to compile, continuing [INFO] : Generating i18n files [INFO] : Generating /Users/pladis/Documents/LPDevices/IOS/build/android/res/values/theme.xml [INFO] : Packaging application: /Users/pladis/Library/android-sdk-macosx/build-tools/22.0.1/aapt "package" "-f" "-m" "-J" "/Users/pladis/Documents/LPDevices/IOS/build/android/gen" "-M" "/Users/pladis/Documents/LPDevices/IOS/build/android/AndroidManifest.xml" "-A" "/Users/pladis/Documents/LPDevices/IOS/build/android/bin/assets" "-S" "/Users/pladis/Documents/LPDevices/IOS/build/android/res" "-I" "/Users/pladis/Library/android-sdk-macosx/platforms/android-21/android.jar" "-F" "/Users/pladis/Documents/LPDevices/IOS/build/android/bin/app.ap_" "--auto-add-overlay" "--extra-packages" "ti.modules.titanium.ui:android.support.v7.appcompat:com.google.android.gms" "-S" "/var/folders/17/5jc_3fjj0g5b23dwqs5zm7kc0000gq/T/115722-47431-169cjdm/res" "-S" "/var/folders/17/5jc_3fjj0g5b23dwqs5zm7kc0000gq/T/115722-47431-oedkhc/res" [INFO] : Building Java source files: /Library/Java/JavaVirtualMachines/jdk1.7.0_71.jdk/Contents/Home/bin/javac "-J-Xmx256M" "-encoding" "utf8" "-bootclasspath" "/Users/pladis/Library/android-sdk-macosx/platforms/android-21/android.jar:/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/kroll-v8.jar:/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-analytics.jar:/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/aps-analytics.jar:/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-android.jar:/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/jaxen-1.1.1.jar:/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/ti-commons-codec-1.3.jar:/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/kroll-common.jar:/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/titanium.jar:/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-app.jar:/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-ui.jar:/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/nineoldandroids-appc-2.4.0.jar:/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-filesystem.jar:/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-media.jar:/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-appcompat.jar:/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/android-support-v4.jar:/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/android-support-v7-appcompat.jar:/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-locale.jar:/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-network.jar:/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/thirdparty.jar:/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-xml.jar:/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-platform.jar:/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-utils.jar:/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-calendar.jar:/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-geolocation.jar:/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-contacts.jar:/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-map.jar:/Users/pladis/Library/Application Support/Titanium/modules/android/de.marcelpociot.androidpdfviewer/1.0/androidpdfviewer.jar:/Users/pladis/Library/Application Support/Titanium/modules/android/ti.mediapicker/1.0.2/timediapicker.jar:/Users/pladis/Library/Application Support/Titanium/modules/android/net.iamyellow.gcmjs/0.2/gcmjs.jar:/Users/pladis/Library/Application Support/Titanium/modules/android/net.iamyellow.gcmjs/0.2/lib/gcm.jar:/Users/pladis/Library/Application Support/Titanium/modules/android/ti.styledlabel/2.0.1/styledlabel.jar:/Users/pladis/Library/Application Support/Titanium/modules/android/ti.styledlabel/2.0.1/lib/tagsoup-1.2.1.jar:/Users/pladis/Library/Application Support/Titanium/modules/android/ti.imagefactory/2.2.1/imagefactory.jar:/Users/pladis/Library/Application Support/Titanium/modules/android/ti.paint/2.0.2/paint.jar:/Users/pladis/Library/Application Support/Titanium/modules/android/appcelerator.salesforce/1.1.0/salesforce.jar:/Users/pladis/Library/Application Support/Titanium/modules/android/ti.cloudpush/3.3.8/cloudpush.jar:/Users/pladis/Library/Application Support/Titanium/modules/android/ti.cloudpush/3.3.8/lib/aps-cloudpush-1.1.4.jar:/Users/pladis/Library/Application Support/Titanium/modules/android/ti.cloudpush/3.3.8/lib/google-play-services.jar:/Users/pladis/Library/Application Support/Titanium/modules/android/ti.map/2.3.1/map.jar:/Users/pladis/Library/Application Support/Titanium/modules/android/fh.imagefactory/1.1/fhimagefactory.jar:/Users/pladis/Library/Application Support/Titanium/modules/android/dk.napp.drawer/1.1.5.RC/nappslide.jar:/Users/pladis/Library/Application Support/Titanium/modules/android/com.mykingdom.media/1.0/media.jar:/Users/pladis/Library/Application Support/Titanium/modules/android/prakash.garbagecollector/1.0/garbagecollector.jar:/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/kroll-apt.jar:/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/lib/titanium-verify.jar:Manifest.class:R.class:ApplicationStylesheet.class:AssetCryptImpl.class:LilypadActivity.class:LilypadAppInfo.class:LilypadApplication.class" "-d" "/Users/pladis/Documents/LPDevices/IOS/build/android/bin/classes" "-proc:none" "-target" "1.6" "-source" "1.6" "@/Users/pladis/Documents/LPDevices/IOS/build/android/java-sources.txt" [INFO] : Running dexer: /Library/Java/JavaVirtualMachines/jdk1.7.0_71.jdk/Contents/Home/bin/java "-Xmx1024M" "-XX:-UseGCOverheadLimit" "-Djava.ext.dirs=/Users/pladis/Library/android-sdk-macosx/platform-tools" "-jar" "/Users/pladis/Library/android-sdk-macosx/build-tools/22.0.1/lib/dx.jar" "--dex" "--output=/Users/pladis/Documents/LPDevices/IOS/build/android/bin/classes.dex" "/Users/pladis/Documents/LPDevices/IOS/build/android/bin/classes" "/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/lib/titanium-verify.jar" "/Users/pladis/Library/Application Support/Titanium/modules/android/de.marcelpociot.androidpdfviewer/1.0/androidpdfviewer.jar" "/Users/pladis/Library/Application Support/Titanium/modules/android/ti.mediapicker/1.0.2/timediapicker.jar" "/Users/pladis/Library/Application Support/Titanium/modules/android/net.iamyellow.gcmjs/0.2/gcmjs.jar" "/Users/pladis/Library/Application Support/Titanium/modules/android/net.iamyellow.gcmjs/0.2/lib/gcm.jar" "/Users/pladis/Library/Application Support/Titanium/modules/android/ti.styledlabel/2.0.1/styledlabel.jar" "/Users/pladis/Library/Application Support/Titanium/modules/android/ti.styledlabel/2.0.1/lib/tagsoup-1.2.1.jar" "/Users/pladis/Library/Application Support/Titanium/modules/android/ti.imagefactory/2.2.1/imagefactory.jar" "/Users/pladis/Library/Application Support/Titanium/modules/android/ti.paint/2.0.2/paint.jar" "/Users/pladis/Library/Application Support/Titanium/modules/android/appcelerator.salesforce/1.1.0/salesforce.jar" "/Users/pladis/Library/Application Support/Titanium/modules/android/ti.cloudpush/3.3.8/cloudpush.jar" "/Users/pladis/Library/Application Support/Titanium/modules/android/ti.cloudpush/3.3.8/lib/aps-cloudpush-1.1.4.jar" "/Users/pladis/Library/Application Support/Titanium/modules/android/ti.cloudpush/3.3.8/lib/google-play-services.jar" "/Users/pladis/Library/Application Support/Titanium/modules/android/ti.map/2.3.1/map.jar" "/Users/pladis/Library/Application Support/Titanium/modules/android/fh.imagefactory/1.1/fhimagefactory.jar" "/Users/pladis/Library/Application Support/Titanium/modules/android/dk.napp.drawer/1.1.5.RC/nappslide.jar" "/Users/pladis/Library/Application Support/Titanium/modules/android/com.mykingdom.media/1.0/media.jar" "/Users/pladis/Library/Application Support/Titanium/modules/android/prakash.garbagecollector/1.0/garbagecollector.jar" "/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/kroll-v8.jar" "/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-analytics.jar" "/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/aps-analytics.jar" "/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-android.jar" "/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/jaxen-1.1.1.jar" "/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/ti-commons-codec-1.3.jar" "/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/kroll-common.jar" "/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/titanium.jar" "/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-app.jar" "/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-ui.jar" "/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/nineoldandroids-appc-2.4.0.jar" "/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-filesystem.jar" "/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-media.jar" "/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-appcompat.jar" "/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/android-support-v4.jar" "/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/android-support-v7-appcompat.jar" "/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-locale.jar" "/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-network.jar" "/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/thirdparty.jar" "/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-xml.jar" "/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-platform.jar" "/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-utils.jar" "/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-calendar.jar" "/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-geolocation.jar" "/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-contacts.jar" "/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/modules/titanium-map.jar" [INFO] : Creating unsigned apk [INFO] : Processing /Users/pladis/Documents/LPDevices/IOS/build/android/src [INFO] : Writing unsigned apk: /Users/pladis/Documents/LPDevices/IOS/build/android/bin/app-unsigned.apk [INFO] : Using MD5withRSA signature algorithm [INFO] : Signing apk: /Library/Java/JavaVirtualMachines/jdk1.7.0_71.jdk/Contents/Home/bin/jarsigner "-sigalg" "MD5withRSA" "-digestalg" "SHA1" "-keystore" "/Users/pladis/Library/Application Support/Titanium/mobilesdk/osx/4.1.0.GA/android/dev_keystore" "-storepass" "*******" "-signedjar" "/Users/pladis/Documents/LPDevices/IOS/build/android/bin/LilyPad.apk" "/Users/pladis/Documents/LPDevices/IOS/build/android/bin/app-unsigned.apk" "tidev" [INFO] : Aligning zip file: /Users/pladis/Library/android-sdk-macosx/build-tools/22.0.1/zipalign "-v" "4" "/Users/pladis/Documents/LPDevices/IOS/build/android/bin/LilyPad.apk" "/Users/pladis/Documents/LPDevices/IOS/build/android/bin/LilyPad.apkz" [INFO] : Writing build manifest: /Users/pladis/Documents/LPDevices/IOS/build/android/build-manifest.json [INFO] : Making sure the adb server is running [INFO] : Installing apk: /Users/pladis/Documents/LPDevices/IOS/build/android/bin/LilyPad.apk [INFO] : Installing app on device: SAMSUNG-SM-G890A [INFO] : App successfully installed [INFO] : Starting app: com.lilypadsolutions.lilypadappV2/.LilypadActivity [INFO] : Application pid: 25009 -- Start application log ----------------------------------------------------- [ERROR] : Zygote: MountEmulatedStorage() [INFO] : SELinux: Function: selinux_compare_spd_ram , priority [2] , priority version is VE=SEPF_SAMSUNG-SM-G890A_5.0.2_0011 [ERROR] : Zygote: v2 [ERROR] : SELinux: [DEBUG] get_category: variable seinfo: default sensitivity: NULL, cateogry: NULL [INFO] : InjectionManager: Inside getClassLibPath + mLibMap{0=, 1=} [INFO] : Project built successfully in 1m 51s 821ms [INFO] : InjectionManager: Inside getClassLibPath caller [INFO] : TiApplication: (main) [0,0] checkpoint, app created. [INFO] : TiApplication: (main) [190,190] Titanium 4.1.0 (2015/07/06 11:15 d57aa7d) [INFO] : TiApplication: (main) [246,436] Titanium Javascript runtime: v8 [INFO] : InjectionManager: Constructor com.lilypadsolutions.lilypadappV2, Feature store :{} [INFO] : InjectionManager: featureStore :{} [WARN] : V8Object: (KrollRuntimeThread) [37,493] Runtime disposed, cannot set property 'userAgent' [WARN] : linker: libti.styledlabel.so has text relocations. This is wasting memory and prevents security hardening. Please fix. [WARN] : linker: libti.paint.so has text relocations. This is wasting memory and prevents security hardening. Please fix. [WARN] : linker: libti.cloudpush.so has text relocations. This is wasting memory and prevents security hardening. Please fix. [WARN] : linker: libti.imagefactory.so has text relocations. This is wasting memory and prevents security hardening. Please fix. [WARN] : linker: libti.mediapicker.so has text relocations. This is wasting memory and prevents security hardening. Please fix. [INFO] : TiRootActivity: (main) [0,0] checkpoint, on root activity create, savedInstanceState: null [INFO] : TiApplication: (main) [1,1] Analytics have been disabled [INFO] : SIZE: 2560 [INFO] : LOGIN userParse {"_id":"54850a61133307c24107266f","username":"tester2@oskarblues.com","externalAccounts":{"oskarblues":{"territories":["AK","AS","AR","MA"]},"acs":{"token":"OFfK-mkNcexPr2KM0pcmiY23Bbg","lastActivity":"2015-03-30T21:47:01.486Z"}},"team":{"_id":"535e5ad21316e90da8190076"},"org":{"_id":"535e5ad2891fdf453413294a"},"manager":[{"_id":"535e5ad21316e90da8190076"}],"admin":true,"first_name":"LilyPad","last_name":"Team","fullname":"LilyPad Team","photo":{"_id":"55007d1ac069eb7fa50e7b2e","url":"https://s3.amazonaws.com/lilypadimagefiles/535e5ad2891fdf453413294a/557838c5067b06b020c18be9_square_75.png"},"notifications":{"email":{"weeklyrecap":{"time":"1970-01-01T21:30:00.000Z","active":true},"quote":{"time":"1970-01-01T13:00:00.000Z","active":true}},"push":{"feed":{"post":{"active":true}},"inactivity":{"active":true,"time":"1970-01-01T21:30:00.000Z"},"quote":{"active":true,"time":"1970-01-01T21:30:00.000Z"}}},"client":{"version":"6.0.19","os":"android","device_token":"APA91bGcor_PJPJGPuV5geBhncy5sp_JVrMOo9SDpri4qy3L-CaRCRzf8ZLzNOK_Z2XbGtMMR8sWdipnw5dpKRlYnhqzr6oi1GnKiPNZFTo-aoFHBDiluZLRKBaSCBYcciPCw0N2KaJ9vdI-Oe6bAacJUQpNaugW-w"},"title":"","aboutme":"","phone":"813-785-6241","_link":{"accounts":"/v3/users/54850a61133307c24107266f/accounts","insights":"/v3/users/54850a61133307c24107266f/insights","journal":{"self":"/v3/journals/54850a61133307c24107266f","entries":"/v3/journals/54850a61133307c24107266f/entries"},"points":"/v3/users/54850a61133307c24107266f/points","timeline":"/v3/users/54850a61133307c24107266f/timeline","activities":"/v3/teams/535e5ad21316e90da8190076/activities","org_activities":"/v3/organization/535e5ad2891fdf453413294a/activities","org_teams":"/v3/organization/535e5ad2891fdf453413294a/teams","team_contests":"/v3/teams/535e5ad21316e90da8190076/contests","team_documents":"/v3/teams/535e5ad21316e90da8190076/documents","team_leaderboard":"/v3/teams/535e5ad21316e90da8190076/leaderboard","createfeed":"/social/v3/feed?orgid=535e5ad2891fdf453413294a","autofillactivities":"/v3/autofillactivities","modules":"[{\"title\":\"Funnel\",\"types\":[{\"_id\":\"5512f09b8107f9b7e216a1e3\",\"status\":\"process\",\"name\":\"account\",\"title\":\"Account(s)\",\"url\":\"/v3/funnelactivity?type=5512f09b8107f9b7e216a1e3\",\"metadata\":[{\"displayname\":\"Contact\",\"name\":\"contact\",\"fieldtype\":1},{\"displayname\":\"Phone\",\"name\":\"phone\",\"fieldtype\":2},{\"displayname\":\"Email\",\"name\":\"email\",\"fieldtype\":3},{\"displayname\":\"Address\",\"name\":\"address\",\"fieldtype\":4},{\"displayname\":\"Account Snapshot\",\"name\":\"accountsnapshot\",\"fieldtype\":6}],\"stages\":[{\"_id\":\"553ed37ae4b0bde7020ae258\",\"name\":\"Key Accounts\"},{\"_id\":\"5515ad43cf37d3f6fb241882\",\"name\":\"General Market\",\"isdefault\":true},{\"_id\":\"553ed392e4b0bde7020ae259\",\"name\":\"Potential\"}]},{\"_id\":\"5589c65521d9be4728416ee9\",\"name\":\"distributor\",\"title\":\"Distributor(s)\",\"status\":\"process\",\"url\":\"/v3/funnelactivity?type=5589c65521d9be4728416ee9\",\"metadata\":[{\"displayname\":\"Contact\",\"name\":\"contact\",\"fieldtype\":1},{\"displayname\":\"Phone\",\"name\":\"phone\",\"fieldtype\":2},{\"displayname\":\"Email\",\"name\":\"email\",\"fieldtype\":3},{\"displayname\":\"Address\",\"name\":\"address\",\"fieldtype\":4}],\"stages\":[{\"_id\":\"5515ad43cf37d3f6fb241882\",\"name\":\"Active\",\"isdefault\":true},{\"_id\":\"553ed392e4b0bde7020ae259\",\"name\":\"Potential\"},{\"_id\":\"553ed37ae4b0bde7020ae258\",\"name\":\"Key Accounts\"}]}]},{\"types\":[]},{\"title\":\"Reports\",\"types\":[{\"_id\":\"55888e0428b5cc9a9aab392f\",\"status\":\"view\",\"name\":\"report\",\"title\":\"Report(s)\",\"url\":\"/v3/reports/oskarblues?type=55888e0428b5cc9a9aab392f\"}]}]"}} [INFO] : Is also a manager 1 [INFO] : Building manager view [INFO] : BUILT MANAGER VIEW 1 [INFO] : BUILT createFilterWindow VIEW [INFO] : DASH [INFO] : HOME [INFO] : Load Home [INFO] : TL [INFO] : IN ACT FORM [INFO] : IN ACT [INFO] : ACT LOAD [INFO] : ACtivity Servce updateStates [INFO] : userserviceobj.points(today [INFO] : DASH LOAD [INFO] : FEED LOAD [INFO] : FeedService Service updateStats [INFO] : TL LOAD [INFO] : RESUMED DEVICE TOKEN WORK [INFO] : DEVICE TOKEN WORK [ERROR] : gcmjs: (KrollRuntimeThread) [1518,1519] Trying to unregister but user was not registered. [INFO] : MIXPANEL SETUPUSER [INFO] : mixpanel people.set [object Object] [INFO] : MIX PANEL PAYLOAD:{"$set":{"mobile_osname":"android","mobile_ostype":"32bit","mobile_osversion":"5.0.2","mobile_device_mfg":"samsung","mobile_device_model":"SAMSUNG-SM-G890A","mobile_locale":"en-US","$first_name":"LilyPad","$last_name":"Team","$username":"tester2@oskarblues.com","$email":"tester2@oskarblues.com","$phone":"813-785-6241","isManager":true,"organization":"Oskar Blues"},"$token":"3e8c21b1c4c9a8174116e42b67a35a41","$distinct_id":"54850a61133307c24107266f"} [INFO] : MIXPANEL SETUPUSER END [INFO] : LOG EVENT: Started [INFO] : Setting up User: {"_id":"54850a61133307c24107266f","username":"tester2@oskarblues.com","externalAccounts":{"oskarblues":{"territories":["AK","AS","AR","MA"]},"acs":{"token":"OFfK-mkNcexPr2KM0pcmiY23Bbg","lastActivity":"2015-03-30T21:47:01.486Z"}},"team":{"_id":"535e5ad21316e90da8190076"},"org":{"_id":"535e5ad2891fdf453413294a"},"manager":[{"_id":"535e5ad21316e90da8190076"}],"admin":true,"first_name":"LilyPad","last_name":"Team","fullname":"LilyPad Team","photo":{"_id":"55007d1ac069eb7fa50e7b2e","url":"https://s3.amazonaws.com/lilypadimagefiles/535e5ad2891fdf453413294a/557838c5067b06b020c18be9_square_75.png"},"notifications":{"email":{"weeklyrecap":{"time":"1970-01-01T21:30:00.000Z","active":true},"quote":{"time":"1970-01-01T13:00:00.000Z","active":true}},"push":{"feed":{"post":{"active":true}},"inactivity":{"active":true,"time":"1970-01-01T21:30:00.000Z"},"quote":{"active":true,"time":"1970-01-01T21:30:00.000Z"}}},"client":{"version":"6.0.19","os":"android","device_token":"APA91bGcor_PJPJGPuV5geBhncy5sp_JVrMOo9SDpri4qy3L-CaRCRzf8ZLzNOK_Z2XbGtMMR8sWdipnw5dpKRlYnhqzr6oi1GnKiPNZFTo-aoFHBDiluZLRKBaSCBYcciPCw0N2KaJ9vdI-Oe6bAacJUQpNaugW-w"},"title":"","aboutme":"","phone":"813-785-6241","_link":{"accounts":"/v3/users/54850a61133307c24107266f/accounts","insights":"/v3/users/54850a61133307c24107266f/insights","journal":{"self":"/v3/journals/54850a61133307c24107266f","entries":"/v3/journals/54850a61133307c24107266f/entries"},"points":"/v3/users/54850a61133307c24107266f/points","timeline":"/v3/users/54850a61133307c24107266f/timeline","activities":"/v3/teams/535e5ad21316e90da8190076/activities","org_activities":"/v3/organization/535e5ad2891fdf453413294a/activities","org_teams":"/v3/organization/535e5ad2891fdf453413294a/teams","team_contests":"/v3/teams/535e5ad21316e90da8190076/contests","team_documents":"/v3/teams/535e5ad21316e90da8190076/documents","team_leaderboard":"/v3/teams/535e5ad21316e90da8190076/leaderboard","createfeed":"/social/v3/feed?orgid=535e5ad2891fdf453413294a","autofillactivities":"/v3/autofillactivities","modules":"[{\"title\":\"Funnel\",\"types\":[{\"_id\":\"5512f09b8107f9b7e216a1e3\",\"status\":\"process\",\"name\":\"account\",\"title\":\"Account(s)\",\"url\":\"/v3/funnelactivity?type=5512f09b8107f9b7e216a1e3\",\"metadata\":[{\"displayname\":\"Contact\",\"name\":\"contact\",\"fieldtype\":1},{\"displayname\":\"Phone\",\"name\":\"phone\",\"fieldtype\":2},{\"displayname\":\"Email\",\"name\":\"email\",\"fieldtype\":3},{\"displayname\":\"Address\",\"name\":\"address\",\"fieldtype\":4},{\"displayname\":\"Account Snapshot\",\"name\":\"accountsnapshot\",\"fieldtype\":6}],\"stages\":[{\"_id\":\"553ed37ae4b0bde7020ae258\",\"name\":\"Key Accounts\"},{\"_id\":\"5515ad43cf37d3f6fb241882\",\"name\":\"General Market\",\"isdefault\":true},{\"_id\":\"553ed392e4b0bde7020ae259\",\"name\":\"Potential\"}]},{\"_id\":\"5589c65521d9be4728416ee9\",\"name\":\"distributor\",\"title\":\"Distributor(s)\",\"status\":\"process\",\"url\":\"/v3/funnelactivity?type=5589c65521d9be4728416ee9\",\"metadata\":[{\"displayname\":\"Contact\",\"name\":\"contact\",\"fieldtype\":1},{\"displayname\":\"Phone\",\"name\":\"phone\",\"fieldtype\":2},{\"displayname\":\"Email\",\"name\":\"email\",\"fieldtype\":3},{\"displayname\":\"Address\",\"name\":\"address\",\"fieldtype\":4}],\"stages\":[{\"_id\":\"5515ad43cf37d3f6fb241882\",\"name\":\"Active\",\"isdefault\":true},{\"_id\":\"553ed392e4b0bde7020ae259\",\"name\":\"Potential\"},{\"_id\":\"553ed37ae4b0bde7020ae258\",\"name\":\"Key Accounts\"}]}]},{\"types\":[]},{\"title\":\"Reports\",\"types\":[{\"_id\":\"55888e0428b5cc9a9aab392f\",\"status\":\"view\",\"name\":\"report\",\"title\":\"Report(s)\",\"url\":\"/v3/reports/oskarblues?type=55888e0428b5cc9a9aab392f\"}]}]"}} [INFO] : mixpanel track Started [INFO] : intSub[object Object] [INFO] : I/System.out: Thread-4993(ApacheHTTPLog):Reading from variable values from setDefaultValuesToVariables [INFO] : I/System.out: Thread-4986(ApacheHTTPLog):Reading from variable values from setDefaultValuesToVariables [INFO] : I/System.out: Thread-4988(ApacheHTTPLog):Reading from variable values from setDefaultValuesToVariables [INFO] : I/System.out: Thread-4990(ApacheHTTPLog):Reading from variable values from setDefaultValuesToVariables [INFO] : I/System.out: Thread-4990(ApacheHTTPLog):isSBSettingEnabled false [INFO] : I/System.out: Thread-4993(ApacheHTTPLog):isSBSettingEnabled false [INFO] : I/System.out: Thread-4990(ApacheHTTPLog):isShipBuild true [INFO] : I/System.out: Thread-4990(ApacheHTTPLog):SMARTBONDING_ENABLED is false [INFO] : I/System.out: Thread-4993(ApacheHTTPLog):isShipBuild true [INFO] : I/System.out: Thread-4990(ApacheHTTPLog):SmartBonding Enabling is false, SHIP_BUILD is true, log to file is false, DBG is false [INFO] : I/System.out: Thread-4993(ApacheHTTPLog):SMARTBONDING_ENABLED is false [INFO] : I/System.out: Thread-4993(ApacheHTTPLog):SmartBonding Enabling is false, SHIP_BUILD is true, log to file is false, DBG is false [INFO] : I/System.out: Thread-4988(ApacheHTTPLog):isSBSettingEnabled false [INFO] : I/System.out: Thread-4988(ApacheHTTPLog):isShipBuild true [INFO] : I/System.out: Thread-4988(ApacheHTTPLog):SMARTBONDING_ENABLED is false [INFO] : I/System.out: Thread-4988(ApacheHTTPLog):SmartBonding Enabling is false, SHIP_BUILD is true, log to file is false, DBG is false [INFO] : I/System.out: Thread-4986(ApacheHTTPLog):isSBSettingEnabled false [INFO] : I/System.out: Thread-4986(ApacheHTTPLog):isShipBuild true [INFO] : I/System.out: Thread-4986(ApacheHTTPLog):SMARTBONDING_ENABLED is false [INFO] : I/System.out: Thread-4986(ApacheHTTPLog):SmartBonding Enabling is false, SHIP_BUILD is true, log to file is false, DBG is false [INFO] : I/System.out: TiHttpClient-4 calls detatch() [INFO] : ACtivity Servce getActivities forsalesteam: 535e5ad21316e90da8190076 [INFO] : I/System.out: Thread-4995(ApacheHTTPLog):isSBSettingEnabled false [INFO] : I/System.out: Thread-4995(ApacheHTTPLog):isShipBuild true [INFO] : I/System.out: Thread-4995(ApacheHTTPLog):SMARTBONDING_ENABLED is false [INFO] : I/System.out: Thread-4995(ApacheHTTPLog):SmartBonding Enabling is false, SHIP_BUILD is true, log to file is false, DBG is false [INFO] : Timeline: Timeline: Activity_launch_request id:com.lilypadsolutions.lilypadappV2 time:268536150 [INFO] : I/System.out: Thread-4997(ApacheHTTPLog):isSBSettingEnabled false [INFO] : I/System.out: Thread-4997(ApacheHTTPLog):isShipBuild true [INFO] : I/System.out: Thread-4997(ApacheHTTPLog):SMARTBONDING_ENABLED is false [INFO] : I/System.out: Thread-4997(ApacheHTTPLog):SmartBonding Enabling is false, SHIP_BUILD is true, log to file is false, DBG is false [INFO] : InjectionManager: dispatchOnViewCreated > Target : com.lilypadsolutions.lilypadappV2.LilypadActivity isFragment :false [INFO] : TiRootActivity: (main) [0,0] checkpoint, on root activity resume. activity = com.lilypadsolutions.lilypadappV2.LilypadActivity@f919b3e [INFO] : network changed: WIFI [INFO] : device is online [INFO] : Offline Service: online [INFO] : I/System.out: TiHttpClient-6 calls detatch() [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : I/System.out: TiHttpClient-1 calls detatch() [INFO] : I/System.out: TiHttpClient-3 calls detatch() [WARN] : IdleConnectionHandler: Removing a connection that never existed! [ERROR] : TiHttpClient: (TiHttpClient-3) [232,232] HTTP Error (org.apache.http.client.HttpResponseException): Not Found [ERROR] : TiHttpClient: org.apache.http.client.HttpResponseException: Not Found [ERROR] : TiHttpClient: at ti.modules.titanium.network.TiHTTPClient$ClientRunnable.run(TiHTTPClient.java:1369) [ERROR] : TiHttpClient: at java.lang.Thread.run(Thread.java:818) [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : InjectionManager: dispatchOnViewCreated > Target : org.appcelerator.titanium.TiActivity isFragment :false [INFO] : I/System.out: TiHttpClient-5 calls detatch() [INFO] : OpenGLRenderer: Initialized EGL, version 1.4 [INFO] : OpenGLRenderer: HWUI protection enabled for context , &this =0xddf22088 ,&mEglDisplay = 1 , &mEglConfig = -570809700 [INFO] : I/System.out: TiHttpClient-2 calls detatch() [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : art: Background sticky concurrent mark sweep GC freed 49822(2MB) AllocSpace objects, 49(1799KB) LOS objects, 7% free, 57MB/61MB, paused 2.315ms total 125.602ms [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : DIFF1843 [INFO] : ACtivity Service points SUCCESS [INFO] : userserviceobj.points(week [INFO] : InjectionManager: dispatchCreateOptionsMenu :org.appcelerator.titanium.TiActivity [INFO] : InjectionManager: dispatchPrepareOptionsMenu :org.appcelerator.titanium.TiActivity [INFO] : I/System.out: Thread-5005(ApacheHTTPLog):isSBSettingEnabled false [INFO] : I/System.out: Thread-5005(ApacheHTTPLog):isShipBuild true [INFO] : I/System.out: Thread-5005(ApacheHTTPLog):SMARTBONDING_ENABLED is false [INFO] : I/System.out: Thread-5005(ApacheHTTPLog):SmartBonding Enabling is false, SHIP_BUILD is true, log to file is false, DBG is false [INFO] : I/System.out: TiHttpClient-7 calls detatch() [INFO] : Choreographer: Skipped 63 frames! The application may be doing too much work on its main thread. [ERROR] : OpenGLRenderer: Binary Shader Found (b0000000000000000) [ERROR] : OpenGLRenderer: Binary Shader Initialized key b0000000000000000 1 [ERROR] : OpenGLRenderer: Binary Shader Found (b0000000000000001) [ERROR] : OpenGLRenderer: Binary Shader Initialized key b0000000000000001 2 [ERROR] : OpenGLRenderer: Binary Shader Found (b0000000800000003) [ERROR] : OpenGLRenderer: Binary Shader Initialized key b0000000800000003 3 [ERROR] : OpenGLRenderer: Binary Shader Found (b0000003800000000) [ERROR] : OpenGLRenderer: Binary Shader Initialized key b0000003800000000 4 [INFO] : Feed LOAD length: 50 [INFO] : Home updatefeed [INFO] : Feed length: 50 [INFO] : contenttype:{} [INFO] : getContentHAnother Whole Foods getting DREAMY [INFO] : getContentH34 [INFO] : contenttype:{} [INFO] : getContentHIt's starting.... [INFO] : getContentH17 [INFO] : contenttype:{} [INFO] : getContentHBe there or be square! [INFO] : getContentH22 [INFO] : contenttype:{} [INFO] : getContentHIf you build it... Dales will come! Field of Dreams, Dyersville, Iowa [INFO] : getContentH70 [INFO] : contenttype:{} [INFO] : getContentHFriday tasting at its finest!! Is the sign big enough?? [INFO] : getContentH55 [INFO] : contenttype:{} [INFO] : getContentHA lovely evening for some Zoo action. [INFO] : getContentH38 [INFO] : contenttype:{} [INFO] : getContentHThe Flagship. #1 Priority. The Avenue Pub in St. Pete, FL. Permanent handle. [INFO] : getContentH80 [INFO] : contenttype:{} [INFO] : Timeline: Timeline: Activity_idle id: android.os.BinderProxy@13da42d0 time:268537938 [INFO] : Timeline: Timeline: Activity_idle id: android.os.BinderProxy@42146c0 time:268537938 [INFO] : getContentHNice little IPA display to go with the mountain of DPA [INFO] : getContentH54 [INFO] : contenttype:{} [INFO] : getContentHFirst thing you see walking in the door at Superior Liquor. Ready to move some beer this weekend! [INFO] : getContentH98 [INFO] : contenttype:{} [INFO] : contenttype:{} [INFO] : getContentHGettin Saint Lou all hyped on OB IPA!!!! [INFO] : getContentH40 [INFO] : contenttype:{} [INFO] : getContentHTour De Brew!!! 195 Riders with Oskar Blues as the featured brewery. Stop #2 Cycle Works in Lincoln, Nebraska. Pinner, Saison Morado, and Juicy Wolff on tap! [INFO] : getContentH157 [INFO] : contenttype:{} [INFO] : getContentHCheers! IPA now available at The Cow! [INFO] : getContentH37 [INFO] : contenttype:{} [INFO] : getContentH...and if you don't know, NOW YOU KNOW. #obipa [INFO] : getContentH48 [INFO] : contenttype:{} [INFO] : getContentHDas Biergarten Jupiter, FL. Beer cap in the bucket = free beer. We also have college and nfl features [INFO] : getContentH104 [INFO] : contenttype:{} [INFO] : getContentHSweet new door decal! [INFO] : getContentH22 [INFO] : contenttype:{} [INFO] : getContentHNew account down here in the Springs rolling with $2 OB can Tuesdays! Picture is from their Facebook page. They love us! [INFO] : getContentH120 [INFO] : contenttype:{} [INFO] : getContentHNew case stack sign to be seen from both sides! [INFO] : getContentH47 [INFO] : contenttype:{} [INFO] : getContentHIt's a beautiful day to sprinkle OB IPA with Dale's around STL. [INFO] : getContentH64 [INFO] : contenttype:{} [INFO] : getContentHFloor display at Hazel's Beverage World in Boulder. Needed a panoramic pic to fit it all in! [INFO] : getContentH93 [INFO] : contenttype:{} [INFO] : getContentHClock Out, Tap In! [INFO] : getContentH19 [INFO] : contenttype:{} [INFO] : getContentHI'm going to do a Tap Takeover in the Quad Cities Old Chicago... This Big!!!!!! [INFO] : getContentH79 [INFO] : contenttype:{} [INFO] : getContentHDestroyed Schnucks with a Saturday afternoon sampling. Sold out of all Dale's, Mama's & Pinner in house. Put a nice dent in remaining Gubna & Deviant's too! [INFO] : getContentH158 [INFO] : contenttype:{} [INFO] : getContentHUnion Jack Liquor stackin em up high! [INFO] : getContentH37 [INFO] : contenttype:{} [INFO] : getContentHPoured Dale's and Pinner at America On Tap Festival in Wilmington, DE. We had a prime spot with a steady line. [INFO] : getContentH111 [INFO] : contenttype:{} [INFO] : getContentHBierdman's in Plymouth [INFO] : getContentH23 [INFO] : contenttype:{} [INFO] : getContentHPublix on palm beach island. Holding space for OBIPA. Pinner & Old Chub are on the other side of DPA [INFO] : getContentH102 [INFO] : contenttype:{} [INFO] : getContentHBeer & Bacon flights at Paddy Longs to support August BOTM feature. [INFO] : getContentH68 [INFO] : contenttype:{} [INFO] : contenttype:{} [INFO] : getContentHEasy trippin in Taos. [INFO] : getContentH21 [INFO] : contenttype:{} [INFO] : Knoxville Nationals!!! The sprint car capital of the world!!!! We need a Dales Sprint car!!! Jen Whitney and I doing our thang in Knoxville, Iowa!!! [INFO] : 149 [INFO] : getContentHKnoxville Nationals!!! The sprint car capital of the world!!!! We need a Dales Sprint car!!! Jen Whitney and I doing our thang in Knoxville, Iowa!!! [INFO] : getContentH149 [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : art: Background partial concurrent mark sweep GC freed 37371(2007KB) AllocSpace objects, 13(10MB) LOS objects, 24% free, 49MB/65MB, paused 9.553ms total 56.099ms [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : VIDEO FEEDITEM:{"author":{"name":"Luke Johnson","photo":"https://s3.amazonaws.com/lilypadimagefiles/535e5ad2891fdf453413294a/557101cadac63998176ac5c1_square_75.png","_link":{"user":"/v3/users/553e3bb154add893dda65692"}},"posted_at":"2015-08-16T06:53:21.553Z","content":"Knoxville Nationals!!! The sprint car capital of the world!!!! We need a Dales Sprint car!!! Jen Whitney and I doing our thang in Knoxville, Iowa!!!","photos":[],"video":{"url":"http://video.lilypad.co/535e5ad2891fdf453413294a/55d0331f9cca01a801b5bc43_original.mp4"},"contentType":{},"like_count":2,"you_liked":false,"comment_count":2,"_link":{"likes":"/social/v3/feed/55d0336157262f7c2316bbc4/likes","comments":"/social/v3/feed/55d0336157262f7c2316bbc4/comments","reportpost":"/social/v3/feed/55d0336157262f7c2316bbc4/reportpost","delete":"/social/v3/feed/55d0336157262f7c2316bbc4"},"homescreen":{"backgroundRepeat":false,"children":[{"bubbleParent":true,"backgroundColor":"transparent","zIndex":10,"backgroundRepeat":false,"height":30,"top":20,"opacity":0.9,"rect":{"height":30,"width":360,"y":20,"x":0},"visible":false,"size":{"height":30,"width":360,"y":0,"x":0},"keepScreenOn":false,"apiName":"Ti.UI.View","children":[{"bubbleParent":true,"enabled":true,"title":"Reload Feed","color":"blue","backgroundColor":"#D0CBCB","backgroundRepeat":false,"height":30,"borderWidth":3,"children":[],"rect":{"height":30,"width":165,"y":0,"x":98},"visible":true,"width":165,"size":{"height":30,"width":165,"y":0,"x":0},"keepScreenOn":false,"borderRadius":10,"borderColor":"#FFFFFF","apiName":"Ti.UI.Button","font":{"fontFamily":"Helvetica","fontSize":14},"_events":{"click":{}}}],"enabled":true,"_children":[{"bubbleParent":true,"enabled":true,"title":"Reload Feed","color":"blue","backgroundColor":"#D0CBCB","backgroundRepeat":false,"height":30,"borderWidth":3,"children":[],"rect":{"height":30,"width":165,"y":0,"x":98},"visible":true,"width":165,"size":{"height":30,"width":165,"y":0,"x":0},"keepScreenOn":false,"borderRadius":10,"borderColor":"#FFFFFF","apiName":"Ti.UI.Button","font":{"fontFamily":"Helvetica","fontSize":14},"_events":{"click":{}}}]},{"defaultItemTemplate":"messageview","enabled":true,"sections":[],"backgroundColor":"transparent","visible":true,"backgroundRepeat":false,"children":[],"caseInsensitiveSearch":true,"rect":{"height":484,"width":360,"y":0,"x":0},"apiName":"Ti.UI.ListView","size":{"height":484,"width":360,"y":0,"x":0},"keepScreenOn":false,"sectionCount":0,"bubbleParent":true,"templates":{"messagetemplateVideo":{"bindId":"parentview","properties":{"height":0,"selectedBackgroundColor":"#EAEAEA","backgroundColor":"#EAEAEA"},"childTemplates":[{"type":"Ti.UI.View","bindId":"messageview","properties":{"selectedBackgroundColor":"#349CA5","right":5,"left":5,"height":0,"borderRadius":4,"backgroundColor":"#FFFFFF","borderColor":"#CCCCCC","borderWidth":1},"childTemplates":[{"type":"Ti.UI.View","bindId":"authorView","properties":{"height":"60","top":0},"childTemplates":[{"type":"Ti.UI.ImageView","bindId":"author_image","properties":{"height":40,"width":40,"left":10,"backgroundImage":"/images/img-avatar-empty.png","borderRadius":4},"tiProxy":{"enabled":true,"backgroundRepeat":false,"height":40,"reverse":false,"paused":false,"children":[],"animating":false,"rect":{"height":0,"width":0,"y":0,"x":0},"visible":true,"width":40,"size":{"height":0,"width":0,"y":0,"x":0},"keepScreenOn":false,"apiName":"Ti.UI.ImageView","bubbleParent":true}},{"type":"Ti.UI.Label","bindId":"author_name_label","properties":{"left":60,"top":17,"height":30,"color":"#48B3B9"},"tiProxy":{"enabled":true,"backgroundRepeat":false,"height":30,"text":"","children":[],"rect":{"height":0,"width":0,"y":0,"x":0},"visible":true,"size":{"height":0,"width":0,"y":0,"x":0},"keepScreenOn":false,"apiName":"Ti.UI.Label","bubbleParent":true}},{"type":"Ti.UI.Label","bindId":"author_name_time","properties":{"left":60,"top":37,"color":"#343434","opacity":0.6,"font":{"fontFamily":"Helvetica-Light","fontSize":9}},"tiProxy":{"enabled":true,"backgroundRepeat":false,"text":"","children":[],"rect":{"height" [INFO] : : VIDEO LINK:http://video.lilypad.co/535e5ad2891fdf453413294a/55d0331f9cca01a801b5bc43_original.mp4 [INFO] : VideoContent LOADED: [INFO] : urlToload: http://video.lilypad.co/convert/535e5ad2891fdf453413294a/55d0331f9cca01a801b5bc43_original.mp4 [INFO] : URL LOADED: file:///data/data/com.lilypadsolutions.lilypadappV2/app_appdata/55d0331f9cca01a801b5bc43_original.mp4 [INFO] : contenttype:{} [INFO] : getContentHReppin Dale's and Pinner Spliff Mountain at the Knoxville Nationals yesterday! [INFO] : getContentH78 [INFO] : contenttype:{} [INFO] : getContentHMy Saturday > Your Saturday [INFO] : getContentH28 [INFO] : contenttype:{} [INFO] : getContentHFun little cross promotion the buyer and I worked up to support new can placement [INFO] : getContentH82 [INFO] : contenttype:"quote" [INFO] : quote length: 112 [INFO] : contenttype:{} [INFO] : getContentHYuengling Neon gone.. Dale's LED takes its place. [INFO] : getContentH50 [INFO] : contenttype:{} [INFO] : getContentHCiti Stop display #sturgill [INFO] : getContentH27 [INFO] : contenttype:{} [INFO] : getContentH2 day Mt Stowe Beer Fest [INFO] : getContentH24 [INFO] : contenttype:{} [INFO] : getContentHEd Fest! [INFO] : getContentH9 [INFO] : contenttype:{} [INFO] : getContentH [INFO] : getContentH0 [INFO] : contenttype:{} [INFO] : getContentHCraig Stein Beverage group from Boise in Longmont this past weekend. Thanks for all the love and attention! [INFO] : getContentH107 [INFO] : contenttype:{} [INFO] : getContentHLast night's Beer Can Chicken cook out at the Beer Authority with ex-OBer BURC! [INFO] : getContentH79 [INFO] : contenttype:{} [INFO] : getContentHBeer of the Month at both BJ's in MA [INFO] : getContentH36 [INFO] : contenttype:{} [INFO] : getContentHDrink like a local at the poutine dog cafe. Pinner draft is kicking ass!! [INFO] : getContentH73 [INFO] : contenttype:{} [INFO] : getContentHThis was a few weeks ago so that beer was super fresh at the time. OB crushing at yet another Lettuce Entertain You account here in Chicago! Stovepipes of Dales and Mamas are $3 for Throwback Thursday's! Pinner will soon be joining the lineup! #goodjobaturjob [INFO] : getContentH260 [INFO] : contenttype:{} [INFO] : getContentHBlue Dreams do come true! [INFO] : getContentH25 [INFO] : contenttype:{} [INFO] : getContentHFull house on the patio tonight for Dazed and Confused and Dale's Stovepipes! [INFO] : getContentH77 [INFO] : contenttype:{} [INFO] : getContentHGearing up for a Tap Takover at Hughies!!! [INFO] : getContentH42 [INFO] : contenttype:{} [INFO] : getContentHGotta be fair to the westies [INFO] : getContentH29 [INFO] : contenttype:{} [INFO] : getContentHBlew it up tonight at Jake Melnicks! 4 Hopsman, Saison du Muffin Top, Different Stiles, Velvet Elvis & of course our perm DALES handle!!! [INFO] : getContentH138 [INFO] : MARKER SET 30 [INFO] : Working Status Off [INFO] : Working Status Off [INFO] : DIFF1175 [INFO] : I/System.out: Thread-5008(ApacheHTTPLog):isSBSettingEnabled false [INFO] : I/System.out: Thread-5008(ApacheHTTPLog):isShipBuild true [INFO] : I/System.out: Thread-5008(ApacheHTTPLog):SMARTBONDING_ENABLED is false [INFO] : I/System.out: Thread-5008(ApacheHTTPLog):SmartBonding Enabling is false, SHIP_BUILD is true, log to file is false, DBG is false [WARN] : W/System.err: remove failed: ENOTEMPTY (Directory not empty) : /storage/emulated/0/Android/data/com.lilypadsolutions.lilypadappV2/cache/_tmp/remote-cache [INFO] : ******* success, APA91bHOScwdokV1fR_UCBI1eIb66eopNWgB9jc2HgkhtPGHvhK8DFhnDFLUtBjCw3Y8LWp4uhRYhPXXyvDVScyZtakQ3Gj_3Jz2A06-3dawrH4XBkqYPEE2503kVIIsjT96GNM9gzCXE_1eCAm_33B2SOjdPu1xCA [INFO] : MIXPANEL setuppush [INFO] : MIX PANEL PAYLOAD:{"$token":"3e8c21b1c4c9a8174116e42b67a35a41","$distinct_id":"54850a61133307c24107266f","$union":{"$android_devices":["APA91bHOScwdokV1fR_UCBI1eIb66eopNWgB9jc2HgkhtPGHvhK8DFhnDFLUtBjCw3Y8LWp4uhRYhPXXyvDVScyZtakQ3Gj_3Jz2A06-3dawrH4XBkqYPEE2503kVIIsjT96GNM9gzCXE_1eCAm_33B2SOjdPu1xCA"]}} [INFO] : MIXPANEL setuppush END [INFO] : Device token ---> APA91bHOScwdokV1fR_UCBI1eIb66eopNWgB9jc2HgkhtPGHvhK8DFhnDFLUtBjCw3Y8LWp4uhRYhPXXyvDVScyZtakQ3Gj_3Jz2A06-3dawrH4XBkqYPEE2503kVIIsjT96GNM9gzCXE_1eCAm_33B2SOjdPu1xCA [INFO] : I/System.out: Thread-5012(ApacheHTTPLog):isSBSettingEnabled false [INFO] : I/System.out: Thread-5012(ApacheHTTPLog):isShipBuild true [INFO] : I/System.out: Thread-5012(ApacheHTTPLog):SMARTBONDING_ENABLED is false [INFO] : I/System.out: Thread-5012(ApacheHTTPLog):SmartBonding Enabling is false, SHIP_BUILD is true, log to file is false, DBG is false [INFO] : I/System.out: Thread-5014(ApacheHTTPLog):isSBSettingEnabled false [INFO] : I/System.out: Thread-5014(ApacheHTTPLog):isShipBuild true [INFO] : I/System.out: Thread-5014(ApacheHTTPLog):SMARTBONDING_ENABLED is false [INFO] : I/System.out: Thread-5014(ApacheHTTPLog):SmartBonding Enabling is false, SHIP_BUILD is true, log to file is false, DBG is false [INFO] : I/System.out: TiHttpClient-9 calls detatch() [INFO] : I/System.out: TiHttpClient-8 calls detatch() [INFO] : Home updatestats{"weekpoints":0,"todaypoints":0,"leaderboard":"50th"} [INFO] : statusView updatestats{"todayIndicator":{"visible":true},"initials":{"text":"LT","visible":true},"weekpoints":{"visible":false},"weekindicator":{"visible":true},"currentPlace":{"text":"","visible":true,"color":"#343434"},"todaypoints":{"visible":false},"profileImage":{"image":null},"template":"statusview"} [INFO] : {"todayIndicator":{"visible":true},"initials":{"text":"LT","visible":true},"weekpoints":{"visible":false},"weekindicator":{"visible":true},"currentPlace":{"text":"","visible":true,"color":"#343434"},"todaypoints":{"visible":false,"text":0},"profileImage":{"image":null},"template":"statusview"} [INFO] : userserviceobj ME:{"_id":"54850a61133307c24107266f","username":"tester2@oskarblues.com","externalAccounts":{"oskarblues":{"territories":["AK","AS","AR","MA"]},"acs":{"token":"OFfK-mkNcexPr2KM0pcmiY23Bbg","lastActivity":"2015-03-30T21:47:01.486Z"}},"team":{"_id":"535e5ad21316e90da8190076"},"org":{"_id":"535e5ad2891fdf453413294a"},"manager":[{"_id":"535e5ad21316e90da8190076"}],"admin":true,"first_name":"LilyPad","last_name":"Team","fullname":"LilyPad Team","photo":{"_id":"55007d1ac069eb7fa50e7b2e","url":"https://s3.amazonaws.com/lilypadimagefiles/535e5ad2891fdf453413294a/557838c5067b06b020c18be9_square_75.png"},"notifications":{"email":{"weeklyrecap":{"time":"1970-01-01T21:30:00.000Z","active":true},"quote":{"time":"1970-01-01T13:00:00.000Z","active":true}},"push":{"feed":{"post":{"active":true}},"inactivity":{"active":true,"time":"1970-01-01T21:30:00.000Z"},"quote":{"active":true,"time":"1970-01-01T21:30:00.000Z"}}},"client":{"version":"6.0.19","os":"android","device_token":"APA91bGcor_PJPJGPuV5geBhncy5sp_JVrMOo9SDpri4qy3L-CaRCRzf8ZLzNOK_Z2XbGtMMR8sWdipnw5dpKRlYnhqzr6oi1GnKiPNZFTo-aoFHBDiluZLRKBaSCBYcciPCw0N2KaJ9vdI-Oe6bAacJUQpNaugW-w"},"title":"","aboutme":"","phone":"813-785-6241","_link":{"accounts":"/v3/users/54850a61133307c24107266f/accounts","insights":"/v3/users/54850a61133307c24107266f/insights","journal":{"self":"/v3/journals/54850a61133307c24107266f","entries":"/v3/journals/54850a61133307c24107266f/entries"},"points":"/v3/users/54850a61133307c24107266f/points","timeline":"/v3/users/54850a61133307c24107266f/timeline","activities":"/v3/teams/535e5ad21316e90da8190076/activities","org_activities":"/v3/organization/535e5ad2891fdf453413294a/activities","org_teams":"/v3/organization/535e5ad2891fdf453413294a/teams","team_contests":"/v3/teams/535e5ad21316e90da8190076/contests","team_documents":"/v3/teams/535e5ad21316e90da8190076/documents","team_leaderboard":"/v3/teams/535e5ad21316e90da8190076/leaderboard","createfeed":"/social/v3/feed?orgid=535e5ad2891fdf453413294a","autofillactivities":"/v3/autofillactivities","modules":"[{\"title\":\"Funnel\",\"types\":[{\"_id\":\"5512f09b8107f9b7e216a1e3\",\"status\":\"process\",\"name\":\"account\",\"title\":\"Account(s)\",\"url\":\"/v3/funnelactivity?type=5512f09b8107f9b7e216a1e3\",\"metadata\":[{\"displayname\":\"Contact\",\"name\":\"contact\",\"fieldtype\":1},{\"displayname\":\"Phone\",\"name\":\"phone\",\"fieldtype\":2},{\"displayname\":\"Email\",\"name\":\"email\",\"fieldtype\":3},{\"displayname\":\"Address\",\"name\":\"address\",\"fieldtype\":4},{\"displayname\":\"Account Snapshot\",\"name\":\"accountsnapshot\",\"fieldtype\":6}],\"stages\":[{\"_id\":\"553ed37ae4b0bde7020ae258\",\"name\":\"Key Accounts\"},{\"_id\":\"5515ad43cf37d3f6fb241882\",\"name\":\"General Market\",\"isdefault\":true},{\"_id\":\"553ed392e4b0bde7020ae259\",\"name\":\"Potential\"}]},{\"_id\":\"5589c65521d9be4728416ee9\",\"name\":\"distributor\",\"title\":\"Distributor(s)\",\"status\":\"process\",\"url\":\"/v3/funnelactivity?type=5589c65521d9be4728416ee9\",\"metadata\":[{\"displayname\":\"Contact\",\"name\":\"contact\",\"fieldtype\":1},{\"displayname\":\"Phone\",\"name\":\"phone\",\"fieldtype\":2},{\"displayname\":\"Email\",\"name\":\"email\",\"fieldtype\":3},{\"displayname\":\"Address\",\"name\":\"address\",\"fieldtype\":4}],\"stages\":[{\"_id\":\"5515ad43cf37d3f6fb241882\",\"name\":\"Active\",\"isdefault\":true},{\"_id\":\"553ed392e4b0bde7020ae259\",\"name\":\"Potential\"},{\"_id\":\"553ed37ae4b0bde7020ae258\",\"name\":\"Key Accounts\"}]}]},{\"types\":[]},{\"title\":\"Reports\",\"types\":[{\"_id\":\"55888e0428b5cc9a9aab392f\",\"status\":\"view\",\"name\":\"report\",\"title\":\"Report(s)\",\"url\":\"/v3/reports/oskarblues?type=55888e0428b5cc9a9aab392f\"}]}]"}} [INFO] : Working Status Off [INFO] : I/System.out: TiHttpClient-10 calls detatch() [INFO] : Push Registered [ERROR] : OpenGLRenderer: Binary Shader Found (b0000000800500041) [ERROR] : OpenGLRenderer: Binary Shader Initialized key b0000000800500041 5 [ERROR] : OpenGLRenderer: Binary Shader Found (b0000000000500041) [ERROR] : OpenGLRenderer: Binary Shader Initialized key b0000000000500041 6 [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [ERROR] : OpenGLRenderer: Binary Shader Found (b0000000800000001) [ERROR] : OpenGLRenderer: Binary Shader Initialized key b0000000800000001 7 [INFO] : Timeline: Timeline: Activity_idle id: android.os.BinderProxy@13da42d0 time:268575536 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : art: Explicit concurrent mark sweep GC freed 4961(348KB) AllocSpace objects, 5(7MB) LOS objects, 13% free, 106MB/122MB, paused 963us total 100.325ms [INFO] : MARKER HIT FETCHING NEW DATA [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : MARKET HIT: [object Object] [INFO] : MAKING NEXT FEED CALL [INFO] : NEXT LINK: http://prodservice.lilypad.co/social/v3/feed?from_time=1439559836511&limit=50 [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : I/System.out: Thread-5016(ApacheHTTPLog):isSBSettingEnabled false [INFO] : I/System.out: Thread-5016(ApacheHTTPLog):isShipBuild true [INFO] : I/System.out: Thread-5016(ApacheHTTPLog):SMARTBONDING_ENABLED is false [INFO] : I/System.out: Thread-5016(ApacheHTTPLog):SmartBonding Enabling is false, SHIP_BUILD is true, log to file is false, DBG is false [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/System.out: (HTTPLog)-Static: SBServiceAPI: getService class android.os.ServiceManager [INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false [INFO] : I/System.out: (HTTPLog)-Static: isShipBuild true [INFO] : I/System.out: (HTTPLog)-Thread-5017-298314825: SmartBonding Enabling is false, SHIP_BUILD is true, log to file is false, DBG is false [INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false [INFO] : I/System.out: KnoxVpnUidStorageknoxVpnSupported API value returned is false [INFO] : I/System.out: KnoxVpnUidStorageknoxVpnSupported API value returned is false [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false [INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false [INFO] : I/System.out: KnoxVpnUidStorageknoxVpnSupported API value returned is false [INFO] : I/System.out: TiHttpClient-11 calls detatch() [INFO] : Feed nextfeed length: 50 [INFO] : Feed length: 50 [INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false [INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : contenttype:{} [INFO] : getContentHPineapple and jalapeño Randall with Gubna! [INFO] : getContentH42 [INFO] : contenttype:{} [INFO] : getContentHThe staff at Jake Melnicks LOVED their OB gear and sold a ton of beer tonight! Congrats to Kami, who won't our staff contest tonight! [INFO] : getContentH134 [INFO] : contenttype:{} [INFO] : getContentHNational Supports Local! Cupcake social with our friends at the Saint Louis Hop Shop and Whisk: A Sustainable Bake Shop [INFO] : getContentH119 [INFO] : contenttype:{} [INFO] : getContentHFeaturing Stove Pipes in Brown Paper Bags and Funyuns!!! [INFO] : getContentH57 [INFO] : contenttype:{} [INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false [INFO] : getContentHOskar Blues and Habitat for Humanity teaming up in Cedar Rapids, Iowa! [INFO] : getContentH70 [INFO] : I/System.out: KnoxVpnUidStorageknoxVpnSupported API value returned is false [INFO] : contenttype:{} [INFO] : getContentHWelcome back to school.. Iowa State students!!! Now drink some Oskar Blues!!! [INFO] : getContentH78 [INFO] : contenttype:{} [INFO] : getContentHWhole Foods Hadley MA [INFO] : getContentH21 [INFO] : contenttype:{} [INFO] : getContentHTrivia Nite at World of Beer Sugar Land featuring Ten Fidy Randled with Cocoa Nibs!!!! [INFO] : getContentH86 [INFO] : contenttype:{} [INFO] : contenttype:{} [INFO] : getContentHNew ColoRADo reps (john & nick) earning turns w/ Ben on #ipaday. [INFO] : getContentH66 [INFO] : contenttype:{} [INFO] : getContentHSupermarket Liquors PBR cross promo IPA and $14.99 12pk price feature! [INFO] : getContentH71 [INFO] : contenttype:{} [INFO] : getContentHREAL BEER BRATS [INFO] : getContentH15 [INFO] : contenttype:{} [INFO] : getContentHNew menus at The Cow! [INFO] : getContentH21 [INFO] : contenttype:{} [INFO] : getContentH@ WALK (West AVL Lounge & Kitchen) [INFO] : getContentH34 [INFO] : contenttype:{} [INFO] : getContentHStill killing it on the total wine CANdemonium endcap. Even the Pinner glassware is selling [INFO] : getContentH92 [INFO] : contenttype:{} [INFO] : getContentHOur friends at Southside Liquor in Lakeland, FL, holding it down! [INFO] : getContentH65 [INFO] : contenttype:{} [INFO] : getContentHRAGBRAI 2015! [INFO] : getContentH13 [INFO] : contenttype:{} [INFO] : getContentHOskar Blues bike wash at new kickass account! [INFO] : getContentH45 [INFO] : contenttype:{} [INFO] : getContentHGot the signs up at McHenry Beverage in Western, MD. The $14.99 price point is the lowest in the state. [INFO] : getContentH105 [INFO] : contenttype:{} [INFO] : getContentHMamas paired up with a one off burger for the weekly special at Crow Burger [INFO] : getContentH76 [INFO] : contenttype:{} [INFO] : getContentHSome yummy Pinner will be consumed to benefit Evergreen Mountain Bike Alliance. [INFO] : getContentH80 [INFO] : contenttype:{} [INFO] : contenttype:{} [INFO] : getContentHGub and I sampling the buyer at Hop City Atlanta. [INFO] : getContentH50 [INFO] : contenttype:{} [INFO] : getContentHFloating the French Broad with a stage and a band [INFO] : getContentH52 [INFO] : contenttype:{} [INFO] : getContentHJojo's raw bar & grill 4 permanent handles and all styles in cans. Thanks for the August love [INFO] : getContentH95 [INFO] : contenttype:{} [INFO] : getContentHTower Liquors in Atlanta. The Gub making shit happen. [INFO] : getContentH54 [INFO] : contenttype:{} [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : getContentHFirst run of IPA in Georgia on our new chain director, Scott Lindhart's mailbox. Fuhcan awesome liquid. [INFO] : getContentH105 [INFO] : contenttype:{} [INFO] : getContentHPost ride advertisement selfie. [INFO] : getContentH32 [INFO] : contenttype:{} [INFO] : getContentHFresh 12pk display at Total Beverage, ready to roll for beer can chicken cook out this weekend [INFO] : getContentH94 [INFO] : contenttype:{} [INFO] : getContentHHaving a Dale's with a few of my friends! [INFO] : getContentH41 [INFO] : contenttype:{} [INFO] : getContentHSetting up for the UCI World Cup, only beer you can buy all weekend is OB. [INFO] : getContentH74 [INFO] : contenttype:{} [INFO] : getContentHNew OB Tacker wall at the number #1 bar in Colorado Springs! [INFO] : getContentH60 [INFO] : contenttype:{} [INFO] : getContentHGet Some! Ready for the Dyrty Byrds to play for the first IPA release party in Boulder! [INFO] : getContentH89 [INFO] : contenttype:{} [INFO] : getContentHDay 2 UCI Windham World Cup. OB is the exclusive beer on the mountain [INFO] : getContentH69 [INFO] : contenttype:{} [INFO] : getContentHAll set to go for the Winter Park Beer Festival! [INFO] : getContentH48 [INFO] : contenttype:{} [INFO] : getContentHBBQ on the Patio at The Flying Saucer! [INFO] : getContentH38 [INFO] : contenttype:"quote" [INFO] : quote length: 105 [INFO] : contenttype:{} [INFO] : contenttype:{} [INFO] : getContentHJust another day in San Diego. Mimi Beer Fest with Stone, St.Archer, Lost Abbey, Port Brewing and Modern Times. [INFO] : getContentH112 [INFO] : contenttype:{} [INFO] : getContentHStacked for the weekend! [INFO] : getContentH25 [INFO] : contenttype:{} [INFO] : getContentHIPA is here!! [INFO] : getContentH13 [INFO] : contenttype:{} [INFO] : getContentH [INFO] : getContentH0 [INFO] : contenttype:{} [INFO] : getContentHOld Chicago Staff are fuh can pumped to have Pinner for the Beach Bonfire Tour! [INFO] : getContentH79 [INFO] : contenttype:{} [INFO] : getContentHStupid BYOB.... Driving past think, sure... I'll stop in and sample them... But Noooooooo. [INFO] : getContentH91 [INFO] : contenttype:{} [INFO] : getContentHGubna infusions goin' down on a hump day! We have lemon basil, guava, hops, and bacon (not pictured because I drank it all) [INFO] : getContentH123 [INFO] : contenttype:{} [INFO] : contenttype:{} [INFO] : getContentHNothing like a little tapping for Eye Pee Eh Day [INFO] : getContentH48 [INFO] : contenttype:{} [INFO] : contenttype:{} [INFO] : getContentHRan into this guy in key west. Chris Dan our Crowler man in Longmont Jason's brother. [INFO] : It's his honeymoon and he's hanging out with his Reeb shirt and a stovepipe Cheers [INFO] : getContentH173 [INFO] : contenttype:{} [INFO] : getContentHGubna on the Randall being pushed through citra hops for tonight's tap takeover [INFO] : getContentH80 [INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : MARKER SET 60 [INFO] : ENDING NEXT FEED CALL [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false [INFO] : I/System.out: KnoxVpnUidStorageknoxVpnSupported API value returned is false [INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false [INFO] : art: Explicit concurrent mark sweep GC freed 1815(100KB) AllocSpace objects, 2(20MB) LOS objects, 11% free, 125MB/141MB, paused 651us total 61.860ms [INFO] : MARKER HIT FETCHING NEW DATA [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false [INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : MARKET HIT: [object Object] [INFO] : MAKING NEXT FEED CALL [INFO] : NEXT LINK: http://prodservice.lilypad.co/social/v3/feed?from_time=1438951226893&limit=50 [INFO] : I/System.out: Thread-5021(ApacheHTTPLog):isSBSettingEnabled false [INFO] : I/System.out: Thread-5021(ApacheHTTPLog):isShipBuild true [INFO] : I/System.out: Thread-5021(ApacheHTTPLog):SMARTBONDING_ENABLED is false [INFO] : I/System.out: Thread-5021(ApacheHTTPLog):SmartBonding Enabling is false, SHIP_BUILD is true, log to file is false, DBG is false [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/System.out: TiHttpClient-12 calls detatch() [INFO] : Feed nextfeed length: 50 [INFO] : Feed length: 50 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false [INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : contenttype:{} [INFO] : getContentHKicking off the Windham World Cup Mountain Bike Fest with ride the plank [INFO] : getContentH72 [INFO] : contenttype:{} [INFO] : getContentHFirst thing patrons see when walking into Durty Nellies. Four dolla' holla. [INFO] : getContentH76 [INFO] : contenttype:{} [INFO] : getContentHBanner facing Broadway on the corner of the best patio on the hill! [INFO] : getContentH67 [INFO] : contenttype:{} [INFO] : getContentHFull door with a window perf for beer of the month at highlands wineseller! [INFO] : getContentH75 [INFO] : contenttype:{} [INFO] : getContentHBefore and after at fogartys in key west [INFO] : getContentH40 [INFO] : contenttype:{} [INFO] : getContentHShakes West in Columbia rockin' some chub chalk art. [INFO] : getContentH52 [INFO] : contenttype:{} [INFO] : contenttype:{} [INFO] : getContentHFlight night at the tilted kilt in Columbia, SC [INFO] : getContentH47 [INFO] : contenttype:{} [INFO] : getContentHGetting the crowd PUMPED UP!!!! Florida is ready to tear some IPA up!!! [INFO] : getContentH72 [INFO] : contenttype:{} [INFO] : getContentHCAN'd Aid event. Distributor donating $1/ce all month + $1/pint from acct + shwag raffle tickets [INFO] : getContentH96 [INFO] : contenttype:{} [INFO] : getContentHToday is national #IPAday, so we'll be throwing down #obIPA all over the interwebs today. articles are dropping as well. Tag & post away peeps. http://www.pastemagazine.com/articles/2015/08/oskar-blues-metamodern-ipa-review.html [INFO] : getContentH230 [INFO] : contenttype:{} [INFO] : getContentH [INFO] : getContentH0 [INFO] : contenttype:{} [INFO] : getContentHDouble Stovepipe Pinnertration at Ingles [INFO] : getContentH40 [INFO] : contenttype:{} [INFO] : My favorite part of IPA so far is showing those homies from Lagunitas pictures of the Blue Dream cans. I don't think they are happy. [INFO] : [INFO] : #lookout [INFO] : 142 [INFO] : contenttype:{} [INFO] : getContentHTim speaking at the IPA launch! [INFO] : getContentH31 [INFO] : contenttype:{} [INFO] : getContentHGinger representation strong at Mile High. Fuh CAN Eh, Jason Dan smells like darts. [INFO] : getContentH84 [INFO] : contenttype:{} [INFO] : getContentH12-pack feature killing it here in Cambridge, MA. Up 187 CE's over the last 6 months. [INFO] : getContentH86 [INFO] : contenttype:{} [INFO] : getContentHThe owner of Hammerstones and I just hung these up. He said "do you think Dale would approve?" This account is very excited to rep the Lou for the Ride to the Ultimate Ride this weekend. [INFO] : getContentH186 [INFO] : contenttype:{} [INFO] : contenttype:"quote" [INFO] : quote length: 171 [INFO] : contenttype:{} [INFO] : getContentH [INFO] : getContentH0 [INFO] : contenttype:{} [INFO] : getContentHSprings Beer Festival, August 1st 2015. We rocked it! [INFO] : getContentH53 [INFO] : contenttype:{} [INFO] : getContentHI insisted we dwarf the NYF Diabetes stack. Success [INFO] : getContentH51 [INFO] : contenttype:{} [INFO] : getContentHBrown Dist FL mid year review. No wholesaler employees were harmed during this meeting [INFO] : getContentH87 [INFO] : contenttype:{} [INFO] : getContentH$3 DPA cans for Ballard Drinking Team members, all day, every day. [INFO] : getContentH67 [INFO] : contenttype:{} [INFO] : getContentH [INFO] : getContentH0 [INFO] : contenttype:{} [INFO] : getContentHDay 6 STLCBW: Firkin Fest was a bumpin at iTap yesterday! Pinner firkin probably would've won prom king if there had been a vote. Only took a couple of hours to empty it. [INFO] : getContentH170 [INFO] : contenttype:{} [INFO] : getContentHHanging out with Regan Smith before the race in Iowa today! [INFO] : getContentH59 [INFO] : contenttype:{} [INFO] : getContentH2nd Place finish for Regan Smith at Iowa tonight. Load it up, on to the next race!!!! [INFO] : getContentH85 [INFO] : contenttype:{} [INFO] : getContentHThis is what happens when my softball team puts me in charge of uniforms. It's gonna be a winning session in these blue dreams. [INFO] : getContentH127 [INFO] : contenttype:{} [INFO] : getContentHRainbow's husband and other heros killing it Denver! Almost got mauled for this photo. Probably not worth the time it took me away to post this. You're welcome..Jimmy, Jeff, Oteil....BRUCE!! [INFO] : getContentH192 [INFO] : contenttype:{} [INFO] : getContentHGetting my Friday samplin on! [INFO] : getContentH29 [INFO] : contenttype:{} [INFO] : getContentHTrek Dirt Series in Hood River. Dale's and Pinner specials and a CANarchy jersey winner! [INFO] : getContentH88 [INFO] : contenttype:{} [INFO] : contenttype:{} [INFO] : contenttype:{} [INFO] : getContentHDale's and Mama's Kick the Keg Party at Factor's Row, downtown Annapolis [INFO] : getContentH72 [INFO] : contenttype:{} [INFO] : getContentHMcHenry Beverage in Western, MD. Beer of the month with $14.99 12pks. Signs coming soon! [INFO] : getContentH89 [INFO] : contenttype:{} [INFO] : getContentHTwo little happy CANpers at the Grove Park Inn in AVL drinking the "best root beer ever." [INFO] : getContentH90 [INFO] : contenttype:{} [INFO] : getContentHOfficial Beer Sponsor of the 2015 PDGA Pro World Championships! #DiscGolf #Pittsburgh [INFO] : getContentH85 [INFO] : contenttype:{} [INFO] : getContentHCANstruction at the Teet in AVL [INFO] : getContentH31 [INFO] : contenttype:{} [INFO] : getContentH#obIPA media gathering, the first can off the line went into media hands. 20 hours after we heard we would get cans, we have it rolling. Press release & can imagery to come. Photographers & videographers rolling to translate into materials. [INFO] : getContentH243 [INFO] : contenttype:{} [INFO] : getContentHI'm still up in the air about the jacket but the beer though...#sipsipgive [INFO] : getContentH74 [INFO] : contenttype:{} [INFO] : getContentH [INFO] : getContentH0 [INFO] : contenttype:{} [INFO] : getContentHJAKE HOGAN! The Collins family has adopted me! They were my favorite beer school students for 3 years!! They talk very highly of you!!! [INFO] : getContentH135 [INFO] : contenttype:{} [INFO] : getContentHSaint Louis Craft Beer Week Continues! Blew it up tonight at the Wing Ding at The Shaved Duck. On a wait 30 minutes into it, had to keep Dale'a on ice cause they were flying, Pinner was the first tap to blow and the sauces were INCREDIBLE! Staff was killer too!! [INFO] : getContentH262 [INFO] : contenttype:{} [INFO] : getContentHSTL is ready for the Ride to the Ultimate Ride!! [INFO] : getContentH48 [INFO] : contenttype:{} [INFO] : getContentHReally excited for this event for STLCBW!! The Shaved Duck is one of the best restaurants in St. Louis! [INFO] : getContentH103 [INFO] : contenttype:{} [INFO] : getContentHConcert series with Mahall's featuring BADBADNOTGOOD. Too legit to quit. [INFO] : getContentH73 [INFO] : contenttype:{} [INFO] : getContentHMango infused Pinner today at WF. They have used blackberry, strawberry, kiwi and more in the past two weeks [INFO] : getContentH109 [INFO] : contenttype:{} [INFO] : getContentHRespect the artwork WF! [INFO] : getContentH23 [INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false [INFO] : MARKER SET 90 [INFO] : ENDING NEXT FEED CALL [INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false [INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false [INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : BitmapFactory: DecodeImagePath(decodeResourceStream3) : value is null. res : null [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false [INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : art: Explicit concurrent mark sweep GC freed 1455(83KB) AllocSpace objects, 3(27MB) LOS objects, 10% free, 143MB/159MB, paused 541us total 58.818ms [INFO] : MARKER HIT FETCHING NEW DATA [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : MARKET HIT: [object Object] [INFO] : MAKING NEXT FEED CALL [INFO] : NEXT LINK: http://prodservice.lilypad.co/social/v3/feed?from_time=1438195180086&limit=50 [INFO] : I/System.out: Thread-5023(ApacheHTTPLog):isSBSettingEnabled false [INFO] : I/System.out: Thread-5023(ApacheHTTPLog):isShipBuild true [INFO] : I/System.out: Thread-5023(ApacheHTTPLog):SMARTBONDING_ENABLED is false [INFO] : I/System.out: Thread-5023(ApacheHTTPLog):SmartBonding Enabling is false, SHIP_BUILD is true, log to file is false, DBG is false [INFO] : I/System.out: TiHttpClient-13 calls detatch() [INFO] : Feed nextfeed length: 50 [INFO] : Feed length: 50 [INFO] : contenttype:{} [INFO] : getContentHPups on the patio was a great success! Pizza Peel ran 4 OB lines all month and brought in a BA g'knight and a habanero/ pineapple Dale's firkin for the event today. A portion of proceeds went to the humane society, and a few pups were adopted out. Great turn out, lots of pups, and a special puppy pizza was dished out for the furry friends. [INFO] : getContentH341 [INFO] : contenttype:{} [INFO] : getContentHMy boy is killin' it tonight in the painting. He loves Dale's and 5280 is his pale ale he brews, so he wanted them together in the painting. [INFO] : getContentH140 [INFO] : contenttype:{} [INFO] : getContentHCookout in ColoRADo Springs! Powers liquor mart. The largest liquor store in the Springs. Pow! [INFO] : getContentH94 [INFO] : contenttype:{} [INFO] : getContentHThere were obstacles, but OB culture prevailed & Burning Can NC was off the hook. 50 breweries, 2 days of music, beer relay, outlaws of dirt & over 2,000 beer drinkers. A great effort by the whole crew. [INFO] : getContentH204 [INFO] : contenttype:{} [INFO] : getContentH [INFO] : getContentH0 [INFO] : contenttype:{} [INFO] : getContentHSTLCBW at everything wine & cigar! Vino Von BEER! Painting tap handles to celebrate Craft Beer Week [INFO] : getContentH99 [INFO] : contenttype:{} [INFO] : getContentHPOW! Catalina Wine Mixer! [INFO] : getContentH25 [INFO] : contenttype:"quote" [INFO] : quote length: 66 [INFO] : contenttype:{} [INFO] : getContentHThank Big Baby Jesus for Sunday sales. Moving cases at Earth Fare in Cleveland [INFO] : getContentH79 [INFO] : contenttype:{} [INFO] : getContentHI'm a hand model.....G'knight is a star! [INFO] : getContentH40 [INFO] : contenttype:{} [INFO] : getContentH [INFO] : getContentH0 [INFO] : contenttype:{} [INFO] : getContentHPinner Wine & Spirits. Can I be blunt?! [INFO] : getContentH39 [INFO] : contenttype:{} [INFO] : getContentHGot perm Dale's handled moved to one of the split lines, so it pours both inside and on the patio! [INFO] : getContentH99 [INFO] : contenttype:{} [INFO] : contenttype:{} [INFO] : getContentHRed, White and Blues going up. [INFO] : getContentH31 [INFO] : contenttype:{} [INFO] : getContentHBikes for Miles!!!! [INFO] : getContentH19 [INFO] : contenttype:{} [INFO] : getContentHPalm Beach Summer (indoor) beer fest. [INFO] : getContentH38 [INFO] : contenttype:{} [INFO] : getContentHRAGBRAI 2015! View from the rooftop patio at 30Hop in Coralville, Iowa! Home of the Oskar Blues RAGBRAI party! [INFO] : getContentH110 [INFO] : contenttype:{} [INFO] : getContentHOB made the ad at Annapolis Smokehouse. Got Dale's on tap this week. [INFO] : getContentH68 [INFO] : contenttype:{} [INFO] : contenttype:{} [INFO] : getContentHFirst of many Gelsons tastings.. Newport Beach [INFO] : getContentH47 [INFO] : contenttype:{} [INFO] : getContentHSome new custom festival gear [INFO] : getContentH29 [INFO] : contenttype:{} [INFO] : getContentHCraft beer and craft tacos at tonight's Taco Asylum OB tap takeover [INFO] : getContentH69 [INFO] : contenttype:{} [INFO] : getContentHNice pile of Gubna! Even better price point! HyVee Ames, Iowa [INFO] : getContentH62 [INFO] : contenttype:{} [INFO] : getContentHCellar Peanut Pub Oskaloosa, Iowa. Small town Iowa, big time beer bar! Oskar Blues everywhere! [INFO] : getContentH94 [INFO] : contenttype:{} [INFO] : getContentHJammin at the Saint Louis Zoo tonight! [INFO] : getContentH38 [INFO] : contenttype:{} [INFO] : getContentHChub Nitro Karaoke Pint Night at my favorite dive in Boulder! [INFO] : getContentH62 [INFO] : contenttype:{} [INFO] : getContentHPretty rad menu that we had a big part in writing! Should be an awesome event!!! At Whole Foods- Jacksonville/San Jose Blvd [INFO] : getContentH124 [INFO] : contenttype:{} [INFO] : getContentHWe like Amanda!!! [INFO] : getContentH17 [INFO] : contenttype:{} [INFO] : getContentHTap takeover at Fishale Panama City. [INFO] : getContentH37 [INFO] : contenttype:{} [INFO] : getContentHYo Mama's Big Fat Booty Band at Burning Can NC and the last sighting of my beloved dale jr koozie. #RIP [INFO] : getContentH103 [INFO] : contenttype:{} [INFO] : getContentHWhat's hot? Yep us [INFO] : getContentH19 [INFO] : contenttype:{} [INFO] : getContentHBig shindig tonight on the Palouse. [INFO] : getContentH36 [INFO] : contenttype:{} [INFO] : getContentHGuanabanas - South FL rain delay. 2.00 core cans Mamas on our rotating draft handle [INFO] : getContentH87 [INFO] : contenttype:{} [INFO] : getContentHSupporting Scott at his beer dinner at Colorado Fondue. [INFO] : getContentH56 [INFO] : contenttype:{} [INFO] : getContentHOB Ordeal 19.2 feature in 80+ Quik Trips in AZ! [INFO] : getContentH47 [INFO] : contenttype:{} [INFO] : getContentHNice wheels brah [INFO] : getContentH16 [INFO] : contenttype:{} [INFO] : getContentH [INFO] : getContentH0 [INFO] : contenttype:{} [INFO] : getContentH [INFO] : getContentH0 [INFO] : contenttype:{} [INFO] : getContentHOskar Blues night at el Bait Shop Des Moines, Iowa. One hell of a lineup! [INFO] : getContentH74 [INFO] : contenttype:{} [INFO] : contenttype:{} [INFO] : getContentHAsheville. [INFO] : getContentH10 [INFO] : contenttype:{} [INFO] : getContentH$3 Pinner in NYC? #bestpriceinbrooklyn #notatypo [INFO] : getContentH48 [INFO] : contenttype:{} [INFO] : getContentHUm...this doesn't suck. Public School (yes, that's the name of the account in AVL.) [INFO] : getContentH84 [INFO] : contenttype:{} [INFO] : getContentHBait Shop Des Moines, Iowa. Crowler up and running! [INFO] : getContentH51 [INFO] : contenttype:{} [INFO] : getContentHMoscow, ID. [INFO] : getContentH12 [INFO] : contenttype:{} [INFO] : getContentHRandom fb post from the riverside market south [INFO] : getContentH46 [INFO] : contenttype:{} [INFO] : contenttype:{} [INFO] : contenttype:{} [INFO] : getContentHTaking a Dales out for a Sunday stroll [INFO] : getContentH38 [INFO] : MARKER SET 120 [INFO] : ENDING NEXT FEED CALL [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : art: Background partial concurrent mark sweep GC freed 500(28KB) AllocSpace objects, 2(15MB) LOS objects, 9% free, 148MB/164MB, paused 726us total 102.881ms [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : art: Background partial concurrent mark sweep GC freed 976(49KB) AllocSpace objects, 2(17MB) LOS objects, 9% free, 157MB/173MB, paused 766us total 101.090ms [INFO] : art: Background partial concurrent mark sweep GC freed 744(46KB) AllocSpace objects, 2(17MB) LOS objects, 9% free, 144MB/160MB, paused 710us total 104.721ms [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : art: Background partial concurrent mark sweep GC freed 1034(59KB) AllocSpace objects, 2(17MB) LOS objects, 9% free, 147MB/163MB, paused 754us total 102.825ms [INFO] : art: Background partial concurrent mark sweep GC freed 435(26KB) AllocSpace objects, 2(18MB) LOS objects, 9% free, 148MB/164MB, paused 808us total 101.935ms [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : art: Explicit concurrent mark sweep GC freed 233(11KB) AllocSpace objects, 1(7MB) LOS objects, 10% free, 137MB/153MB, paused 622us total 102.734ms [INFO] : ScrollView Start [INFO] : ScrollView Created [INFO] : ActivityDetail dbUrl: http://prodservice.lilypad.co/v2/users/54850a61133307c24107266f/timeline?start_dt=1438401600&finish_dt=1441079999 [INFO] : Timeline: Timeline: Activity_launch_request id:com.lilypadsolutions.lilypadappV2 time:268635023 [INFO] : I/System.out: Thread-5025(ApacheHTTPLog):isSBSettingEnabled false [INFO] : I/System.out: Thread-5025(ApacheHTTPLog):isShipBuild true [INFO] : I/System.out: Thread-5025(ApacheHTTPLog):SMARTBONDING_ENABLED is false [INFO] : I/System.out: Thread-5025(ApacheHTTPLog):SmartBonding Enabling is false, SHIP_BUILD is true, log to file is false, DBG is false [INFO] : InjectionManager: dispatchOnViewCreated > Target : org.appcelerator.titanium.TiTranslucentActivity isFragment :false [INFO] : InjectionManager: dispatchCreateOptionsMenu :org.appcelerator.titanium.TiTranslucentActivity [INFO] : InjectionManager: dispatchPrepareOptionsMenu :org.appcelerator.titanium.TiTranslucentActivity [ERROR] : OpenGLRenderer: Binary Shader Found (b0000000800000000) [ERROR] : OpenGLRenderer: Binary Shader Initialized key b0000000800000000 8 [ERROR] : OpenGLRenderer: Binary Shader Found (b0000001800000000) [ERROR] : OpenGLRenderer: Binary Shader Initialized key b0000001800000000 9 [INFO] : Timeline: Timeline: Activity_idle id: android.os.BinderProxy@e2e1914 time:268635347 [INFO] : I/System.out: TiHttpClient-14 calls detatch() [INFO] : ActivityDetail Found: {"items":[{"activity_id":"535e5ad21316e90db2192483","task":false,"name":"Off Premise Activity","icon":{"url":"https://s3.amazonaws.com/LilypadDataFiles/AppIcons/Graph.png"},"started_at":"2015-08-09T12:56:41.125Z","completed_at":"2015-08-09T12:57:00.015Z","points":25,"duration":{"human":"a few seconds","hours":0,"minutes":0,"seconds":18},"fields":[{"label":"Distributor:","type":2,"value":"Craft Brewers Guild - MA"},{"label":"Account:","type":2,"value":"THE GREATEST BAR"},{"label":"Did you meet with a decision maker?","type":7,"value":"Yes"},{"label":"Who did you meet with?","type":1,"value":"asdf"},{"label":"What did you discuss?","type":10,"value":"asdf"},{"label":"Next Steps?","type":10,"value":"asdf"},{"label":"Check each you completed:","type":6,"value":["Price Check"]}],"_link":{"cancel":"/v2/activities/55c74e086673d5eacbdb0a66"}}]} [INFO] : GetActivityDetailsTimeLine: [object Object] [INFO] : TL: 1 [INFO] : LOAD AD FOR TL ROW: Craft Brewers Guild - MA [INFO] : LOAD AD FOR TL ROW: THE GREATEST BAR [INFO] : Working Status Off [WARN] : TiUIScrollView: (main) [730,99290] Scroll direction could not be determined based on the provided view properties. Default VERTICAL scroll direction being used. Use the 'scrollType' property to explicitly set the scrolling direction. [INFO] : I/InputDispatcher( 3471): Delivering key to : action: 0x0 (0) [INFO] : I/InputDispatcher( 3471): Delivering key to : action: 0x1 (0) [INFO] : Timeline: Timeline: Activity_idle id: android.os.BinderProxy@13da42d0 time:268636383 [INFO] : ************DEALLOCATE TIMELINE WINDWO********** [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : art: Background partial concurrent mark sweep GC freed 1225(63KB) AllocSpace objects, 3(27MB) LOS objects, 9% free, 145MB/161MB, paused 7.050ms total 102.463ms [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : art: Background partial concurrent mark sweep GC freed 1268(73KB) AllocSpace objects, 2(18MB) LOS objects, 9% free, 146MB/162MB, paused 850us total 110.741ms [INFO] : art: Background partial concurrent mark sweep GC freed 808(45KB) AllocSpace objects, 2(20MB) LOS objects, 9% free, 150MB/166MB, paused 694us total 105.375ms [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : art: Background partial concurrent mark sweep GC freed 1817(105KB) AllocSpace objects, 4(40MB) LOS objects, 9% free, 147MB/163MB, paused 765us total 111.032ms [INFO] : art: Background partial concurrent mark sweep GC freed 501(28KB) AllocSpace objects, 2(17MB) LOS objects, 9% free, 150MB/166MB, paused 686us total 106.177ms [INFO] : art: Background partial concurrent mark sweep GC freed 388(22KB) AllocSpace objects, 2(18MB) LOS objects, 9% free, 149MB/165MB, paused 4.844ms total 107.498ms [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : art: Background partial concurrent mark sweep GC freed 1170(69KB) AllocSpace objects, 2(19MB) LOS objects, 9% free, 157MB/173MB, paused 902us total 105.164ms [INFO] : art: Background partial concurrent mark sweep GC freed 764(44KB) AllocSpace objects, 3(28MB) LOS objects, 9% free, 146MB/162MB, paused 777us total 104.981ms [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : art: Background partial concurrent mark sweep GC freed 602(36KB) AllocSpace objects, 2(17MB) LOS objects, 9% free, 147MB/163MB, paused 708us total 107.072ms [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false [INFO] : art: WaitForGcToComplete blocked for 32.156ms for cause Explicit [INFO] : art: Explicit concurrent mark sweep GC freed 1013(68KB) AllocSpace objects, 1(7MB) LOS objects, 9% free, 156MB/172MB, paused 729us total 67.384ms [INFO] : MARKER HIT FETCHING NEW DATA [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : MARKET HIT: [object Object] [INFO] : MAKING NEXT FEED CALL [INFO] : NEXT LINK: http://prodservice.lilypad.co/social/v3/feed?from_time=1437508299247&limit=50 [INFO] : I/System.out: Thread-5030(ApacheHTTPLog):isSBSettingEnabled false [INFO] : I/System.out: Thread-5030(ApacheHTTPLog):isShipBuild true [INFO] : I/System.out: Thread-5030(ApacheHTTPLog):SMARTBONDING_ENABLED is false [INFO] : I/System.out: Thread-5030(ApacheHTTPLog):SmartBonding Enabling is false, SHIP_BUILD is true, log to file is false, DBG is false [INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false [INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false [INFO] : I/System.out: TiHttpClient-15 calls detatch() [INFO] : Feed nextfeed length: 50 [INFO] : Feed length: 50 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : contenttype:{} [INFO] : getContentHOskar Blues owning the entire shelf at a C-Store in St. Charles. [INFO] : getContentH65 [INFO] : contenttype:{} [INFO] : getContentHFat Bottom Betty's in Carbondale, IL food pairing table tents are rockin! [INFO] : getContentH73 [INFO] : contenttype:{} [INFO] : getContentHHaymarket Beer Fest... Lincoln, Nebraska! Only one way to beat this heat! It's called Pinner! [INFO] : getContentH93 [INFO] : contenttype:{} [INFO] : getContentHDale's truck sighting in San Diego!! So stoke to finally have a OB Stone truck in the SD! [INFO] : getContentH90 [INFO] : contenttype:{} [INFO] : getContentHWho's the only brewery with signage at Red Hat Amphitheatre? OB! [INFO] : getContentH64 [INFO] : contenttype:{} [INFO] : getContentHAfter a long wait, Harris Teeter on Amelia Island is making us proud! [INFO] : getContentH69 [INFO] : contenttype:{} [INFO] : getContentHBurning can NC! [INFO] : getContentH15 [INFO] : contenttype:{} [INFO] : getContentHRain or shine we had a great weekend at Brew Hee Haw in the OC Fair. [INFO] : getContentH69 [INFO] : contenttype:"quote" [INFO] : quote length: 110 [INFO] : contenttype:{} [INFO] : getContentHBite of Seattle, Odom Beer Garden/Beer Festival. [INFO] : getContentH49 [INFO] : contenttype:{} [INFO] : getContentHSecond Anniversary CAN-demonium at Jacksonville-Southside World of Beer! [INFO] : getContentH72 [INFO] : contenttype:{} [INFO] : getContentHBrewery of the Month tasting in Providence, RI. Core for days. [INFO] : getContentH63 [INFO] : contenttype:{} [INFO] : http://www.theonion.com/article/partygoer-rolls-a-couple-of-fat-burritos-to-pass-a-29624 [INFO] : [INFO] : DPA in The Onion [INFO] : 106 [INFO] : contenttype:{} [INFO] : getContentHZak Early and I crushing some OB at a summer Bash at 3s in Portsmouth! [INFO] : getContentH72 [INFO] : contenttype:{} [INFO] : getContentHTen Fidy pouring at Charlotte's uptown amphitheater last night for Tedeschi Trucks Band! Derek and Susan are the bomb. [INFO] : getContentH118 [INFO] : contenttype:{} [INFO] : getContentHLimited Edition crowlers! Labels weren't ready yet, so we improvised! [INFO] : getContentH69 [INFO] : contenttype:{} [INFO] : getContentHPut the staff at WOB to work in Birmingham. [INFO] : getContentH45 [INFO] : contenttype:{} [INFO] : getContentHBirmingham crew drive. Cindy at jack Brown's knows our story thanks to Bean and Alex the owner Cheers [INFO] : getContentH103 [INFO] : contenttype:{} [INFO] : getContentHThe lineup at Iron City in Bormingham. CORE. [INFO] : getContentH45 [INFO] : contenttype:{} [INFO] : getContentHOmaha is so pumped about the 4 Hopsmen the brew club had shirts made up!!! [INFO] : getContentH75 [INFO] : contenttype:{} [INFO] : getContentHMy boys at the Saint Louis Hop Shop showin the love. Pinner is the first non-local beer they've put on draft since they opened! [INFO] : getContentH127 [INFO] : contenttype:{} [INFO] : getContentHThis guy giving me the side eye today. He's protecting the Dale's inventory. [INFO] : getContentH76 [INFO] : contenttype:{} [INFO] : getContentHOB is top tier in the mix your own six @ brand new Mountain Energy convenient store in AVL [INFO] : getContentH90 [INFO] : contenttype:{} [INFO] : getContentH2/5 at the new locals only whole foods bar [INFO] : getContentH43 [INFO] : contenttype:{} [INFO] : getContentHThis beer was made for this. [INFO] : getContentH28 [INFO] : contenttype:{} [INFO] : getContentHMorans Liquor loves Merica! #1 Off Premise account in Lincoln, Nebraska! [INFO] : getContentH72 [INFO] : contenttype:{} [INFO] : getContentH80/35 Music Festival! Downtown Des Moines. 2 days, 3 Stages, 21 bands, headlined by Wilco tonight and Weezer tomorrow, and of course Dales Pale Ale cans cracking all weekend! [INFO] : getContentH174 [INFO] : contenttype:{} [INFO] : getContentHThe Hopocalypse has arrived in Omaha! 4 Hopsmen on tap at Crescent Moon! [INFO] : getContentH72 [INFO] : contenttype:{} [INFO] : getContentHOnly beers on the course for the Wampanoag CC Invitational Tourny DMP [INFO] : getContentH69 [INFO] : contenttype:{} [INFO] : getContentHA block from comic con in San Diego and the dales pitchers are flowing like water at Basic pizza [INFO] : getContentH97 [INFO] : contenttype:{} [INFO] : getContentHOver 100 OB pints were poured yesterday to help out this youngster [INFO] : getContentH66 [INFO] : contenttype:{} [INFO] : getContentHWho doesn't like kick-ass before and after pictures!? Shout out to the great sign department at RMC distributing. [INFO] : getContentH113 [INFO] : contenttype:{} [INFO] : getContentHOur rotating handle is featuring Mamas [INFO] : Guanabanas Jupiter FL [INFO] : getContentH60 [INFO] : contenttype:{} [INFO] : getContentHWe love beer, and we love OB! [INFO] : getContentH29 [INFO] : contenttype:{} [INFO] : getContentHBear Valley Customer Appreciation Weekend [INFO] : getContentH41 [INFO] : contenttype:{} [INFO] : getContentHMonth long end cap at Old Line [INFO] : getContentH31 [INFO] : contenttype:{} [INFO] : getContentHFresh market representing! [INFO] : getContentH26 [INFO] : contenttype:{} [INFO] : contenttype:{} [INFO] : getContentHJuice does a MUCH better air guitar... Jul-IPA REPRESENTIN! [INFO] : getContentH59 [INFO] : contenttype:"quote" [INFO] : quote length: 128 [INFO] : contenttype:{} [INFO] : getContentHNew Cleats bar & grill location. They have great taste in beer. 3 permanent lines! [INFO] : getContentH82 [INFO] : contenttype:{} [INFO] : getContentHPedaler's Fork Take-over! [INFO] : getContentH26 [INFO] : contenttype:{} [INFO] : getContentHFarm dinner with some Dales, Mamas and traditional pork green chili [INFO] : getContentH67 [INFO] : contenttype:{} [INFO] : getContentHBike MS Happy Hour Event. [INFO] : getContentH27 [INFO] : contenttype:{} [INFO] : getContentHSolid feature for July - on top of our regular shelf space. BOOM. GKnight sold out in 2 days! [INFO] : getContentH93 [INFO] : contenttype:{} [INFO] : getContentHMonth long promo in Jacksonville's Riverside area. The Garage, straight killin' OB sales, yo'! [INFO] : getContentH95 [INFO] : contenttype:{} [INFO] : getContentHHappy 'Merica Day Y'all. Chicken. [INFO] : getContentH33 [INFO] : contenttype:{} [INFO] : getContentHRiver flood did not stop this Oskar Blues Party. Just relocated it. [INFO] : getContentH67 [INFO] : contenttype:{} [INFO] : getContentHEverything Wine & Cigar feature all weekend long! [INFO] : getContentH50 [INFO] : contenttype:{} [INFO] : getContentH#2 on the trifecta. On the main stage at Wine and Cheese Place. [INFO] : getContentH63 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false [INFO] : MARKER SET 150 [INFO] : ENDING NEXT FEED CALL [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : art: Background partial concurrent mark sweep GC freed 1132(61KB) AllocSpace objects, 2(19MB) LOS objects, 9% free, 154MB/170MB, paused 792us total 108.401ms [INFO] : art: Background partial concurrent mark sweep GC freed 642(39KB) AllocSpace objects, 3(24MB) LOS objects, 9% free, 152MB/168MB, paused 780us total 105.715ms [INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false [INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : art: Background partial concurrent mark sweep GC freed 1838(97KB) AllocSpace objects, 2(20MB) LOS objects, 9% free, 150MB/166MB, paused 690us total 106.645ms [INFO] : art: Explicit concurrent mark sweep GC freed 1881(102KB) AllocSpace objects, 3(26MB) LOS objects, 10% free, 142MB/158MB, paused 652us total 75.934ms [INFO] : MARKER HIT FETCHING NEW DATA [INFO] : MARKET HIT: [object Object] [INFO] : MAKING NEXT FEED CALL [INFO] : NEXT LINK: http://prodservice.lilypad.co/social/v3/feed?from_time=1436546304897&limit=50 [INFO] : I/System.out: Thread-5032(ApacheHTTPLog):isSBSettingEnabled false [INFO] : I/System.out: Thread-5032(ApacheHTTPLog):isShipBuild true [INFO] : I/System.out: Thread-5032(ApacheHTTPLog):SMARTBONDING_ENABLED is false [INFO] : I/System.out: Thread-5032(ApacheHTTPLog):SmartBonding Enabling is false, SHIP_BUILD is true, log to file is false, DBG is false [INFO] : I/System.out: TiHttpClient-16 calls detatch() [INFO] : Feed nextfeed length: 50 [INFO] : Feed length: 50 [INFO] : contenttype:{} [INFO] : getContentHOld Chicago Harmony Fort Collins is ready to explore!! #oldchicagoexplorerseries [INFO] : getContentH81 [INFO] : contenttype:{} [INFO] : getContentHDales before the dead at soldier field! [INFO] : getContentH39 [INFO] : contenttype:{} [INFO] : getContentHJohn Garrity ready to sling at the Long Island Open #PDGA DiscGolf [INFO] : getContentH66 [INFO] : contenttype:{} [INFO] : getContentHAmerican Outlaws Boston crushin some Dale's! [INFO] : getContentH44 [INFO] : contenttype:{} [INFO] : getContentHBricks in Cedar Rapids, Iowa! Fundraising night! For every Oskar Blues pint sold tonight $1 will be donated to Habitat for Humanity! [INFO] : getContentH132 [INFO] : contenttype:{} [INFO] : getContentHRasmussen Bike Shop in West Des Moines, Iowa. Painted by Nationally known artist out of Des Moines named Van Holmgren! [INFO] : getContentH119 [INFO] : contenttype:{} [INFO] : contenttype:{} [INFO] : getContentHHe dun did win a coolah!!! [INFO] : getContentH27 [INFO] : contenttype:{} [INFO] : getContentHHappy 4th of July!! Red White and Oskar Blues: A Celebration on the Mississippi River. I will be using the inflatable cans to keep me afloat. [INFO] : getContentH142 [INFO] : contenttype:{} [INFO] : Once again! American Outlaws in Iowa City celebrating after yesterday's win. A little God Bless America with some Dales Pale Ale [INFO] : 128 [INFO] : getContentHOnce again! American Outlaws in Iowa City celebrating after yesterday's win. A little God Bless America with some Dales Pale Ale [INFO] : getContentH128 [INFO] : art: WaitForGcToComplete blocked for 25.634ms for cause HeapTrim [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x0, toolType: 1 [INFO] : I/InputDispatcher( 3471): Delivering touch to : action: 0x1, toolType: 1 [ERROR] : v8: [ERROR] : v8: # [ERROR] : v8: # Fatal error in CALL_AND_RETRY_2 [ERROR] : v8: # [ERROR] : v8: Allocation failed - process out of memory [ERROR] : v8: [ERROR] : v8: # [ERROR] : v8: [INFO] : libc: Fatal signal 5 (SIGTRAP), code 1 in tid 25219 (KrollRuntimeThr)
  5. Rakhi Mitro 2015-08-23

    Hello [~peterladis], We tested your issue in our environment. Its working as expected. We use remote images for listview display( width-240,Height-240). *Testing Environment:* Device: Nexus 7 CLI Version:4.0.1 Titanium SDK Version:4.1.0.GA Android: Google Galaxy Nexus : 4.1.1 - API 16 - 720x1280 Appc Studio: Appcelerator Studio, build: 4.1.0.201507140915 alloy:1.7.3 Test Code: *index.tss*
       "#icon" : {
           width: '240px', height: '240px', left: 0
       },
       "#title" : {
           color: 'black',
           font: { fontFamily:'Arial', fontSize: '20dp', fontWeight:'bold' },
           left: '60dp', top: 0
       },
       "#subtitle" : {
           color: 'gray',
           font: { fontFamily:'Arial', fontSize: '14dp' },
           left: '60dp', top: '25dp'
       },
       
    *index.js*
       $.index.open();
       
    *index.xml*
       
       <Alloy>
           <Window backgroundColor="white">
               <ListView id="listView" defaultItemTemplate="template">
       
                   <!-- The Templates tag sets the ListView's templates property -->
       
                   <Templates>
       
                       <!-- Define your item templates within the Templates tags or use the
                            Require tag to include a view that only contains an ItemTemplate -->
       
                       <ItemTemplate name="template">
                           <ImageView bindId="pic" id="icon" />
                           <Label bindId="info" id="title" />
                           <Label bindId="es_info" id="subtitle" />
                       </ItemTemplate>
       
                   </Templates>
       
                   <ListSection headerTitle="Fruit / Frutas">
                   	<ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />              
       				<ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />              
       				<ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />              
       				<ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                   	<ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />              
       				<ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                   	<ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />              
       				<ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />              
       				<ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />              
       				<ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                   	<ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />              
       				<ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                
                   	<ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />              
       				<ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />              
       				<ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />              
       				<ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                   	<ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />              
       				<ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />              
       				<ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />              
       				<ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                   	<ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />              
       				<ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Apple" es_info:text="Manzana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                       <ListItem info:text="Banana" es_info:text="Banana" pic:image="http://placehold.it/40/000044/ffffff&text=1" />
                   </ListSection>
                  
               </ListView>
           </Window>
       </Alloy>
       
    Thanks

JSON Source