MPVN_Android/app/src/main/AndroidManifest.xml

16 lines
587 B
XML
Raw Normal View History

<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:name=".SmartHomeApp"
android:icon="@mipmap/ic_launcher"
android:label="SmartHome"
android:theme="@style/Theme.SmartHome">
<activity android:name=".MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>