I currently have made my own web browser with the android SDK in eclipse, BUT when I use my app, in settings it is not letting me set this browser as a default browser or if I click a link on the google app it will give me the message "open in" and my app is not there. Is there anything I need to put in my code to tell android that my app is a web browser? Here is my manifest file.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.rarster.QuantumBrowser"
android:versionCode="5"
android:versionName="1.4" >
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="21" />
<uses-permission android:maxSdkVersion="21" android:name="android.permission.INTERNET"/>
<application
android:hardwareAccelerated="true"
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".Start"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".Settings"
android:label="@string/app_name" />
<activity
android:name=".Home"
android:label="@string/app_name" />
<activity
android:name=".SocialNetwork"
android:label="@string/app_name" />
<activity
android:name=".Home2"
android:label="@string/app_name" />
<activity
android:name=".Note"
android:label="@string/app_name" />
<activity
android:name=".News"
android:label="@string/app_name" />
<activity
android:name=".MainActivity"
android:label="@string/app_name" />
<activity
android:name=".Intro"
android:label="@string/app_name" />
</application>
</manifest>