AndroidManifest.xml 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. ~ *********************************************************************************************************************
  4. ~
  5. ~ iFHS7.
  6. ~ ;BBMBMBMc rZMBMBR BMB
  7. ~ MBEr:;PBM, 7MBMMEOBB: BBB RBW
  8. ~ XK: BO SB. :SZ MBM. c;; ir BBM :FFr :SSF: ;xBMB:r iuGXv. i:. iF2;
  9. ~ DBBM0r. :D S7 ;XMBMB GMBMu. MBM: BMB MBMBBBMBMS WMBMBMBBK MBMBMBM BMBRBMBW .MBMBMBMBB
  10. ~ :JMRMMD .. , 1MMRM1; ;MBMBBR: MBM ;MB: BMB: MBM. RMBr sBMH BM0 UMB, BMB. KMBv
  11. ~ ;. XOW B1; :uM: 1RE, i .2BMBs rMB. MBO MBO JMB; MBB MBM BBS 7MBMBOBM: MBW :BMc
  12. ~ OBRJ.SEE MRDOWOR, 3DE:7OBM . ;BMB RMR7BM BMB MBB. BMB ,BMR .BBZ MMB rMB, BMM rMB7
  13. ~ :FBRO0D0 RKXSXPR. JOKOOMPi BMBSSWBMB; BMBB: MBMB0ZMBMS .BMBOXRBMB MBMDE RBM2;SMBM; MBB xBM2
  14. ~ iZGE O0SHSPO. uGZ7. sBMBMBDL :BMO OZu:BMBK, rRBMB0; ,EBMB xBMBr:ER. RDU :OO;
  15. ~ ,BZ, 1D0 RPSFHXR. xWZ .SMr . .BBB
  16. ~ :0BMRDG RESSSKR. 2WOMBW; BMBMR
  17. ~ i0BM: SWKHKGO MBDv
  18. ~ .UB OOGDM. MK, Copyright (c) 2015-2019. 斯伯坦机器人
  19. ~ , XMW ..
  20. ~ r All rights reserved.
  21. ~
  22. ~ *********************************************************************************************************************
  23. -->
  24. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  25. xmlns:tools="http://schemas.android.com/tools" package="com.sybotan.android.demo">
  26. <uses-permission android:name="android.permission.INTERNET"/>
  27. <uses-permission android:name="android.permission.BLUETOOTH"/>
  28. <!-- SD卡中创建与删除文件权限 -->
  29. <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" tools:ignore="ProtectedPermissions"/>
  30. <!-- 向SDCard写入数据权限 -->
  31. <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
  32. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
  33. <!-- 摄像头 -->
  34. <uses-permission android:name="android.permission.CAMERA" />
  35. <uses-feature android:name="android.hardware.camera" />
  36. <uses-feature android:name="android.hardware.camera.autofocus" />
  37. <application
  38. android:name=".DemoApp"
  39. android:allowBackup="true"
  40. android:icon="@mipmap/ic_launcher"
  41. android:label="@string/app_name"
  42. android:roundIcon="@mipmap/ic_launcher_round"
  43. android:supportsRtl="true"
  44. android:networkSecurityConfig="@xml/network_security_config"
  45. android:theme="@style/AppTheme">
  46. <activity android:name=".activities.MainActivity">
  47. <intent-filter>
  48. <action android:name="android.intent.action.MAIN"/>
  49. <category android:name="android.intent.category.LAUNCHER"/>
  50. </intent-filter>
  51. </activity>
  52. <activity android:name=".activities.GraphyActivity">
  53. </activity>
  54. <activity android:name=".activities.WebViewActivity">
  55. </activity>
  56. </application>
  57. </manifest>