1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3    xmlns:tools="http://schemas.android.com/tools"
4    package="com.prefabulated.bouncyball">
5    <application
6        android:allowBackup="false"
7        android:extractNativeLibs="false"
8        android:icon="@mipmap/ic_launcher"
9        android:label="@string/app_name"
10        android:roundIcon="@mipmap/ic_launcher_round"
11        android:supportsRtl="true"
12        android:theme="@style/AppTheme"
13        tools:ignore="GoogleAppIndexingWarning"
14        tools:targetApi="28">
15        <activity
16            android:name=".OrbitActivity"
17            android:screenOrientation="portrait">
18            <intent-filter>
19                <action android:name="android.intent.action.MAIN" />
20                <category android:name="android.intent.category.LAUNCHER" />
21            </intent-filter>
22        </activity>
23        <activity android:name=".SettingsActivity"
24            android:screenOrientation="portrait"/>
25    </application>
26</manifest>