Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TIMOB-18276] Android: TiUINotification message and accessors not defined #8637

Merged
merged 1 commit into from Nov 28, 2016

Conversation

frankieandone
Copy link
Contributor

JIRA: https://jira.appcelerator.org/browse/TIMOB-18276

Test Case

var t = Ti.UI.createNotification({
	message: "property msg",
	duration: Ti.UI.NOTIFICATION_DURATION_LONG
});
Ti.API.debug("test msg " + t.getMessage());

t.message = "assignment msg";
Ti.API.debug("test msg " + t.getMessage());

t.setMessage("setMessage msg");
Ti.API.debug("test msg " + t.getMessage());

t.show();

Should see see in this log:

? D/TiAPI:  test msg property msg
? D/TiAPI:  test msg assignment msg
? D/TiAPI:  test msg setMessage msg

@frankieandone frankieandone force-pushed the timob-18276 branch 3 times, most recently from 593e6f5 to ab8953e Compare November 27, 2016 05:48
@garymathews garymathews self-assigned this Nov 27, 2016
@garymathews garymathews added this to the 6.1.0 milestone Nov 27, 2016
@garymathews
Copy link
Contributor

Looks like you need to fix your branch, changes look good 👍

@garymathews
Copy link
Contributor

CR: PASS
FT: PASS

@garymathews garymathews merged commit a33f4bb into tidev:master Nov 28, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants