<?xml version="1.0" encoding="utf-8"?>
<Application>
	<AppTitle>statusbar</AppTitle>
	<AppShortName>MyApp</AppShortName>
	<Author>Author name</Author>
	<Version>1.0</Version>
	<DesignDeviceName>GenericPhone</DesignDeviceName>
	<VariablesScanned>False</VariablesScanned>
	<PageWidth>320</PageWidth>
	<PageHeight>480</PageHeight>
	<AutoSizeWidth>True</AutoSizeWidth>
	<AutoSizeHeight>True</AutoSizeHeight>
	<HideScrollbars>False</HideScrollbars>
	<PublishPlatform>MobileApp</PublishPlatform>
	<EmptyBuildFolder>False</EmptyBuildFolder>
	<MobileBuildTarget>E:\status.zip</MobileBuildTarget>
	<AppIcon>C:\Users\Asmat\Documents\VisualNeoWeb\Libraries\img\default-icon.png</AppIcon>
	<LanguageCode>en</LanguageCode>
	<ThemeColor>#000000</ThemeColor>
	<MobileID>appo.id2.com</MobileID>
	<MobileOSTypes>[AndroidOS]</MobileOSTypes>
	<WindowState>normal</WindowState>
	<TitleBar>True</TitleBar>
	<Sizeable>True</Sizeable>
	<MaximizeBtn>False</MaximizeBtn>
	<MinimizeBtn>True</MinimizeBtn>
	<SystemMenu>True</SystemMenu>
	<ContextMenu>False</ContextMenu>
	<AlwaysOnTop>False</AlwaysOnTop>
	<ShowInTaskbar>True</ShowInTaskbar>
	<SingleInstance>False</SingleInstance>
	<ChromeKioskMode>False</ChromeKioskMode>
	<CustomXML>&lt;plugin name=&quot;cordova-plugin-statusbar&quot; source=&quot;npm&quot; spec=&quot;~2.4.3&quot; /&gt;</CustomXML>
	<startup>NeoScriptToJS
BEGINJS
StatusBar.hide();

ENDJS</startup>
	<Components>
		<FunctionList name="Subroutines"/>
		<LibraryList name="Libraries"/>
		<PageList name="Main">
			<Components>
				<Page id="NewPage">
					<Components>
						<PushButton id="PushButton1">
							<left>50px</left>
							<top>57px</top>
							<width>216px</width>
							<height>45px</height>
							<caption>hide</caption>
							<click>BEGINJS
StatusBar.hide();

ENDJS</click>
						</PushButton>
						<PushButton id="PushButton2">
							<left>50px</left>
							<top>110px</top>
							<width>216px</width>
							<height>45px</height>
							<caption>show</caption>
							<click>BEGINJS
StatusBar.show();

ENDJS</click>
						</PushButton>
						<PushButton id="PushButton3">
							<left>50px</left>
							<top>168px</top>
							<width>216px</width>
							<height>45px</height>
							<caption>changeColor</caption>
							<click>BEGINJS
if (cordova.platformId == &apos;android&apos;) {
    StatusBar.overlaysWebView(true);
    StatusBar.backgroundColorByHexString(&apos;#33000000&apos;);
}

ENDJS</click>
						</PushButton>
					</Components>
				</Page>
			</Components>
		</PageList>
		<PageList name="Master">
			<Components>
				<Page id="MasterPage"/>
			</Components>
		</PageList>
		<PageList name="Dialog">
			<Components>
				<Page id="NewDialog">
					<Components>
						<DialogContainer id="DialogContainer1">
							<left>0px</left>
							<top>0px</top>
							<width>320px</width>
							<height>480px</height>
							<close_button>False</close_button>
						</DialogContainer>
					</Components>
				</Page>
			</Components>
		</PageList>
	</Components>
</Application>
