Skip to content

Commit

Permalink
first test
Browse files Browse the repository at this point in the history
  • Loading branch information
Sveer committed Oct 8, 2013
0 parents commit acc8e4a
Show file tree
Hide file tree
Showing 38 changed files with 10,290 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Auto detect text files and perform LF normalization
* text=auto

# Custom for Visual Studio
*.cs diff=csharp
*.sln merge=union
*.csproj merge=union
*.vbproj merge=union
*.fsproj merge=union
*.dbproj merge=union

# Standard to msysgit
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.pdf diff=astextplain
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain
Empty file added .gitignore
Empty file.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# UnicomStatus demo

A single-screen cross-platform HTML5 mobile application that provides a fast and convenient way of calculating tips for a check. Inputting a sum from a check, users get total tips, as well as totals and tips per each person.

The demo is built using the [PhoneJS mobile framework](http://phonejs.devexpress.com/). PhoneJS contains everything you need to create native client applications using HTML5 and JavaScript with a single codebase and deliver solutions that target iOS, Android, and Windows Phone 8.

This mobile application is a good illustration of the Model-View-ViewModel (MVVM) structured approach. It can be launched in a mobile browser or turned into native packages ready for stores via packaging services, such as [PhoneGap Build](http://build.phonegap.com).

See our [mobile application](http://phonejs.devexpress.com/Demos/?url=UnicomStatus&sm=3) online.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/PackageIcons.Android.splash_200_320.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/PackageIcons.Android.splash_320_480.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/PackageIcons.Android.splash_480_800.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/PackageIcons.iOS.Default@2x~iphone.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/PackageIcons.iOS.Default~iphone.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/PackageIcons.iOS.iTunesArtwork.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/PackageIcons.iOS.icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/unikom.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
46 changes: 46 additions & 0 deletions config.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<?xml version="1.0"?>
<widget
xmlns="http://www.w3.org/ns/widgets"
xmlns:gap="http://phonegap.com/ns/1.0"
id="com.devexpress.dxUnicomStatusinternal"
versionCode="100"
version="0.1.0.0">

<name>Tip Calculator</name>

<description>
Fast and convenient way to calculate tips for a check.
Inputting the sum from a check, you get the total tips due, as well as the totals and tips per person.
</description>

<author href="http://www.devexpress.com">
Developer Express Inc.
</author>

<preference name="phonegap-version" value="2.9.0" />
<preference name="orientation" value="portrait" />
<preference name="target-device" value="handset" />
<preference name="auto-hide-splash-screen" value="false" />
<preference name="permissions" value="none"/>

<!-- Android icons -->
<icon src="Resources/PackageIcons.Android.ic_launcher_36_36.png" gap:platform="android" gap:density="ldpi" />
<icon src="Resources/PackageIcons.Android.ic_launcher_48_48.png" gap:platform="android" gap:density="mdpi" />
<icon src="Resources/PackageIcons.Android.ic_launcher_72_72.png" gap:platform="android" gap:density="hdpi" />
<icon src="Resources/PackageIcons.Android.ic_launcher_96_96.png" gap:platform="android" gap:density="xhdpi" />

<!-- iPhone icons -->
<icon src="Resources/PackageIcons.iOS.icon.png" gap:platform="ios" width="57" height="57" />
<icon src="Resources/[email protected]" gap:platform="ios" width="114" height="114" />

<!-- Android splashes -->
<gap:splash src="Resources/PackageIcons.Android.splash_200_320.png" gap:platform="android" gap:density="ldpi" />
<gap:splash src="Resources/PackageIcons.Android.splash_320_480.png" gap:platform="android" gap:density="mdpi" />
<gap:splash src="Resources/PackageIcons.Android.splash_480_800.png" gap:platform="android" gap:density="hdpi" />
<gap:splash src="Resources/PackageIcons.Android.splash_720_1280.png" gap:platform="android" gap:density="xhdpi" />

<!-- iPhone splashes -->
<gap:splash src="Resources/PackageIcons.iOS.Default~iphone.png" gap:platform="ios" width="320" height="480" />
<gap:splash src="Resources/PackageIcons.iOS.Default@2x~iphone.png" gap:platform="ios" width="640" height="960" />
<gap:splash src="Resources/[email protected]" gap:platform="ios" width="640" height="1136" />
</widget>
1 change: 1 addition & 0 deletions cordova.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// This file is replaced by the native app packager
1,689 changes: 1,689 additions & 0 deletions css/dx.android.holo-dark.css

Large diffs are not rendered by default.

Loading

0 comments on commit acc8e4a

Please sign in to comment.