Heavy refactoring: Moved UI things to UI packages
[pub/Android/ownCloud.git] / AndroidManifest.xml
index 1d6c69c..8dd03ad 100644 (file)
@@ -25,9 +25,9 @@
     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
 
     <application android:icon="@drawable/icon" android:label="@string/app_name">
-        <activity android:name=".MainScreen"
+        <activity android:name=".ui.FileDisplayActivity"
                   android:label="@string/app_name">
-            <intent-filter>
+                  <intent-filter>
                 <action android:name="android.intent.action.MAIN" />
                 <category android:name="android.intent.category.LAUNCHER" />
             </intent-filter>
@@ -44,8 +44,8 @@
                 <data android:mimeType="*/*"></data>
             </intent-filter>
         </activity>
-        <activity android:name="Preferences"></activity>
-        <activity android:name="PreferencesNewSession">
+        <activity android:name=".ui.Preferences"></activity>
+        <activity android:name=".ui.PreferencesNewSession">
         </activity>
                 <service
             android:exported="true" android:name=".authenticator.AccountAuthenticatorService">
                 android:name="android.content.SyncAdapter"
                 android:resource="@xml/syncadapter_files"/>
         </service>
-         <provider android:name="cp" android:enabled="true" android:syncable="true" android:exported="false" android:authorities="org.owncloud" android:label="@string/sync_string_files"></provider>
-         <activity android:name=".authenticator.AuthenticatorActivity"></activity>
-         <service android:name="FileDownloader">
+         <provider android:name=".cp" android:enabled="true" android:syncable="true" android:exported="false" android:authorities="org.owncloud" android:label="@string/sync_string_files"></provider>
+         <activity android:name=".ui.AuthenticatorActivity"></activity>
+         <service android:name=".FileDownloader">
          </service>
-         <activity android:name="FileDetailActivity"></activity>
+         <activity android:name=".ui.FileDetailActivity"></activity>
     </application>
 </manifest>
\ No newline at end of file