Newer
Older
CitrusClient / app / src / main / AndroidManifest.xml
t-watanabe on 8 Oct 1 KB カレンダーの機能修正
  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:name=".Citrus"
  9. android:allowBackup="true"
  10. android:dataExtractionRules="@xml/data_extraction_rules"
  11. android:fullBackupContent="@xml/backup_rules"
  12. android:icon="@mipmap/ic_launcher"
  13. android:label="@string/app_name"
  14. android:networkSecurityConfig="@xml/network_security_config"
  15. android:roundIcon="@mipmap/ic_launcher_round"
  16. android:supportsRtl="true"
  17. android:theme="@style/Theme.CitrusClient"
  18. android:usesCleartextTraffic="true"
  19. tools:targetApi="31">
  20. <activity
  21. android:name=".views.TestActivity"
  22. android:exported="false"
  23. android:label="@string/title_activity_test"
  24. android:theme="@style/Theme.CitrusClient" />
  25. <activity
  26. android:name=".views.MainActivity"
  27. android:exported="false" />
  28. <activity
  29. android:name=".views.SignUpActivity"
  30. android:exported="false" />
  31. <activity
  32. android:name=".views.LoginActivity"
  33. android:exported="true">
  34. <intent-filter>
  35. <action android:name="android.intent.action.MAIN" />
  36.  
  37. <category android:name="android.intent.category.LAUNCHER" />
  38. </intent-filter>
  39. </activity>
  40. <activity
  41. android:name=".HelloActivity"
  42. android:exported="false" />
  43. </application>
  44.  
  45. </manifest>