Skip to content

Commit

Permalink
voyagr android init commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake McGinty committed Apr 27, 2012
0 parents commit b687efb
Show file tree
Hide file tree
Showing 56 changed files with 6,312 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .classpath
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="gen"/>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
<classpathentry kind="output" path="bin/classes"/>
</classpath>
33 changes: 33 additions & 0 deletions .project
@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>Voyagr</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 AndroidManifest.xml
@@ -0,0 +1,41 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest package="com.jakemcginty.voyagr"
android:versionCode="1"
android:versionName="1.0" xmlns:android="http://schemas.android.com/apk/res/android">

<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="7" />
<uses-permission android:name="android.permission.INTERNET" />
<!-- <uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.USE_CREDENTIALS" />
<uses-permission android:name="android.permission.MANAGE_ACCOUNTS" />
<uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS" />
<uses-permission android:name="android.permission.READ_SYNC_STATS" />
<uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
<uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" /> -->
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>

<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" android:theme="@android:style/Theme.Light.NoTitleBar">
<activity
android:name=".VoyagrActivity"
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="ReportingActivity" android:label="@string/app_name" android:screenOrientation="portrait" />
</application>

<!-- <service android:name=".sync.SyncService"
android:exported="true">
<intent-filter>
<action android:name="android.content.SyncAdapter" />
</intent-filter>
<meta-data android:name="android.content.SyncAdapter"
android:resource="@xml/syncadapter" />
</service> -->

</manifest>
Binary file added assets/voyagr.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/Voyagr.apk
Binary file not shown.
Binary file added bin/classes.dex
Binary file not shown.
Binary file added bin/classes/com/jakemcginty/voyagr/BuildConfig.class
Binary file not shown.
Binary file added bin/classes/com/jakemcginty/voyagr/R$array.class
Binary file not shown.
Binary file added bin/classes/com/jakemcginty/voyagr/R$attr.class
Binary file not shown.
Binary file added bin/classes/com/jakemcginty/voyagr/R$drawable.class
Binary file not shown.
Binary file added bin/classes/com/jakemcginty/voyagr/R$id.class
Binary file not shown.
Binary file added bin/classes/com/jakemcginty/voyagr/R$layout.class
Binary file not shown.
Binary file added bin/classes/com/jakemcginty/voyagr/R$string.class
Binary file not shown.
Binary file added bin/classes/com/jakemcginty/voyagr/R$xml.class
Binary file not shown.
Binary file added bin/classes/com/jakemcginty/voyagr/R.class
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.
3 changes: 3 additions & 0 deletions bin/jarlist.cache
@@ -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 bin/res/drawable-hdpi/ic_launcher.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/res/drawable-hdpi/voyagr.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/res/drawable-ldpi/ic_launcher.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/res/drawable-ldpi/voyagr.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/res/drawable-mdpi/ic_launcher.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/res/drawable-mdpi/voyagr.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/res/drawable-xhdpi/ic_launcher.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/res/drawable-xhdpi/voyagr.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/resources.ap_
Binary file not shown.
6 changes: 6 additions & 0 deletions gen/com/jakemcginty/voyagr/BuildConfig.java
@@ -0,0 +1,6 @@
/** Automatically generated file. DO NOT MODIFY */
package com.jakemcginty.voyagr;

public final class BuildConfig {
public final static boolean DEBUG = true;
}
53 changes: 53 additions & 0 deletions gen/com/jakemcginty/voyagr/R.java
@@ -0,0 +1,53 @@
/* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* aapt tool from the resource data it found. It
* should not be modified by hand.
*/

package com.jakemcginty.voyagr;

public final class R {
public static final class array {
public static final int GPSPushDurations=0x7f060000;
}
public static final class attr {
}
public static final class drawable {
public static final int ic_launcher=0x7f020000;
public static final int voyagr=0x7f020001;
}
public static final class id {
public static final int GPSDebugText=0x7f070007;
public static final int durationSelect=0x7f07000a;
public static final int durationSelectLabel=0x7f070009;
public static final int lastCheckLabel=0x7f070004;
public static final int lastCheckText=0x7f070005;
public static final int login=0x7f070003;
public static final int logo=0x7f070000;
public static final int password=0x7f070002;
public static final int reportLocationCheckbox=0x7f070008;
public static final int toURL=0x7f070006;
public static final int username=0x7f070001;
}
public static final class layout {
public static final int login=0x7f030000;
public static final int reporter=0x7f030001;
}
public static final class string {
public static final int app_name=0x7f050001;
public static final int durationselect=0x7f05000a;
public static final int gpsdebugtextdefault=0x7f050008;
public static final int hello=0x7f050000;
public static final int lastchecktextdefault=0x7f050007;
public static final int lastlocation=0x7f050006;
public static final int loginbutton=0x7f050004;
public static final int logodescription=0x7f050005;
public static final int password=0x7f050003;
public static final int reportlocation=0x7f050009;
public static final int username=0x7f050002;
}
public static final class xml {
public static final int syncadapter=0x7f040000;
}
}
Binary file added ic_launcher-web.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit b687efb

Please sign in to comment.