Skip to content
This repository was archived by the owner on Dec 23, 2022. It is now read-only.

Commit ed0bc85

Browse files
unknownunknown
authored andcommitted
added source for iPad Checkout system
1 parent 5ac9f18 commit ed0bc85

File tree

79 files changed

+911
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+911
-0
lines changed

iPad Rack/Checkout/.classpath

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src"/>
4+
<classpathentry kind="src" path="gen"/>
5+
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
6+
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
7+
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
8+
<classpathentry kind="lib" path="libs/gdata-client-1.0.jar"/>
9+
<classpathentry kind="lib" path="libs/guava-11.0.2.jar"/>
10+
<classpathentry kind="lib" path="libs/googleformuploader.jar"/>
11+
<classpathentry kind="lib" path="libs/gdata-spreadsheet-meta-3.0.jar"/>
12+
<classpathentry kind="lib" path="libs/gdata-spreadsheet-3.0.jar"/>
13+
<classpathentry kind="lib" path="libs/jsr305.jar"/>
14+
<classpathentry kind="output" path="bin/classes"/>
15+
</classpath>

iPad Rack/Checkout/.project

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>Checkout</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
<buildCommand>
19+
<name>org.eclipse.jdt.core.javabuilder</name>
20+
<arguments>
21+
</arguments>
22+
</buildCommand>
23+
<buildCommand>
24+
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
25+
<arguments>
26+
</arguments>
27+
</buildCommand>
28+
</buildSpec>
29+
<natures>
30+
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
31+
<nature>org.eclipse.jdt.core.javanature</nature>
32+
</natures>
33+
</projectDescription>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
3+
org.eclipse.jdt.core.compiler.compliance=1.6
4+
org.eclipse.jdt.core.compiler.source=1.6
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="com.stugov.checkout"
4+
android:versionCode="1"
5+
android:versionName="1.0" >
6+
7+
<uses-sdk
8+
android:minSdkVersion="17"
9+
android:targetSdkVersion="19" />
10+
11+
<uses-permission android:name="android.permission.INTERNET" />
12+
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
13+
<uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS" />
14+
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
15+
<uses-permission android:name="android.permission.ACCOUNT_MANAGER" />
16+
<uses-permission android:name="android.permission.USE_CREDENTIALS" />
17+
18+
<application
19+
android:allowBackup="true"
20+
android:icon="@drawable/ic_launcher"
21+
android:label="@string/app_name"
22+
android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen" >
23+
<activity
24+
android:name="com.stugov.checkout.Login"
25+
android:label="@string/app_name" >
26+
<intent-filter>
27+
<action android:name="android.intent.action.MAIN" />
28+
29+
<category android:name="android.intent.category.LAUNCHER" />
30+
</intent-filter>
31+
<intent-filter>
32+
<action android:name="android.hardware.usb.action.USB_ACCESSORY_ATTACHED" />
33+
</intent-filter>
34+
35+
<meta-data
36+
android:name="android.hardware.usb.action.USB_ACCESSORY_ATTACHED"
37+
android:resource="@xml/accessory_filter" />
38+
</activity>
39+
<activity
40+
android:name="com.stugov.checkout.Portal"
41+
android:label="@string/title_activity_portal"
42+
android:parentActivityName="com.stugov.checkout.Login" >
43+
<meta-data
44+
android:name="android.support.PARENT_ACTIVITY"
45+
android:value="com.stugov.checkout.Login" />
46+
</activity>
47+
48+
<uses-library android:name="com.android.future.usb.accessory" >
49+
</uses-library>
50+
</application>
51+
52+
</manifest>
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="com.stugov.checkout"
4+
android:versionCode="1"
5+
android:versionName="1.0" >
6+
7+
<uses-sdk
8+
android:minSdkVersion="17"
9+
android:targetSdkVersion="19" />
10+
11+
<uses-permission android:name="android.permission.INTERNET" />
12+
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
13+
<uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS" />
14+
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
15+
<uses-permission android:name="android.permission.ACCOUNT_MANAGER" />
16+
<uses-permission android:name="android.permission.USE_CREDENTIALS" />
17+
18+
<application
19+
android:allowBackup="true"
20+
android:icon="@drawable/ic_launcher"
21+
android:label="@string/app_name"
22+
android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen" >
23+
<activity
24+
android:name="com.stugov.checkout.Login"
25+
android:label="@string/app_name" >
26+
<intent-filter>
27+
<action android:name="android.intent.action.MAIN" />
28+
29+
<category android:name="android.intent.category.LAUNCHER" />
30+
</intent-filter>
31+
<intent-filter>
32+
<action android:name="android.hardware.usb.action.USB_ACCESSORY_ATTACHED" />
33+
</intent-filter>
34+
35+
<meta-data
36+
android:name="android.hardware.usb.action.USB_ACCESSORY_ATTACHED"
37+
android:resource="@xml/accessory_filter" />
38+
</activity>
39+
<activity
40+
android:name="com.stugov.checkout.Portal"
41+
android:label="@string/title_activity_portal"
42+
android:parentActivityName="com.stugov.checkout.Login" >
43+
<meta-data
44+
android:name="android.support.PARENT_ACTIVITY"
45+
android:value="com.stugov.checkout.Login" />
46+
</activity>
47+
48+
<uses-library android:name="com.android.future.usb.accessory" >
49+
</uses-library>
50+
</application>
51+
52+
</manifest>
1.35 MB
Binary file not shown.

iPad Rack/Checkout/bin/classes.dex

3 MB
Binary file not shown.
Binary file not shown.
882 Bytes
Binary file not shown.
2.14 KB
Binary file not shown.

0 commit comments

Comments
 (0)