Newer
Older
LessonClient / app / src / main / AndroidManifest.xml
  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.  
  5. <uses-permission android:name="android.permission.INTERNET" />
  6.  
  7. <application
  8. android:allowBackup="true"
  9. android:dataExtractionRules="@xml/data_extraction_rules"
  10. android:fullBackupContent="@xml/backup_rules"
  11. android:icon="@mipmap/ic_launcher"
  12. android:label="@string/app_name"
  13. android:networkSecurityConfig="@xml/network_security_config"
  14. android:roundIcon="@mipmap/ic_launcher_round"
  15. android:supportsRtl="true"
  16. android:theme="@style/Theme.Lesson"
  17. tools:targetApi="31">
  18. <activity
  19. android:exported="true"
  20. android:name=".views.SignUpActivity">
  21. <intent-filter>
  22. <action android:name="android.intent.action.MAIN" />
  23.  
  24. <category android:name="android.intent.category.LAUNCHER" />
  25. </intent-filter>
  26. </activity>
  27. <activity
  28. android:exported="false"
  29. android:name=".views.AccountListActivity" />
  30. <activity
  31. android:exported="false"
  32. android:name=".views.SettingsActivity" />
  33. </application>
  34.  
  35. </manifest>