Skip to content

Commit

Permalink
APK and source code
Browse files Browse the repository at this point in the history
Warmup2 Login App
  • Loading branch information
stephanieytku committed Feb 20, 2013
0 parents commit bcad33d
Show file tree
Hide file tree
Showing 69 changed files with 878 additions and 0 deletions.
Binary file added .DS_Store
Binary file not shown.
Binary file added WarmupApp.apk
Binary file not shown.
Binary file added WarmupApp/.DS_Store
Binary file not shown.
8 changes: 8 additions & 0 deletions WarmupApp/.classpath
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="gen"/>
<classpathentry kind="output" path="bin/classes"/>
</classpath>
33 changes: 33 additions & 0 deletions WarmupApp/.project
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>WarmupApp</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
41 changes: 41 additions & 0 deletions WarmupApp/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.cs169.warmupapp"
android:versionCode="1020"
android:versionName="1.2.1" >

<uses-permission android:name="android.permission.INTERNET" />

<application
android:debuggable="true"
android:label="@string/app_name" >
<activity
android:name=".MainActivity"
android:configChanges="keyboardHidden|orientation"
android:label="@string/app_name"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".CustomHttpClient"
android:label="@string/app_name"
android:screenOrientation="portrait" >
</activity>
<activity
android:name=".HTTPClient"
android:label="@string/app_name"
android:screenOrientation="portrait" >
</activity>
<activity
android:name=".SuccessActivity"
android:label="@string/app_name"
android:screenOrientation="portrait" >
</activity>

</application>

</manifest>
1 change: 1 addition & 0 deletions WarmupApp/README
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Start the Android Emulator. Once the emulator has fully booted, run "make run" to build the SDK, WpsApiTest, and run WpsApiTest.
41 changes: 41 additions & 0 deletions WarmupApp/bin/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.cs169.warmupapp"
android:versionCode="1020"
android:versionName="1.2.1" >

<uses-permission android:name="android.permission.INTERNET" />

<application
android:debuggable="true"
android:label="@string/app_name" >
<activity
android:name=".MainActivity"
android:configChanges="keyboardHidden|orientation"
android:label="@string/app_name"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".CustomHttpClient"
android:label="@string/app_name"
android:screenOrientation="portrait" >
</activity>
<activity
android:name=".HTTPClient"
android:label="@string/app_name"
android:screenOrientation="portrait" >
</activity>
<activity
android:name=".SuccessActivity"
android:label="@string/app_name"
android:screenOrientation="portrait" >
</activity>

</application>

</manifest>
Binary file added WarmupApp/bin/WarmupApp.apk
Binary file not shown.
Binary file added WarmupApp/bin/classes.dex
Binary file not shown.
Binary file added WarmupApp/bin/classes/.DS_Store
Binary file not shown.
Binary file added WarmupApp/bin/classes/com/.DS_Store
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added WarmupApp/bin/classes/com/cs169/warmupapp/R$id.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added WarmupApp/bin/classes/com/cs169/warmupapp/R.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
3 changes: 3 additions & 0 deletions WarmupApp/bin/jarlist.cache
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# cache for current jar dependecy. DO NOT EDIT.
# format is <lastModified> <length> <SHA-1> <path>
# Encoding is UTF-8
Binary file added WarmupApp/bin/resources.ap_
Binary file not shown.
Loading

0 comments on commit bcad33d

Please sign in to comment.