AndroidManifest.xml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  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. package="com.hongyegroup.nucleicacidtest"
  5. tools:ignore="GoogleAppIndexingWarning">
  6. <uses-permission android:name="android.permission.CAMERA" />
  7. <uses-permission android:name="android.permission.RECORD_AUDIO" />
  8. <application
  9. android:name="com.hongyegroup.nucleicacidtest.MyApplication"
  10. android:allowBackup="true"
  11. android:icon="@mipmap/ic_launcher"
  12. android:label="@string/app_name"
  13. android:requestLegacyExternalStorage="true"
  14. android:roundIcon="@mipmap/ic_launcher_round"
  15. android:supportsRtl="true"
  16. android:theme="@style/AppTheme">
  17. <activity
  18. android:name="com.hongyegroup.nucleicacidtest.ui.SplashActivity"
  19. android:screenOrientation="portrait"
  20. android:theme="@style/AppTheme_welcome">
  21. <intent-filter>
  22. <action android:name="android.intent.action.MAIN" />
  23. <category android:name="android.intent.category.LAUNCHER" />
  24. </intent-filter>
  25. </activity>
  26. </application>
  27. </manifest>