Problem
My mobile application called "Pipe" doesn't show up on Home Screen
How is it before
Before i tried to modify
AndroidManifest.xml
it working fine before, it's on the Home Screen
What i wanted
App to show up on Home Screen
AndroidManifest.xml
<?xml version='1.0' encoding='utf-8'?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.gell.browserx">
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:name=".App"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
android:largeHeap="true"
android:name=".Applications"
android:resizeableActivity="true">
<activity
android:name=".ui.activity.MainActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
<data android:scheme="pipe" />
</intent-filter>
</activity>
<activity
android:name=".ui.activity.SettingActivity"
android:label="Pipe Setting">
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<data android:scheme="pipe-setting" />
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
<activity android:name=".common.crash.CrashHandler$CrashActiviy"/>
<activity
android:name=".DebugActivity"
android:screenOrientation="portrait"/>
<meta-data
android:name="android.max_aspect"
android:value="4.0"/>
</application>
</manifest>