diff options
| author | mikem <mikem@oliodevices.com> | 2014-03-30 18:24:58 -0600 |
|---|---|---|
| committer | mikem <mikem@oliodevices.com> | 2014-03-30 18:24:58 -0600 |
| commit | 99bb04032209271f0ed416bb42ea5ab09de23eb8 (patch) | |
| tree | 178db047ffd8194998ed81c7cf336ac9fa9ffcbd /GymLog/src/main/AndroidManifest.xml | |
| download | GymLog-99bb04032209271f0ed416bb42ea5ab09de23eb8.tar.xz GymLog-99bb04032209271f0ed416bb42ea5ab09de23eb8.zip | |
Initial commit. Double tap to increment weight, long press to decrement, fling up/down in increment/decrement reps, swipe left/right to navigate through exercises.
Currently uses a hard-coded list of exercises that vary depending on the day of the week.
Diffstat (limited to 'GymLog/src/main/AndroidManifest.xml')
| -rw-r--r-- | GymLog/src/main/AndroidManifest.xml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/GymLog/src/main/AndroidManifest.xml b/GymLog/src/main/AndroidManifest.xml new file mode 100644 index 0000000..417ce01 --- /dev/null +++ b/GymLog/src/main/AndroidManifest.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="com.mikemiller.gymlog" > + + <application + android:allowBackup="true" + android:icon="@drawable/ic_launcher" + android:label="@string/app_name" + android:theme="@android:style/Theme.NoTitleBar.Fullscreen" > + <activity + android:name="com.mikemiller.gymlog.MainActivity" + android:label="@string/app_name" > + <intent-filter> + <action android:name="android.intent.action.MAIN" /> + + <category android:name="android.intent.category.LAUNCHER" /> + </intent-filter> + </activity> + </application> + +</manifest> |