Fix for FP-109
diff --git a/FairphoneUpdater/AndroidManifest.xml b/FairphoneUpdater/AndroidManifest.xml
index 4553c5e..c1ceba4 100644
--- a/FairphoneUpdater/AndroidManifest.xml
+++ b/FairphoneUpdater/AndroidManifest.xml
@@ -27,7 +27,7 @@
         android:label="@string/app_name"
         android:theme="@style/AppTheme" >
         <activity
-            android:name="com.fairphone.updater.FairphoneUpdater"
+            android:name=".FairphoneUpdater"
             android:label="@string/app_name"
             android:screenOrientation="portrait" >
             <intent-filter>
@@ -38,34 +38,45 @@
         </activity>
 
         <service
-            android:name="com.fairphone.updater.UpdaterService"
+            android:name=".UpdaterService"
             android:icon="@drawable/fairphone_updater_app_icon_small"
             android:label="@string/updaterService" />
 
-        <receiver android:name="com.fairphone.updater.BootBroadcastReceiver" >
+        <receiver android:name=".BootBroadcastReceiver" >
             <intent-filter>
                 <action android:name="android.intent.action.BOOT_COMPLETED" />
             </intent-filter>
         </receiver>
 
         <activity
-            android:name="com.fairphone.updater.VersionListActivity"
-            android:screenOrientation="portrait"/>
-
-        <meta-data android:name="com.crashlytics.ApiKey" android:value="743d6f60e29372e7b75de8137a5585979710dd7a"/>
+            android:name=".VersionListActivity"
+            android:screenOrientation="portrait" />
         
-        <receiver android:icon="@drawable/fairphone_updater_app_icon"
-	              android:label="@string/google_apps_installer_name"
-	              android:name="com.fairphone.updater.widgets.gapps.GoogleAppsInstallerWidget">
-	      
-	       <intent-filter>
-	        <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
-	      </intent-filter>
-	      
-	      <meta-data android:name="android.appwidget.provider"
-	                 android:resource="@xml/google_apps_widget" />
-	    </receiver>
+        <activity
+            android:name="com.fairphone.updater.gappsinstaller.TransparentActivity"
+            android:label="activity_transparent"
+            android:theme="@android:style/Theme.Translucent"
+            android:excludeFromRecents="true"
+            android:screenOrientation="portrait">
+        </activity>
 
+        <meta-data
+            android:name="com.crashlytics.ApiKey"
+            android:value="743d6f60e29372e7b75de8137a5585979710dd7a" />
+
+        <receiver
+            android:name=".widgets.gapps.GoogleAppsInstallerWidget"
+            android:icon="@drawable/fairphone_updater_app_icon"
+            android:label="@string/google_apps_installer_name" >
+            <intent-filter>
+                <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
+            </intent-filter>
+
+            <meta-data
+                android:name="android.appwidget.provider"
+                android:resource="@xml/google_apps_widget" />
+        </receiver>
+        
     </application>
 
 </manifest>
\ No newline at end of file