2021-06-15 18:48:11 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
package="dev.carlos.acronyms"
|
|
|
|
|
>
|
|
|
|
|
|
2021-06-15 22:08:27 -04:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
|
|
2021-06-15 18:48:11 -04:00
|
|
|
<application
|
2021-06-17 11:27:28 -04:00
|
|
|
android:name="dev.carlos.acronyms.MainApplication"
|
2021-06-15 18:48:11 -04:00
|
|
|
android:allowBackup="true"
|
2021-06-15 22:08:27 -04:00
|
|
|
android:fullBackupContent="false"
|
2021-06-15 18:48:11 -04:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
2021-06-15 22:08:27 -04:00
|
|
|
android:label="@string/app_name"
|
2021-06-15 18:48:11 -04:00
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
2021-06-15 22:08:27 -04:00
|
|
|
android:supportsRtl="false"
|
2021-06-15 18:48:11 -04:00
|
|
|
android:theme="@style/Theme.Acronyms"
|
2021-06-17 11:27:28 -04:00
|
|
|
android:networkSecurityConfig="@xml/network_security_config"
|
2021-06-15 22:08:27 -04:00
|
|
|
android:hardwareAccelerated="true"
|
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
<activity
|
2021-06-17 11:27:28 -04:00
|
|
|
android:name="dev.carlos.acronyms.views.MainActivity"
|
2021-06-15 22:08:27 -04:00
|
|
|
android:launchMode="singleTask"
|
|
|
|
|
>
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
|
|
</application>
|
2021-06-15 18:48:11 -04:00
|
|
|
|
2021-06-15 19:55:31 -04:00
|
|
|
</manifest>
|