Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<?xml version="1.0" encoding="UTF-8"?>
-<manifest package="com.helloandroid.android.newsdroid" xmlns:android="http://schemas.android.com/apk/res/android">
-<application android:icon="@drawable/icon">
-<activity android:label="@string/app_name" [COLOR="Navy"][B]class=".FeedsList"[/B][/COLOR]>
-<intent-filter>
<action android:value="android.intent.action.MAIN"/>
<category android:value="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity android:label="@string/url_editor" class=".URLEditor"/>
<activity android:label="@string/articles_list" class=".ArticlesList"/>
</application>
</manifest>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="newsDroid.com">
<application android:icon="@drawable/icon">
<activity class=".FeedsList" android:label="@string/app_name" android:name="FeedsList">
<intent-filter>
<action android:value="android.intent.action.MAIN" android:name="Main" />
<category android:value="android.intent.category.LAUNCHER" android:name="Launcher" />
</intent-filter>
</activity>
<activity class=".URLEditor" android:label="@string/url_editor" android:name="url_editor"/>
<activity class=".ArticlesList" android:label="@string/articles_list" android:name="@string/articles_list" />
</application>
</manifest>