[AC-907] Map SIGSEGV when removing it from the window
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | n/a |
Status | Closed |
Resolution | Cannot Reproduce |
Resolution Date | 2014-08-26T04:50:16.000+0000 |
Affected Version/s | n/a |
Fix Version/s | n/a |
Components | Appcelerator Modules |
Labels | android, map, module |
Reporter | Alejandro Vera |
Assignee | Mauro Parra-Miranda |
Created | 2014-07-16T10:56:55.000+0000 |
Updated | 2016-03-08T07:37:12.000+0000 |
Description
This simple code always crashes.
var window = Ti.UI.createWindow();
var map = Map.createView({
top:0,
left:0,
width: "100%",
height: "100%"
});
window.add(map);
window.open();
setTimeout(function(){
Ti.API.info("Removing map");
window.remove(map);
}, 15000);
Attachments
File | Date | Size |
---|---|---|
avd_details.png | 2014-07-16T10:56:55.000+0000 | 40209 |
log.txt | 2014-07-16T10:56:55.000+0000 | 15724 |
Hi, I have tested this issue. It’s not a bug.Its working good without any crashes.
Testing Environment:
Titanium SDK: 3.2.3.GA, 3.3.0.RC Titanium CLI: 3.3.0 Android SDK: 4.2.2,4.4.2, OS X Version: 10.9.3, Appcelerator Studio: 3.2.3Steps to Test:
1.Create a Classic project. 2.Paste this code in app.js file. 3. Add map module in tiapp.xml file. 4.Configure your tiapp.xml file with Google API key. 5.Run this code with testing environment.Test Case
For more details:[http://docs.appcelerator.com/titanium/latest/#!/guide/Google_Maps_v2_for_Android] Thanks.
Hello [~xafilox]! Do you mind to take a look into the code sample and let us know if your device is SIGSEGV with it? TIA!
Please check our testcase. Will reopen if the reporter can provide a testcase that reproduces the issue.