Discussion Forums  >  Maps, Device Location, Tracking

Replies: 11    Views: 187

yenael
Aspiring developer
Profile
Posts: 100
Reg: Sep 17, 2013
Detroit
2,950
10/07/13 09:31 PM (10 years ago)

How to get graphics for location map

My app finally works to an extent. When I use the location map, it shows the four locations with pins on the grey grid and the addresses along with driving directions option, but no graphics show up. What am I doing wrong?
 
Mr stuck
Android Fan
Profile
Posts: 974
Reg: Apr 09, 2012
Fife, Scotland
15,740
like
10/08/13 12:09 AM (10 years ago)
This is normally related to the maps key not being added correctly so this is a good place to start. Make sure you have followed tutorials correctly for adding your map key.
 
SmugWimp
Smugger than thou...
Profile
Posts: 6316
Reg: Nov 07, 2012
Tamuning, GU
81,410
like
10/08/13 12:30 AM (10 years ago)
I concur with Mr. Stuck, and there are a variety of places to look. If you're using BT v2.0, then you're using the 'older' Android code. Check with GoNorthWests tutorials on setting it up. One of the important parts to remember is if you're trying it in 'Debug' mode, or 'Release' mode. If you're doing it in Debug Mode, in your Android Manifest you'll need to set 'android:debuggable="true"' under '<application android:name="your_appDelegate">'. As well, you'll need to use your debug API Key in your strings.xml file (under res/values) and in the 'screen_map.xml file make sure MapView is set to android:apiKey="@string/googleMapsAPIKeyDebug" If you're using the release API Key, set debuggable to false, set the release API key in strings.xml, and in screen_map.xml set MapView to android:apiKey="@string/googleMapsAPIKeyRelease" Either way Clean and rebuild/relaunch. If you're using BT Android v3, Maps don't work in the emulator (yet, anyway) so don't bother trying. But if you're using a device, You only use 1 API Key. Check out the tutorial Chris1 wrote on this for doing Maps on Android: https://www.buzztouch.com/forum/thread.php?tid=64A3735FD695F56D4B0CC1D&fid=06DB0BCB08E3333&sortColumn=FT.id&sortUpDown=DESC&currentPage=1 Also, as per this forum post: https://www.buzztouch.com/forum/thread.php?tid=EE3521BA689EC0071D2E84F&fid=0B19EC7C02CBDD92F12FD08&sortColumn=FT.id&sortUpDown=DESC&currentPage=1 Check to ensure your Google API Key is enabled (in your Google Developer Control Panel) Cheers! -- Smug
 
yenael
Aspiring developer
Profile
Posts: 100
Reg: Sep 17, 2013
Detroit
2,950
like
10/08/13 06:57 AM (10 years ago)
Ok, I fixed all those. Could it be that my phone takes all day because its a dinosaur?
 
yenael
Aspiring developer
Profile
Posts: 100
Reg: Sep 17, 2013
Detroit
2,950
like
10/08/13 06:58 AM (10 years ago)
It swirls.Like it seems like its trying to load.
 
SmugWimp
Smugger than thou...
Profile
Posts: 6316
Reg: Nov 07, 2012
Tamuning, GU
81,410
like
10/08/13 08:37 PM (10 years ago)
It's possible your phone is a dinosaur, but you run other apps on it; a BT App shouldn't be any longer than anything else you already work with; it's compiled code like all the rest :) Monitor your logcat and see what it is doing; it may give you a hint there. But the bottom line will be that there will be some small detail that is missing or not 'quite' correct. If (using BTv2) you're using a debug key make sure all the stuff is set for debug. If you're using a release key, make sure all the stuff is set for release. If you're using BTv3 make sure all that is done and double checked. Make sure you've got the Google Play Services referenced and all that. And make sure in your google control panel, you've enabled the API key so that Google will play nice when your app asks for data. Usually your logs are the best place for information. Somewhere in there lies the key. If you're certain that your setup is correct, the logs will let you know what's happening each step of the way. Cheers! -- Smug
 
yenael
Aspiring developer
Profile
Posts: 100
Reg: Sep 17, 2013
Detroit
2,950
like
10/09/13 04:15 AM (10 years ago)
Okay, Ill go back and check that. Thanks Smug
 
SmugWimp
Smugger than thou...
Profile
Posts: 6316
Reg: Nov 07, 2012
Tamuning, GU
81,410
like
10/09/13 02:06 PM (10 years ago)
If you're still having an issue, send me a copy of your logs, and we'll help you look through them for an answer. Cheers! -- Smug
 
yenael
Aspiring developer
Profile
Posts: 100
Reg: Sep 17, 2013
Detroit
2,950
like
10/11/13 10:27 AM (10 years ago)
I was perusing the Manifest File and since the Google Maps Library is used at the bottom of the xml file, how come there isnt a use: Google Play Services Library in there too? Could this be an issue? I was trying to double check everything to solve this issue, but its unbenownst to me.
 
yenael
Aspiring developer
Profile
Posts: 100
Reg: Sep 17, 2013
Detroit
2,950
like
10/11/13 10:34 AM (10 years ago)
Plus I can't find anywhere in my project where it would access the google play services library :(. I was just wondering. Maybe I missed something.
 
yenael
Aspiring developer
Profile
Posts: 100
Reg: Sep 17, 2013
Detroit
2,950
like
10/11/13 10:45 AM (10 years ago)
I'm back with my tail between my legs, I forgot to add the Google Play services lib from the properties menu. Whoops. Thanks Smug and all who helped me once again, I will update my app and see what happens.
 
yenael
Aspiring developer
Profile
Posts: 100
Reg: Sep 17, 2013
Detroit
2,950
like
10/12/13 08:36 AM (10 years ago)
Okay Smug, *Sigh* Let me give you a run down of what all I've done in case I missed anything. Including the Captains Log. I downloaded the BT2.0 file, imported it, Checked the properties of the project to make sure build target was Google Api 2.2, and that Google play services was included(library unchecked) I added my release key to the strings.xml file I made sure the debug line says false and made sure the use library said com.google.android.maps and line was uncommented, I also checked the screenmap.xml to make sure the api line said release and not debug I added my background and splash screens to the drawable folder I copy and pasted my BT config file just in case(even checked code in json to make sure it was valid My project.properties references google api 8 and google play service library I went into my google developer account and made sure services were selected checked off: Google Maps Android API v2 Google Maps API v3 Google Play Android Developer API and went into my lib directory on the project to make sure the google play services lib wasn't there I cleaned the project erased the project from the emulator and my device clicked run on the emulator(making sure it had the build target google api 2.2) and here is my logcat: 10-12 15:21:22.703: D/skia(144): purging 6K from font cache [1 entries] 10-12 15:21:23.064: D/dalvikvm(144): GC_EXPLICIT freed 3972 objects / 246200 bytes in 352ms 10-12 15:21:28.071: D/dalvikvm(184): GC_EXPLICIT freed 2337 objects / 148416 bytes in 302ms 10-12 15:21:33.151: D/dalvikvm(206): GC_EXPLICIT freed 1857 objects / 122368 bytes in 310ms 10-12 15:21:38.238: D/dalvikvm(216): GC_EXPLICIT freed 1900 objects / 127128 bytes in 384ms 10-12 15:22:54.352: D/AndroidRuntime(296): >>>>>>>>>>>>>> AndroidRuntime START <<<<<<<<<<<<<< 10-12 15:22:54.352: D/AndroidRuntime(296): CheckJNI is ON 10-12 15:22:55.042: D/AndroidRuntime(296): --- registering native functions --- 10-12 15:22:57.736: I/ActivityManager(58): Start proc com.android.defcontainer for service com.android.defcontainer/.DefaultContainerService: pid=302 uid=10027 gids={1015, 2001} 10-12 15:22:59.108: D/dalvikvm(32): GC_EXPLICIT freed 284 objects / 10768 bytes in 1367ms 10-12 15:22:59.914: D/dalvikvm(32): GC_EXPLICIT freed 47 objects / 2080 bytes in 568ms 10-12 15:23:00.476: D/dalvikvm(32): GC_EXPLICIT freed 2 objects / 64 bytes in 564ms 10-12 15:23:01.604: D/dalvikvm(302): GC_EXPLICIT freed 868 objects / 59416 bytes in 876ms 10-12 15:23:06.542: D/PackageParser(58): Scanning package: /data/app/vmdl46425.tmp 10-12 15:23:15.523: D/PackageManager(58): Scanning package com.latesthairmag 10-12 15:23:15.643: I/PackageManager(58): /data/app/com.latesthairmag-1.apk changed; unpacking 10-12 15:23:15.894: D/installd(34): DexInv: --- BEGIN '/data/app/com.latesthairmag-1.apk' --- 10-12 15:23:19.152: D/dalvikvm(309): DexOpt: couldn't find field Landroid/content/res/Configuration;.smallestScreenWidthDp 10-12 15:23:36.903: D/dalvikvm(309): DexOpt: load 781ms, verify 17820ms, opt 234ms 10-12 15:23:37.153: D/installd(34): DexInv: --- END '/data/app/com.latesthairmag-1.apk' (success) --- 10-12 15:23:37.173: D/PackageManager(58): Services: com.latesthairmag.GCMIntentService 10-12 15:23:37.173: D/PackageManager(58): Receivers: com.google.android.gcm.GCMBroadcastReceiver 10-12 15:23:37.173: D/PackageManager(58): Activities: com.latesthairmag.BT_activity_root com.latesthairmag.BT_activity_base com.latesthairmag.BT_activity_root_tabs com.latesthairmag.BT_screen_customURL com.latesthairmag.BT_screen_menuListSimple com.latesthairmag.BT_screen_settingsLocation com.latesthairmag.BT_screen_splash com.latesthairmag.BT_screen_map 10-12 15:23:37.183: D/PackageManager(58): Permissions: com.latesthairmag.permission.C2D_MESSAGE 10-12 15:23:37.203: I/ActivityManager(58): Force stopping package com.latesthairmag uid=10040 10-12 15:23:38.036: I/installd(34): move /data/dalvik-cache/data@[email protected]@classes.dex -> /data/dalvik-cache/data@[email protected]@classes.dex 10-12 15:23:38.043: D/PackageManager(58): New package installed in /data/app/com.latesthairmag-1.apk 10-12 15:23:38.133: W/PackageManager(58): Unknown permission android.permission.ADD_SYSTEM_SERVICE in package com.android.phone 10-12 15:23:38.163: W/PackageManager(58): Not granting permission android.permission.SEND_DOWNLOAD_COMPLETED_INTENTS to package com.android.browser (protectionLevel=2 flags=0x1be45) 10-12 15:23:38.284: W/PackageManager(58): Unknown permission com.google.android.gm.permission.WRITE_GMAIL in package com.android.settings 10-12 15:23:38.284: W/PackageManager(58): Unknown permission com.google.android.gm.permission.READ_GMAIL in package com.android.settings 10-12 15:23:38.393: W/PackageManager(58): Unknown permission com.android.providers.im.permission.READ_ONLY in package com.google.android.apps.maps 10-12 15:23:38.403: W/PackageManager(58): Unknown permission com.google.android.pushmessaging.permission.RECEIVE in package com.google.android.apps.maps 10-12 15:23:40.685: D/dalvikvm(58): GC_EXPLICIT freed 16092 objects / 957936 bytes in 569ms 10-12 15:23:40.716: D/AndroidRuntime(296): Shutting down VM 10-12 15:23:40.813: D/dalvikvm(296): Debugger has detached; object registry had 1 entries 10-12 15:23:40.854: I/AndroidRuntime(296): NOTE: attach of thread 'Binder Thread #3' failed 10-12 15:23:41.825: I/ActivityManager(58): Start proc com.svox.pico for broadcast com.svox.pico/.VoiceDataInstallerReceiver: pid=311 uid=10010 gids={} 10-12 15:23:42.093: W/RecognitionManagerService(58): no available voice recognition services found 10-12 15:23:44.153: I/ActivityThread(311): Publishing provider com.svox.pico.providers.SettingsProvider: com.svox.pico.providers.SettingsProvider 10-12 15:23:48.952: D/AndroidRuntime(320): >>>>>>>>>>>>>> AndroidRuntime START <<<<<<<<<<<<<< 10-12 15:23:48.962: D/AndroidRuntime(320): CheckJNI is ON 10-12 15:23:49.912: D/AndroidRuntime(320): --- registering native functions --- 10-12 15:23:53.212: I/ActivityManager(58): Starting activity: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10000000 cmp=com.latesthairmag/.BT_activity_root } 10-12 15:23:53.352: D/AndroidRuntime(320): Shutting down VM 10-12 15:23:53.376: D/dalvikvm(320): Debugger has detached; object registry had 1 entries 10-12 15:23:53.472: I/AndroidRuntime(320): NOTE: attach of thread 'Binder Thread #3' failed 10-12 15:23:53.672: I/ActivityManager(58): Start proc com.latesthairmag for activity com.latesthairmag/.BT_activity_root: pid=327 uid=10040 gids={3003, 1015, 1006} 10-12 15:23:58.280: W/ZZ(327): latesthairmag_appDelegate: onCreate 10-12 15:23:58.282: W/ZZ(327): latesthairmag_appDelegate:loadAudioPlayer 10-12 15:23:58.432: W/ZZ(327): BT_application: Creating root-app object. 10-12 15:23:58.432: W/ZZ(327): BT_device: Creating root-device object. 10-12 15:23:58.596: W/ZZ(327): BT_device: This device uses an Android display density of: 320dpi (dots per inch) 10-12 15:23:58.602: W/ZZ(327): BT_device: This device can take pictures. 10-12 15:23:58.602: W/ZZ(327): BT_device: This device can take videos. 10-12 15:23:58.602: W/ZZ(327): BT_device: This device can send emails. 10-12 15:23:58.942: W/ZZ(327): BT_device: This device is GPS capable. 10-12 15:23:59.115: W/ZZ(327): BT_user: Creating root-user object. 10-12 15:23:59.393: W/ZZ(327): latesthairmag_appDelegate:SoundEffectLoader:doInBackground initSoundEffects 10-12 15:23:59.605: W/ZZ(327): latesthairmag_appDelegate:SoundEffectLoader:doInBackground initSoundEffects DISABLED 10-12 15:24:00.478: W/ZZ(327): BT_activity_root:onCreate 10-12 15:24:02.433: W/ZZ(327): BT_activity_root:loadAppData 10-12 15:24:02.833: W/ZZ(327): BT_device:updateDeviceConnectionType: ConnectionType: NONE 10-12 15:24:03.123: W/ZZ(327): BT_device:updateDeviceSize This device has a screen size of: 720 (width) x 1280 (height). 10-12 15:24:03.123: W/ZZ(327): BT_device:updateDeviceSize This application considers this to be a "large device" 10-12 15:24:03.379: W/ActivityManager(58): Launch timeout has expired, giving up wake lock! 10-12 15:24:03.629: W/ZZ(327): BT_device:updateDeviceSize This device is in "portrait" orientation. 10-12 15:24:03.629: W/ZZ(327): BT_activity_root:loadAppData loading BT_config.txt from /assests folder in Eclipse project... 10-12 15:24:06.858: W/ActivityManager(58): Activity idle timeout for HistoryRecord{4a44f260 com.latesthairmag/.BT_activity_root} 10-12 15:24:07.842: W/ZZ(327): BT_fileManager: readTextFileFromAssets: "/BT_config.txt" 10-12 15:24:08.153: W/ZZ(327): BT_activity_root:loadAppData loaded BT_config.txt from /assets folder successfully... 10-12 15:24:08.153: W/ZZ(327): BT_application: getDataURLFromAppData 10-12 15:24:08.463: W/ZZ(327): BT_activity_root:loadAppData BT_config.txt file does use a dataURL for remote updates... 10-12 15:24:08.535: W/ZZ(327): BT_activity_root:loadAppData cachedAppConfig.txt does not exist in the cache... 10-12 15:24:08.535: W/ZZ(327): BT_application: validateApplicationData 10-12 15:24:08.773: W/ZZ(327): BT_activity_root: application data appears to be valid JSON... 10-12 15:24:08.773: W/ZZ(327): BT_application: parseJSONData 10-12 15:24:09.324: I/ActivityManager(58): Displayed activity com.latesthairmag/.BT_activity_root: 15839 ms (total 232096 ms) 10-12 15:24:09.532: W/ZZ(327): BT_application: parsing core settings... 10-12 15:24:09.532: W/ZZ(327): BT_application: parsing themes... 10-12 15:24:09.619: W/ZZ(327): BT_application: parsing tabs... 10-12 15:24:09.619: W/ZZ(327): BT_application: parsing screens... 10-12 15:24:09.623: W/ZZ(327): BT_application:parseJSONData done parsing application data 10-12 15:24:10.235: W/ZZ(327): BT_activity_root:transitionToAppHomeScreen 10-12 15:24:10.343: W/ZZ(327): BT_activity_root:transitionToAppHomeScreen splash screen with itemId: 9495868B1076F6771311404 10-12 15:24:10.343: W/ZZ(327): BT_application:getScreenDataByItemId with itemId: = "9495868B1076F6771311404" 10-12 15:24:10.343: W/ZZ(327): BT_application:getScreenDataByItemId with itemType: "BT_screen_splash" with nickname: "lhm" 10-12 15:24:10.573: I/ActivityManager(58): Starting activity: Intent { flg=0x24000000 cmp=com.latesthairmag/.BT_screen_splash (has extras) } 10-12 15:24:11.169: W/ActivityManager(58): Activity pause timeout for HistoryRecord{4a44f260 com.latesthairmag/.BT_activity_root} 10-12 15:24:11.453: W/ZZ(327): BT_activity_base:onCreate (BASE CLASS) 10-12 15:24:11.623: W/ZZ(327): BT_fileManager: saveTextFileToCache: appModified.txt 10-12 15:24:11.715: W/ZZ(327): BT_screen_splash:onCreate 10-12 15:24:12.085: D/dalvikvm(327): GC_FOR_MALLOC freed 5141 objects / 350664 bytes in 365ms 10-12 15:24:12.085: W/ZZ(327): BT_viewUtilities:updateBackgroundColorsForScreen with nickname: "lhm" 10-12 15:24:12.093: W/ZZ(327): BT_viewUtilities:updateBackgroundColorsForScreen: setting background color to: "#000000" 10-12 15:24:12.184: W/ZZ(327): BT_screen_splash:onStart (BASE CLASS) 10-12 15:24:12.184: W/ZZ(327): BT_screen_splash:backgroundWorkerThread using image from project bundle: "loadingscreenlarge.jpg" 10-12 15:24:12.213: W/ZZ(327): BT_screen_splash: start GPS is set to YES in the applications configuration data, trying to start GPS 10-12 15:24:12.232: W/ZZ(327): BT_screen_splash: user has not prevented the GPS from starting using a BT_screen_settingsLocation screen 10-12 15:24:12.255: W/ZZ(327): BT_screen_splash:startListening (started listening for location changes) 10-12 15:24:12.523: D/dalvikvm(327): GC_EXTERNAL_ALLOC freed 525 objects / 30376 bytes in 236ms 10-12 15:24:12.523: W/ZZ(327): BT_screen_splash:startListening asking for GPS locations updates... 10-12 15:24:12.523: W/ZZ(327): BT_screen_splash:onResume (BASE CLASS) 10-12 15:24:13.222: W/ResourceType(58): Skipping entry 0x7f040002 in package table 0 because it is not complex! 10-12 15:24:13.252: W/ResourceType(58): Skipping entry 0x7f040003 in package table 0 because it is not complex! 10-12 15:24:14.262: I/ActivityManager(58): Displayed activity com.latesthairmag/.BT_screen_splash: 3097 ms (total 3097 ms) 10-12 15:24:15.532: W/ZZ(327): BT_screen_splash:animateSplashScreen 10-12 15:24:15.532: W/ZZ(327): BT_application: getHomeScreen 10-12 15:24:15.555: W/ZZ(327): BT_act_controller:loadScreenObject for screen with itemId: "EED7F6624BA419B9BD568DA" and itemNickname: "Home Screen Menu" and itemType: "BT_screen_menuListSimple" 10-12 15:24:15.724: I/ActivityManager(58): Starting activity: Intent { cmp=com.latesthairmag/.BT_screen_menuListSimple (has extras) } 10-12 15:24:15.803: W/ZZ(327): BT_screen_splash:onPause (BASE CLASS) 10-12 15:24:18.353: W/ZZ(327): BT_activity_base:onCreate (BASE CLASS) 10-12 15:24:18.462: W/ZZ(327): BT_screen_menuListSimple:onCreate 10-12 15:24:18.462: W/ZZ(327): BT_viewUtilities:updateBackgroundColorsForScreen with nickname: "Home Screen Menu" 10-12 15:24:18.472: W/ZZ(327): BT_viewUtilities:updateBackgroundColorsForScreen: setting background color to: "#FFFFFF" 10-12 15:24:18.492: W/ZZ(327): BT_viewUtilities:getNavBarForScreen building nav. bar for screen with nickname: "Home Screen Menu" 10-12 15:24:18.556: W/ZZ(327): BT_screen_menuListSimple:backgroundWorkerThread using image from project bundle: "splashscreenlarge.png" 10-12 15:24:18.832: D/dalvikvm(327): GC_EXTERNAL_ALLOC freed 514 objects / 39640 bytes in 210ms 10-12 15:24:23.334: W/SharedBufferStack(58): waitForCondition(LockCondition) timed out (identity=1, status=0). CPU may be pegged. trying again. 10-12 15:24:25.564: W/ActivityManager(58): Launch timeout has expired, giving up wake lock! 10-12 15:24:25.848: W/ActivityManager(58): Activity idle timeout for HistoryRecord{4a4bcb70 com.latesthairmag/.BT_screen_menuListSimple} 10-12 15:24:29.160: W/ZZ(327): BT_fileManager:deleteFile EED7F6624BA419B9BD568DA_screenData.txt 10-12 15:24:29.563: W/ZZ(327): BT_screen_menuListSimple:onStart (BASE CLASS) 10-12 15:24:29.563: W/ZZ(327): BT_screen_menuListSimple: start GPS is set to YES in the applications configuration data, trying to start GPS 10-12 15:24:29.603: W/ZZ(327): BT_screen_menuListSimple: user has not prevented the GPS from starting using a BT_screen_settingsLocation screen 10-12 15:24:29.963: W/ZZ(327): BT_screen_menuListSimple:startListening (started listening for location changes) 10-12 15:24:30.115: W/ZZ(327): BT_screen_menuListSimple:startListening asking for GPS locations updates... 10-12 15:24:30.123: W/ZZ(327): BT_screen_menuListSimple:onStart using data from app's configuration file 10-12 15:24:30.255: W/ZZ(327): BT_screen_menuListSimple:parseScreenData 10-12 15:24:30.293: W/ZZ(327): BT_screen_menuListSimple:onResume (BASE CLASS) 10-12 15:24:30.293: W/ZZ(327): BT_screen_menuListSimple:reportToCloud 10-12 15:24:30.427: W/ZZ(327): BT_screen_menuListSimple:reportToCloudWorkerThread getting lastModified from reportToCloudURL https://www.buzztouch.com/api/app/?command=reportToCloud&appGuid=JA5AAFDE3F799D949AE9467FF&apiKey=3A37F3A8F6EA97B338D7D10&apiSecret=098A95815C35723895DF5D5&deviceId=&deviceLatitude=&deviceLongitude=&deviceModel=generic-google_sdk&userId=&currentMode=Design 10-12 15:24:30.427: W/ZZ(327): BT_downloader:downloadTextData from URL: https://www.buzztouch.com/api/app/?command=reportToCloud&appGuid=JA5AAFDE3F799D949AE9467FF&apiKey=3A37F3A8F6EA97B338D7D10&apiSecret=098A95815C35723895DF5D5&deviceId=&deviceLatitude=&deviceLongitude=&deviceModel=generic-google_sdk&userId=&currentMode=Design 10-12 15:24:30.463: W/ZZ(327): BT_screen_splash:setBackgroundImage: returned to UI Thread... 10-12 15:24:30.463: W/ZZ(327): BT_screen_splash:setBackgroundImage: setting background image 10-12 15:24:30.473: W/ZZ(327): BT_screen_splash:onStop (BASE CLASS) 10-12 15:24:30.473: W/ZZ(327): BT_screen_splash:onDestroy (BASE CLASS) 10-12 15:24:31.034: W/ZZ(327): BT_screen_menuListSimple:setBackgroundImage: returned to UI Thread... 10-12 15:24:31.034: W/ZZ(327): BT_screen_menuListSimple:setBackgroundImage: setting background image 10-12 15:24:37.713: W/ZZ(327): BT_downloader:downloadTextData from URL EXCEPTION: java.net.UnknownHostException: Host is unresolved: www.buzztouch.com:443 URL: https://www.buzztouch.com/api/app/?command=reportToCloud&appGuid=JA5AAFDE3F799D949AE9467FF&apiKey=3A37F3A8F6EA97B338D7D10&apiSecret=098A95815C35723895DF5D5&deviceId=&deviceLatitude=&deviceLongitude=&deviceModel=generic-google_sdk&userId=&currentMode=Design 10-12 15:24:39.306: I/ActivityManager(58): Displayed activity com.latesthairmag/.BT_screen_menuListSimple: 23498 ms (total 23498 ms) 10-12 15:24:39.903: W/ZZ(327): BT_screen_menuListSimple:handleReportToCloudResults EXCEPTION processing results: org.json.JSONException: End of input at character 0 of 10-12 15:24:41.422: D/dalvikvm(118): GC_EXPLICIT freed 811 objects / 46136 bytes in 6113ms 10-12 15:24:56.684: W/ZZ(327): BT_screen_menuListSimple:handleItemTap loads screen with itemId: "9462E703D19A9A717A76D86" 10-12 15:24:56.693: W/ZZ(327): BT_application:getScreenDataByItemId with itemId: = "9462E703D19A9A717A76D86" 10-12 15:24:56.803: W/ZZ(327): BT_application:getScreenDataByItemId with itemType: "BT_screen_map" with nickname: "locationmap" 10-12 15:24:56.803: W/ZZ(327): BT_act_controller:loadScreenObject for screen with itemId: "9462E703D19A9A717A76D86" and itemNickname: "locationmap" and itemType: "BT_screen_map" 10-12 15:24:57.199: I/ActivityManager(58): Starting activity: Intent { cmp=com.latesthairmag/.BT_screen_map (has extras) } 10-12 15:24:57.627: W/ZZ(327): BT_screen_menuListSimple:onPause (BASE CLASS) 10-12 15:24:58.333: W/ZZ(327): BT_screen_map:onCreate 10-12 15:24:58.383: W/ZZ(327): BT_viewUtilities:updateBackgroundColorsForScreen with nickname: "locationmap" 10-12 15:24:58.383: W/ZZ(327): BT_viewUtilities:updateBackgroundColorsForScreen: setting background color to: "#CC0000" 10-12 15:24:58.478: W/ZZ(327): BT_viewUtilities:getNavBarForScreen building nav. bar for screen with nickname: "locationmap" 10-12 15:25:01.065: D/dalvikvm(327): GC_FOR_MALLOC freed 22827 objects / 1458448 bytes in 369ms 10-12 15:25:03.963: W/ZZ(327): BT_screen_map:onStart using data from app's configuration file 10-12 15:25:03.963: W/ZZ(327): BT_screen_map:parseScreenData 10-12 15:25:04.243: W/ZZ(327): BT_screen_map:showMapPins 10-12 15:25:04.243: W/ZZ(327): BT_screen_map:showMapPins 10-12 15:25:04.313: W/ZZ(327): BT_screen_menuListSimple:onStop (BASE CLASS) 10-12 15:25:05.774: I/ActivityManager(58): Displayed activity com.latesthairmag/.BT_screen_map: 8034 ms (total 8034 ms) 10-12 15:25:07.243: W/ActivityManager(58): Launch timeout has expired, giving up wake lock! 10-12 15:25:07.783: W/ActivityManager(58): Activity idle timeout for HistoryRecord{4a56a7d0 com.latesthairmag/.BT_screen_map} 10-12 15:25:14.539: D/dalvikvm(234): GC_EXPLICIT freed 1953 objects / 333184 bytes in 356ms 10-12 15:25:18.913: D/dalvikvm(327): GC_FOR_MALLOC freed 33893 objects / 2431552 bytes in 288ms 10-12 15:25:32.393: W/KeyCharacterMap(327): No keyboard for id 0 10-12 15:25:32.393: W/KeyCharacterMap(327): Using default keymap: /system/usr/keychars/qwerty.kcm.bin 10-12 15:25:32.703: W/ZZ(327): BT_screen_menuListSimple:onStart (BASE CLASS) 10-12 15:25:32.703: W/ZZ(327): BT_screen_menuListSimple: start GPS is set to YES in the applications configuration data, trying to start GPS 10-12 15:25:32.703: W/ZZ(327): BT_screen_menuListSimple: user has not prevented the GPS from starting using a BT_screen_settingsLocation screen 10-12 15:25:32.726: W/ZZ(327): BT_screen_menuListSimple:startListening (started listening for location changes) 10-12 15:25:32.733: W/ZZ(327): BT_screen_menuListSimple:startListening asking for GPS locations updates... 10-12 15:25:32.733: W/ZZ(327): BT_screen_menuListSimple:onResume (BASE CLASS) 10-12 15:25:32.733: W/ZZ(327): BT_screen_menuListSimple:reportToCloud 10-12 15:25:32.783: W/ZZ(327): BT_screen_menuListSimple:reportToCloudWorkerThread getting lastModified from reportToCloudURL https://www.buzztouch.com/api/app/?command=reportToCloud&appGuid=JA5AAFDE3F799D949AE9467FF&apiKey=3A37F3A8F6EA97B338D7D10&apiSecret=098A95815C35723895DF5D5&deviceId=&deviceLatitude=&deviceLongitude=&deviceModel=generic-google_sdk&userId=&currentMode=Design 10-12 15:25:32.783: W/ZZ(327): BT_downloader:downloadTextData from URL: https://www.buzztouch.com/api/app/?command=reportToCloud&appGuid=JA5AAFDE3F799D949AE9467FF&apiKey=3A37F3A8F6EA97B338D7D10&apiSecret=098A95815C35723895DF5D5&deviceId=&deviceLatitude=&deviceLongitude=&deviceModel=generic-google_sdk&userId=&currentMode=Design 10-12 15:25:33.073: W/ZZ(327): BT_downloader:downloadTextData from URL EXCEPTION: java.net.UnknownHostException: Host is unresolved: www.buzztouch.com:443 URL: https://www.buzztouch.com/api/app/?command=reportToCloud&appGuid=JA5AAFDE3F799D949AE9467FF&apiKey=3A37F3A8F6EA97B338D7D10&apiSecret=098A95815C35723895DF5D5&deviceId=&deviceLatitude=&deviceLongitude=&deviceModel=generic-google_sdk&userId=&currentMode=Design 10-12 15:25:33.733: W/ZZ(327): BT_screen_menuListSimple:handleReportToCloudResults EXCEPTION processing results: org.json.JSONException: End of input at character 0 of 10-12 15:25:58.309: W/ZZ(327): BT_screen_menuListSimple:handleItemTap loads screen with itemId: "9462E703D19A9A717A76D86" 10-12 15:25:58.309: W/ZZ(327): BT_application:getScreenDataByItemId with itemId: = "9462E703D19A9A717A76D86" 10-12 15:25:58.323: W/ZZ(327): BT_application:getScreenDataByItemId with itemType: "BT_screen_map" with nickname: "locationmap" 10-12 15:25:58.333: W/ZZ(327): BT_act_controller:loadScreenObject for screen with itemId: "9462E703D19A9A717A76D86" and itemNickname: "locationmap" and itemType: "BT_screen_map" 10-12 15:25:58.394: I/ActivityManager(58): Starting activity: Intent { cmp=com.latesthairmag/.BT_screen_map (has extras) } 10-12 15:25:58.678: W/ZZ(327): BT_screen_menuListSimple:onPause (BASE CLASS) 10-12 15:25:58.853: W/MapActivity(327): Recycling dispatcher com.google.googlenav.datarequest.DataRequestDispatcher@4a34a948 10-12 15:25:58.883: V/MapActivity(327): Recycling map object. 10-12 15:25:58.883: W/ZZ(327): BT_screen_map:onCreate 10-12 15:25:58.946: W/ZZ(327): BT_viewUtilities:updateBackgroundColorsForScreen with nickname: "locationmap" 10-12 15:25:58.946: W/ZZ(327): BT_viewUtilities:updateBackgroundColorsForScreen: setting background color to: "#CC0000" 10-12 15:25:58.946: W/ZZ(327): BT_viewUtilities:getNavBarForScreen building nav. bar for screen with nickname: "locationmap" 10-12 15:25:59.093: W/ZZ(327): BT_screen_map:onStart using data from app's configuration file 10-12 15:25:59.093: W/ZZ(327): BT_screen_map:parseScreenData 10-12 15:25:59.133: W/ZZ(327): BT_screen_map:showMapPins 10-12 15:25:59.133: W/ZZ(327): BT_screen_map:showMapPins 10-12 15:26:00.203: I/ActivityManager(58): Displayed activity com.latesthairmag/.BT_screen_map: 1523 ms (total 1523 ms) Still no map pictures, I can view the directions and see the pins and my phone(of course the little phone shows up on my device not the emulator) Let me know if you see anything. Thank you!
 

Login + Screen Name Required to Post

pointerLogin to participate so you can start earning points. Once you're logged in (and have a screen name entered in your profile), you can subscribe to topics, follow users, and start learning how to make apps like the pros.