23 lines
740 B
XML
23 lines
740 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.android_q.egg">
|
|
|
|
<application>
|
|
<activity
|
|
android:name=".PlatLogoActivity"
|
|
android:configChanges="orientation|keyboardHidden"
|
|
android:exported="true"
|
|
android:icon="@drawable/q_icon"
|
|
android:label="@string/q_egg_name"
|
|
android:theme="@style/QAppTheme" />
|
|
|
|
<activity
|
|
android:name=".quares.QuaresActivity"
|
|
android:icon="@drawable/q_icon"
|
|
android:exported="false"
|
|
android:label="@string/q_egg_name"
|
|
android:theme="@style/QuaresTheme" />
|
|
</application>
|
|
|
|
</manifest>
|