]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/main/AndroidManifest.xml
Rename the activities.
[PrivacyBrowserAndroid.git] / app / src / main / AndroidManifest.xml
index 5c5adf6e5e80b07b89d0b13fa36dd6cf6c7acef0..bcf0270f8f22aee9c4cc08f080eb7a6f81c84f6b 100644 (file)
@@ -37,7 +37,7 @@
         <!-- android:launchMode="singleTask" makes the app launch in a new task instead of inside the task of the program that sends it an intent.
             It also makes it reuse an existing Privacy Browser activity if available instead of launching a new one. -->
         <activity
-            android:name=".MainWebView"
+            android:name=".MainWebViewActivity"
             android:configChanges="orientation|screenSize"
             android:label="@string/privacy_browser"
             android:launchMode="singleTask">
         </activity>
 
         <activity
-            android:name=".Settings"
+            android:name=".SettingsActivity"
             android:label="@string/privacy_browser_settings"
-            android:parentActivityName=".MainWebView" >
+            android:parentActivityName=".MainWebViewActivity" >
 
             <!-- android.support.PARENT_ACTIVITY is necessary for API <= 15. -->
             <meta-data
                 android:name="android.support.PARENT_ACTIVITY"
-                android:value=".MainWebView" />
+                android:value=".MainWebViewActivity" />
         </activity>
 
     </application>