Got basic detail view working
[Sunshine.git] / app / src / main / AndroidManifest.xml
index 2c5f3c8ddcc471decfec466a4bbf1775396abdb8..d8c7eaea64b0772ea3b67412eeda790f784a8e3e 100644 (file)
@@ -2,6 +2,8 @@
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
     package="uk.me.njae.sunshine" >
 
+    <uses-permission android:name="android.permission.INTERNET" />
+
     <application
         android:allowBackup="true"
         android:icon="@drawable/ic_launcher"
                 <category android:name="android.intent.category.LAUNCHER" />
             </intent-filter>
         </activity>
+        <activity
+            android:name=".DetailActivity"
+            android:label="@string/title_activity_detail"
+            android:parentActivityName=".MainActivity" >
+            <meta-data
+                android:name="android.support.PARENT_ACTIVITY"
+                android:value="uk.me.njae.sunshine.MainActivity" />
+        </activity>
     </application>
 
 </manifest>