I wanted to use a switch function in my app from a string. When I did that eclipse said I had to upgrade to java 1.7 which stupidly I let it do. It then told me to use the Android Fix Project to fix it. Which I did and subsequently it reverted back to 1.5. Good (I thought)
Now my app wont run :(
Heres the structure of the app.

Heres the errors: The main bit:
10-04 13:39:04.974: D/AndroidRuntime(11532): Shutting down VM
10-04 13:39:04.974: W/dalvikvm(11532): threadid=1: thread exiting with uncaught exception (group=0x40c5c1f8)
10-04 13:39:04.974: E/AndroidRuntime(11532): FATAL EXCEPTION: main
10-04 13:39:04.974: E/AndroidRuntime(11532): java.lang.RuntimeException: Unable to instantiate application com.directenquiries.assessment.tool.Globals.Global: java.lang.ClassNotFoundException: com.directenquiries.assessment.tool.Globals.Global
10-04 13:39:04.974: E/AndroidRuntime(11532): at android.app.LoadedApk.makeApplication(LoadedApk.java:482)
The full log can be found at: http://pastebin.com/rMLqkDc2
Here's my android manifest:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.directenquiries.assessment.tool"
android:versionCode="1"
android:versionName="1.0" >
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" >
</uses-permission>
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="15" />
<application
android:name=".Globals.Global"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.Holo" >
<activity
android:name=".LoginPageActivity"
android:label="@string/title_activity_login_page" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".MainPage"
android:label="Select Item" >
</activity>
<activity
android:name=".JobSheet"
android:label="@string/title_activity_job_sheet" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.directenquiries.assessment.tool.MainPage" />
</activity>
<activity
android:name=".LocationListView"
android:label="@string/title_activity_location_list_view" >
</activity>
</application>
</manifest>
I'm not at a bit of a loss what to do