2020-02-01 16:01:58 -03:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
package="com.hako.friendlists">
|
|
|
|
|
|
|
|
|
|
<application
|
2020-02-02 10:54:43 -03:00
|
|
|
android:name=".MainApplication"
|
2020-02-01 16:01:58 -03:00
|
|
|
android:allowBackup="true"
|
2020-02-02 10:54:43 -03:00
|
|
|
android:fullBackupContent="false"
|
2020-02-01 16:01:58 -03:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
|
android:label="@string/app_name"
|
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
2020-02-02 10:54:43 -03:00
|
|
|
android:supportsRtl="false"
|
|
|
|
|
android:theme="@style/AppTheme">
|
|
|
|
|
|
|
|
|
|
<activity
|
2020-02-02 14:03:11 -03:00
|
|
|
android:name=".view.HomeActivity"
|
2020-02-02 10:54:43 -03:00
|
|
|
android:screenOrientation="portrait">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
|
|
</application>
|
2020-02-01 16:01:58 -03:00
|
|
|
</manifest>
|