AndroidManifest.xml 1.1 KB

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android">
  3. <application
  4. android:allowBackup="true"
  5. android:dataExtractionRules="@xml/data_extraction_rules"
  6. android:fullBackupContent="@xml/backup_rules"
  7. android:icon="@mipmap/ic_launcher"
  8. android:label="@string/app_name"
  9. android:roundIcon="@mipmap/ic_launcher_round"
  10. android:supportsRtl="true"
  11. android:theme="@style/Theme.CommunicationDemo">
  12. <activity
  13. android:name=".MainActivity"
  14. android:exported="true"
  15. android:label="@string/app_name"
  16. android:theme="@style/Theme.CommunicationDemo">
  17. <intent-filter>
  18. <action android:name="android.intent.action.MAIN" />
  19. <category android:name="android.intent.category.LAUNCHER" />
  20. </intent-filter>
  21. </activity>
  22. <activity
  23. android:name=".CtrlActivity"
  24. android:exported="true"
  25. android:theme="@style/Theme.CommunicationDemo" />
  26. </application>
  27. </manifest>