Skip to content

Commit d9d64d4

Browse files
committed
Add main activity into android manifest
1 parent 5ff8701 commit d9d64d4

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

app/src/main/AndroidManifest.xml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
xmlns:tools="http://schemas.android.com/tools"
34
package="com.example.bloder.deck">
45

56
<application
@@ -8,6 +9,18 @@
89
android:label="@string/app_name"
910
android:roundIcon="@mipmap/ic_launcher_round"
1011
android:supportsRtl="true"
11-
android:theme="@style/AppTheme"></application>
12+
android:theme="@style/AppTheme">
13+
14+
<activity android:name=".MainActivity"
15+
android:launchMode="singleTop"
16+
android:screenOrientation="portrait">
17+
<intent-filter tools:ignore="AppLinkUrlError">
18+
<action android:name="android.intent.action.VIEW" />
19+
<category android:name="android.intent.category.DEFAULT" />
20+
<category android:name="android.intent.category.BROWSABLE" />
21+
</intent-filter>
22+
</activity>
23+
24+
</application>
1225

1326
</manifest>

0 commit comments

Comments
 (0)