That commit resolves issue with ManifestParse error.
It was mistake in function that check if both launch and splash
screen are defined (the return value was unnecessarily negated).
Change-Id: I3b023b8caa6930b7758d63e791d66db48287c935
}
bool WidgetConfigParser::CheckSplashAndLaunchScreenOccurences() {
- return !(parser_->GetManifestData(SplashScreenInfo::Key()) &&
- parser_->GetManifestData(LaunchScreenInfo::Key()));
+ return parser_->GetManifestData(SplashScreenInfo::Key()) &&
+ parser_->GetManifestData(LaunchScreenInfo::Key());
}
bool WidgetConfigParser::ParseManifest(const boost::filesystem::path& path) {
widget_path_ = path.parent_path();