| 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android"> |
| 3 | <uses-permission android:name="android.permission.INTERNET" /> |
| 4 | <application android:label="Codewhale" android:theme="@style/PetTheme" |
| 5 | android:networkSecurityConfig="@xml/pet_network" android:allowBackup="false" android:supportsRtl="true"> |
| 6 | <activity android:name=".PetActivity" android:exported="true"> |
| 7 | <intent-filter> |
| 8 | <action android:name="android.intent.action.MAIN" /> |
| 9 | <category android:name="android.intent.category.LAUNCHER" /> |
| 10 | </intent-filter> |
| 11 | </activity> |
| 12 | </application> |
| 13 | </manifest> |
| 14 |