Fix 2793762 by disabling debuggable flag.

The flag was enabled in AndroidManifest.xml and might cause to a security problem.
The change disables the flag.

Bug: 2793762
Change-Id: I1f629c305839e9904bc88a7da4582813224d3a56
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 93a90ba..aff00fd 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -23,8 +23,7 @@
         android:normalScreens="true" android:largeScreens="true"
         android:anyDensity="true" />
 
-    <application android:icon="@drawable/icon" android:label="@string/app_name"
-        android:debuggable="true">
+    <application android:icon="@drawable/icon" android:label="@string/app_name">
         <activity android:name="com.cooliris.media.Gallery" android:label="@string/app_name"
             android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
             android:configChanges="keyboardHidden|orientation"