AndroidManifest.xml 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624
  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.ntels.onecable.admin">
  5. <!-- <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> -->
  6. <!-- <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> -->
  7. <!-- <uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS"/> -->
  8. <!-- <uses-permission android:name="android.permission.READ_CONTACTS"/> -->
  9. <!-- <uses-permission android:name="android.permission.WRITE_CONTACTS"/> -->
  10. <!-- <uses-permission android:name="android.permission.RECEIVE_SMS"/> -->
  11. <!-- <uses-permission android:name="android.permission.USE_CREDENTIALS"/> -->
  12. <!-- <uses-permission android:name="com.android.browser.permission.READ_HISTORY_BOOKMARKS"/> -->
  13. <!-- <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT"/> -->
  14. <!-- 인터넷 접속 -->
  15. <uses-permission android:name="android.permission.INTERNET"/>
  16. <!-- 네트워크 관련 접속(hub 설정및 wifi검색 -->
  17. <uses-permission android:name="android.permission.BLUETOOTH"/>
  18. <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
  19. <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
  20. <uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/>
  21. <!-- 단말정보 -->
  22. <uses-permission android:name="android.permission.READ_PHONE_STATE"/>
  23. <!-- GCM 관련 -->
  24. <!--<uses-permission android:name="android.permission.WAKE_LOCK"/>-->
  25. <!--<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE"/>-->
  26. <uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>
  27. <!-- 프로필 사진 정보 -->
  28. <uses-permission android:name="android.permission.CAMERA"/>
  29. <!--블루투스 BLE -->
  30. <uses-feature
  31. android:name="android.hardware.bluetooth_le"
  32. android:required="true"/>
  33. <uses-permission android:name="android.permission.BLUETOOTH"/>
  34. <uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
  35. <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
  36. <!-- 아래는 확인후 삭제 -->
  37. <uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE"/>
  38. <uses-permission android:name="android.permission.GET_TASKS"/>
  39. <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
  40. <uses-permission android:name="android.permission.VIBRATE"/>
  41. <uses-permission android:name="android.permission.FLASHLIGHT"/>
  42. <uses-permission android:name="android.permission.GET_ACCOUNTS"/>
  43. <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL"/>
  44. <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
  45. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
  46. <!-- 20160816 IP Camera 추가로 인해 권한 추가 -->
  47. <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE"/>
  48. <uses-permission android:name="android.permission.RECORD_AUDIO"/>
  49. <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>
  50. <uses-permission android:name="android.permission.PHONE_CALLS"/>
  51. <uses-permission android:name="android.permission.MICROPHONE"/>
  52. <uses-permission android:name="android.permission.AUDIO_SETTINGS"/>
  53. <uses-feature
  54. android:name="android.hardware.camera"
  55. android:required="false"/>
  56. <uses-feature
  57. android:name="android.hardware.camera.front"
  58. android:required="false"/>
  59. <uses-feature
  60. android:name="android.hardware.camera.autofocus"
  61. android:required="false"/>
  62. <uses-feature
  63. android:name="android.hardware.camera.flash"
  64. android:required="false"/>
  65. <uses-feature android:name="android.hardware.screen.landscape"/>
  66. <uses-feature
  67. android:name="android.hardware.wifi"
  68. android:required="false"/>
  69. <uses-feature android:name="android.hardware.touchscreen"/>
  70. <uses-feature
  71. android:name="android.hardware.telephony"
  72. android:required="false"/>
  73. <uses-feature
  74. android:glEsVersion="0x00020000"
  75. android:required="true"/>
  76. <application
  77. android:name=".common.AppConfig"
  78. android:allowBackup="true"
  79. android:hardwareAccelerated="true"
  80. android:icon="@drawable/ic_launcher"
  81. android:label="@string/app_name"
  82. android:largeHeap="true"
  83. android:theme="@style/AppTheme"
  84. tools:replace="android:label">
  85. <activity
  86. android:name=".view.Intro"
  87. android:configChanges="fontScale"
  88. android:label="@string/app_name"
  89. android:screenOrientation="portrait"
  90. android:theme="@style/Translucent"
  91. android:windowSoftInputMode="stateAlwaysHidden|adjustPan">
  92. <intent-filter>
  93. <action android:name="android.intent.action.MAIN"/>
  94. <category android:name="android.intent.category.LAUNCHER"/>
  95. </intent-filter>
  96. </activity>
  97. <activity
  98. android:name=".view.AppStart"
  99. android:configChanges="fontScale"
  100. android:excludeFromRecents="true"
  101. android:launchMode="singleTask"
  102. android:screenOrientation="portrait"
  103. android:taskAffinity=""
  104. android:theme="@style/Translucent">
  105. <intent-filter>
  106. <action android:name="android.intent.action.VIEW"/>
  107. <category android:name="android.intent.category.DEFAULT"/>
  108. <category android:name="android.intent.category.BROWSABLE"/>
  109. <data
  110. android:host="start"
  111. android:scheme="ntels_onecable_admin_v1"/>
  112. </intent-filter>
  113. </activity>
  114. <activity
  115. android:name=".view.Login"
  116. android:configChanges="fontScale"
  117. android:screenOrientation="portrait"
  118. android:theme="@style/Translucent"
  119. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  120. <!--<activity-->
  121. <!--android:name=".view.LoginNewDevice"-->
  122. <!--android:configChanges="fontScale"-->
  123. <!--android:screenOrientation="portrait"-->
  124. <!--android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>-->
  125. <!--<activity-->
  126. <!--android:name=".view.invitation.InvitationList"-->
  127. <!--android:configChanges="fontScale"-->
  128. <!--android:screenOrientation="portrait"-->
  129. <!--android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>-->
  130. <!--<activity-->
  131. <!--android:name=".view.FindId1st"-->
  132. <!--android:configChanges="fontScale"-->
  133. <!--android:screenOrientation="portrait"-->
  134. <!--android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>-->
  135. <!--<activity-->
  136. <!--android:name=".view.FindId2nd"-->
  137. <!--android:configChanges="fontScale"-->
  138. <!--android:screenOrientation="portrait"-->
  139. <!--android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>-->
  140. <!--<activity-->
  141. <!--android:name=".view.FindPassword1st"-->
  142. <!--android:configChanges="fontScale"-->
  143. <!--android:screenOrientation="portrait"-->
  144. <!--android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>-->
  145. <!--<activity-->
  146. <!--android:name=".view.FindPassword2nd"-->
  147. <!--android:configChanges="fontScale"-->
  148. <!--android:screenOrientation="portrait"-->
  149. <!--android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>-->
  150. <!--<activity-->
  151. <!--android:name=".view.FindPassword3rd"-->
  152. <!--android:configChanges="fontScale"-->
  153. <!--android:screenOrientation="portrait"-->
  154. <!--android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>-->
  155. <activity
  156. android:name=".view.HomeStart"
  157. android:configChanges="fontScale"
  158. android:screenOrientation="portrait"
  159. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  160. <!--<activity-->
  161. <!--android:name=".view.join.JoinType"-->
  162. <!--android:configChanges="fontScale"-->
  163. <!--android:screenOrientation="portrait"-->
  164. <!--android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>-->
  165. <!--<activity-->
  166. <!--android:name=".view.join.JoinStep1st"-->
  167. <!--android:configChanges="fontScale"-->
  168. <!--android:screenOrientation="portrait"-->
  169. <!--android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>-->
  170. <!--<activity-->
  171. <!--android:name=".view.join.JoinStep2ndMaster"-->
  172. <!--android:configChanges="fontScale"-->
  173. <!--android:screenOrientation="portrait"-->
  174. <!--android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>-->
  175. <!--<activity-->
  176. <!--android:name=".view.join.JoinStep2ndMember"-->
  177. <!--android:configChanges="fontScale"-->
  178. <!--android:screenOrientation="portrait"-->
  179. <!--android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>-->
  180. <!--<activity-->
  181. <!--android:name=".view.join.JoinStep3rdMaster"-->
  182. <!--android:configChanges="fontScale"-->
  183. <!--android:screenOrientation="portrait"-->
  184. <!--android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>-->
  185. <!--<activity-->
  186. <!--android:name=".view.join.JoinStep3rdMember"-->
  187. <!--android:configChanges="fontScale"-->
  188. <!--android:screenOrientation="portrait"-->
  189. <!--android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>-->
  190. <!--<activity-->
  191. <!--android:name=".view.join.JoinStep4th"-->
  192. <!--android:configChanges="fontScale"-->
  193. <!--android:screenOrientation="portrait"-->
  194. <!--android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>-->
  195. <!--<activity-->
  196. <!--android:name=".view.join.JoinStep5th"-->
  197. <!--android:configChanges="fontScale"-->
  198. <!--android:screenOrientation="portrait"-->
  199. <!--android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>-->
  200. <!--<activity-->
  201. <!--android:name=".view.join.JoinComplete"-->
  202. <!--android:configChanges="fontScale"-->
  203. <!--android:screenOrientation="portrait"-->
  204. <!--android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>-->
  205. <activity
  206. android:name=".view.Main"
  207. android:configChanges="fontScale"
  208. android:launchMode="singleTask"
  209. android:screenOrientation="portrait"
  210. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  211. <activity
  212. android:name=".view.customer.CustomerJoinMaster"
  213. android:configChanges="fontScale"
  214. android:screenOrientation="portrait"
  215. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  216. <activity
  217. android:name=".view.customer.CustomerConnection"
  218. android:configChanges="fontScale"
  219. android:screenOrientation="portrait"
  220. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  221. <activity
  222. android:name=".view.mainmore.Setting"
  223. android:configChanges="fontScale"
  224. android:screenOrientation="portrait"
  225. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  226. <activity
  227. android:name=".view.mainmore.Homehub"
  228. android:configChanges="fontScale"
  229. android:screenOrientation="portrait"
  230. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  231. <activity
  232. android:name=".view.mainmore.HomehubUpdate"
  233. android:configChanges="fontScale"
  234. android:screenOrientation="portrait"
  235. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  236. <activity
  237. android:name=".view.mainmore.HomehubUpdateLoading"
  238. android:configChanges="fontScale"
  239. android:screenOrientation="portrait"
  240. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  241. <activity
  242. android:name=".view.mainmore.HomehubList"
  243. android:configChanges="fontScale"
  244. android:screenOrientation="portrait"
  245. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  246. <activity
  247. android:name=".view.admin.HomehubBleStep1"
  248. android:configChanges="fontScale"
  249. android:screenOrientation="portrait"
  250. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  251. <activity
  252. android:name=".view.admin.HomehubBleStep2"
  253. android:configChanges="fontScale"
  254. android:screenOrientation="portrait"
  255. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  256. <activity
  257. android:name=".view.admin.HomehubBleStep2Err"
  258. android:configChanges="fontScale"
  259. android:screenOrientation="portrait"
  260. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  261. <activity
  262. android:name=".view.admin.HomehubBleStep3"
  263. android:configChanges="fontScale"
  264. android:screenOrientation="portrait"
  265. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  266. <activity
  267. android:name=".view.admin.HomehubBleStep4"
  268. android:configChanges="fontScale"
  269. android:screenOrientation="portrait"
  270. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  271. <activity
  272. android:name=".view.admin.HomehubBleStep4Err"
  273. android:configChanges="fontScale"
  274. android:screenOrientation="portrait"
  275. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  276. <activity
  277. android:name=".view.admin.HomehubBleStep5"
  278. android:configChanges="fontScale"
  279. android:screenOrientation="portrait"
  280. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  281. <activity
  282. android:name=".view.admin.HomehubBleStep6"
  283. android:configChanges="fontScale"
  284. android:screenOrientation="portrait"
  285. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  286. <!--<activity-->
  287. <!--android:name=".view.invitation.InvitationReply"-->
  288. <!--android:configChanges="fontScale"-->
  289. <!--android:screenOrientation="portrait"-->
  290. <!--android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>-->
  291. <!--<activity-->
  292. <!--android:name=".view.homemember.HomeMemberAdd"-->
  293. <!--android:configChanges="fontScale"-->
  294. <!--android:screenOrientation="portrait"-->
  295. <!--android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>-->
  296. <!--<activity-->
  297. <!--android:name=".view.mainmore.MessageCenter"-->
  298. <!--android:configChanges="fontScale"-->
  299. <!--android:screenOrientation="portrait"-->
  300. <!--android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>-->
  301. <activity
  302. android:name=".view.mainmore.Notice"
  303. android:configChanges="fontScale"
  304. android:screenOrientation="portrait"
  305. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  306. <!--<activity-->
  307. <!--android:name=".view.mainmore.Faq"-->
  308. <!--android:configChanges="fontScale"-->
  309. <!--android:screenOrientation="portrait"-->
  310. <!--android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>-->
  311. <!--<activity-->
  312. <!--android:name=".view.mainmore.FaqDetail"-->
  313. <!--android:configChanges="fontScale"-->
  314. <!--android:screenOrientation="portrait"-->
  315. <!--android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>-->
  316. <activity
  317. android:name=".view.things.ThingsDeviceAdd"
  318. android:configChanges="fontScale"
  319. android:screenOrientation="portrait"
  320. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  321. <!--<activity-->
  322. <!--android:name=".view.rules.RulesDetail"-->
  323. <!--android:configChanges="fontScale"-->
  324. <!--android:screenOrientation="portrait"-->
  325. <!--android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>-->
  326. <!--<activity-->
  327. <!--android:name=".view.rules.RulesEdit"-->
  328. <!--android:configChanges="fontScale"-->
  329. <!--android:screenOrientation="portrait"-->
  330. <!--android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>-->
  331. <activity
  332. android:name=".view.things.ThingsDetail"
  333. android:configChanges="fontScale"
  334. android:screenOrientation="portrait"
  335. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  336. <activity
  337. android:name=".view.mainmore.Homemode"
  338. android:configChanges="fontScale"
  339. android:screenOrientation="portrait"
  340. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  341. <!--<activity-->
  342. <!--android:name=".view.mainmore.HomemodeEdit"-->
  343. <!--android:configChanges="fontScale"-->
  344. <!--android:screenOrientation="portrait"-->
  345. <!--android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>-->
  346. <activity
  347. android:name=".view.mainmore.SettingNicknameChange"
  348. android:configChanges="fontScale"
  349. android:screenOrientation="portrait"
  350. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  351. <activity
  352. android:name=".view.mainmore.SettingCellphoneChange"
  353. android:configChanges="fontScale"
  354. android:screenOrientation="portrait"
  355. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  356. <activity
  357. android:name=".view.mainmore.SettingPasswordCheck"
  358. android:configChanges="fontScale"
  359. android:screenOrientation="portrait"
  360. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  361. <activity
  362. android:name=".view.mainmore.SettingPasswordChange"
  363. android:configChanges="fontScale"
  364. android:screenOrientation="portrait"
  365. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  366. <!--<meta-data-->
  367. <!--android:name="com.google.android.maps.v2.API_KEY"-->
  368. <!--android:value="@string/google_app_id"/>-->
  369. <!-- GCM 서비스 -->
  370. <!-- [START gcm_receiver] -->
  371. <!--<receiver
  372. android:name="com.google.android.gms.gcm.GcmReceiver"
  373. android:exported="true"
  374. android:permission="com.google.android.c2dm.permission.SEND">
  375. <intent-filter>
  376. <action android:name="com.google.android.c2dm.intent.RECEIVE"/>
  377. <category android:name="net.saltfactory.gcm"/>
  378. </intent-filter>
  379. </receiver>-->
  380. <!-- [END gcm_receiver] -->
  381. <!-- [START gcm_listener_service] -->
  382. <service
  383. android:name=".common.gcm.FcmIntentService"
  384. android:exported="false">
  385. <intent-filter>
  386. <action android:name="com.google.firebase.MESSAGING_EVENT"/>
  387. </intent-filter>
  388. </service>
  389. <!-- [END gcm_listener_service] -->
  390. <!-- [START instanceId_listener_service] -->
  391. <service
  392. android:name=".common.gcm.MyInstanceIDListenerService"
  393. android:exported="false">
  394. <intent-filter>
  395. <action android:name="com.google.firebase.INSTANCE_ID_EVENT"/>
  396. </intent-filter>
  397. </service>
  398. <!-- [END instanceId_listener_service] -->
  399. <!-- [START gcm_registration_service] -->
  400. <service
  401. android:name=".common.gcm.RegistrationIntentService"
  402. android:exported="false"/>
  403. <!-- [END gcm_registration_service] -->
  404. <!-- GCM 서비스 -->
  405. <!-- Loacal Process BoroadCast Receiver -->
  406. <!-- GCM 서비스 -->
  407. <!-- GCM 서비스 -->
  408. <!-- Mdns 서비스 -->
  409. <receiver android:name=".common.mdns.MdnsRegBroadcastRecevier">
  410. <intent-filter>
  411. <action android:name="android.intent.action.BOOT_COMPLETED"/>
  412. <action android:name="android.net.wifi.WIFI_STATE_CHANGED"/>
  413. <action android:name="android.net.wifi.STATE_CHANGE"/>
  414. <action android:name="android.net.conn.CONNECTIVITY_CHANGE"/>
  415. </intent-filter>
  416. </receiver>
  417. <receiver
  418. android:name=".common.mdns.RestartService"
  419. android:enabled="true"
  420. android:exported="false"
  421. android:label="RestartService"
  422. android:process=":remote">
  423. <intent-filter>
  424. <action android:name="ACTION.Restart.PersistentService"/>
  425. </intent-filter>
  426. </receiver>
  427. <service
  428. android:name=".common.mdns.MdnsRegService"
  429. android:exported="false"/>
  430. <!-- GCM Push서비스 -->
  431. <!--블루투스 서비스-->
  432. <service
  433. android:name=".common.ble.BluetoothLeService"
  434. android:enabled="true"/>
  435. <!--블루투스 서비스-->
  436. <!-- DialogSpinner -->
  437. <activity
  438. android:name=".view.dialog.PushDialog"
  439. android:configChanges="fontScale"
  440. android:excludeFromRecents="true"
  441. android:launchMode="singleTask"
  442. android:screenOrientation="portrait"
  443. android:taskAffinity=""
  444. android:theme="@style/Translucent"/>
  445. <activity
  446. android:name=".view.ImageSelect"
  447. android:configChanges="orientation|fontScale|keyboardHidden|screenSize"
  448. android:screenOrientation="portrait"
  449. android:theme="@style/NTLES_Dialog1"/>
  450. <activity
  451. android:name=".view.dialog.DialogSpinner"
  452. android:configChanges="fontScale"
  453. android:screenOrientation="portrait"
  454. android:theme="@style/Translucent_Pop_dim"
  455. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  456. <activity
  457. android:name=".view.things.ThingsDeviceDelOffStep1"
  458. android:configChanges="fontScale"
  459. android:screenOrientation="portrait"
  460. android:theme="@style/NTLES_Dialog1"
  461. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  462. <activity
  463. android:name=".view.things.ThingsDeviceDelOffStep2"
  464. android:configChanges="fontScale"
  465. android:screenOrientation="portrait"
  466. android:theme="@style/NTLES_Dialog1"
  467. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  468. <activity
  469. android:name=".view.things.ThingsDeviceDelStep0"
  470. android:configChanges="fontScale"
  471. android:screenOrientation="portrait"
  472. android:theme="@style/NTLES_Dialog1"
  473. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  474. <activity
  475. android:name=".view.things.ThingsDeviceDelStep1"
  476. android:configChanges="fontScale"
  477. android:screenOrientation="portrait"
  478. android:theme="@style/NTLES_Dialog1"
  479. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  480. <activity
  481. android:name=".view.things.ThingsDeviceDelStep2"
  482. android:configChanges="fontScale"
  483. android:screenOrientation="portrait"
  484. android:theme="@style/NTLES_Dialog1"
  485. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  486. <activity
  487. android:name=".view.things.ThingsDeviceAddStep0"
  488. android:configChanges="fontScale"
  489. android:screenOrientation="portrait"
  490. android:theme="@style/NTLES_Dialog1"
  491. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  492. <activity
  493. android:name=".view.things.ThingsDeviceAddStep1"
  494. android:configChanges="fontScale"
  495. android:screenOrientation="portrait"
  496. android:theme="@style/NTLES_Dialog1"
  497. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  498. <activity
  499. android:name=".view.things.ThingsDeviceAddStep2"
  500. android:configChanges="fontScale"
  501. android:screenOrientation="portrait"
  502. android:theme="@style/NTLES_Dialog1"
  503. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  504. <activity
  505. android:name=".view.things.ThingsDeviceAddStep3"
  506. android:configChanges="fontScale"
  507. android:screenOrientation="portrait"
  508. android:theme="@style/NTLES_Dialog1"
  509. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  510. <activity
  511. android:name=".view.things.ThingsDeviceAddStep4"
  512. android:configChanges="fontScale"
  513. android:screenOrientation="portrait"
  514. android:theme="@style/NTLES_Dialog1"
  515. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  516. <activity
  517. android:name=".view.things.ThingsHomehubInput"
  518. android:configChanges="fontScale"
  519. android:screenOrientation="portrait"
  520. android:theme="@style/NTLES_Dialog1"
  521. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  522. <activity
  523. android:name=".view.mainmore.HomehubPasswordChange"
  524. android:configChanges="fontScale"
  525. android:screenOrientation="portrait"
  526. android:theme="@style/NTLES_Dialog1"
  527. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  528. <activity
  529. android:name=".view.mainmore.SettingEmailChange"
  530. android:configChanges="fontScale"
  531. android:screenOrientation="portrait"
  532. android:theme="@style/NTLES_Dialog1"
  533. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  534. <activity
  535. android:name=".view.things.ThingsNameChange"
  536. android:configChanges="fontScale"
  537. android:screenOrientation="portrait"
  538. android:theme="@style/NTLES_Dialog1"
  539. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  540. <service
  541. android:name=".common.websocket.WebSocketService"
  542. android:enabled="true"
  543. android:exported="true"/>
  544. <receiver android:name=".common.websocket.NetworkStateReceiver">
  545. <intent-filter>
  546. <action android:name="android.net.conn.CONNECTIVITY_CHANGE"/>
  547. </intent-filter>
  548. </receiver>
  549. <activity
  550. android:name=".view.things.ThingsHomehubGuide"
  551. android:screenOrientation="portrait"
  552. android:theme="@style/Translucent"/>
  553. <activity
  554. android:name=".view.install.HomehubRegister"
  555. android:configChanges="fontScale"
  556. android:screenOrientation="portrait"
  557. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  558. <activity
  559. android:name=".view.install.HomehubRegisterErr"
  560. android:configChanges="fontScale"
  561. android:screenOrientation="portrait"
  562. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  563. <activity
  564. android:name=".view.install.HomehubRegisterSucess"
  565. android:configChanges="fontScale"
  566. android:screenOrientation="portrait"
  567. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  568. <activity
  569. android:name=".view.install.HomehubDel"
  570. android:configChanges="fontScale"
  571. android:screenOrientation="portrait"
  572. android:theme="@style/NTLES_Dialog1"
  573. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  574. <activity
  575. android:name=".view.things.ThingsHomehubSetPassword"
  576. android:configChanges="fontScale"
  577. android:screenOrientation="portrait"
  578. android:theme="@style/NTLES_Dialog1"
  579. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  580. <activity
  581. android:name=".view.things.ThingsHomehubAssignPassword"
  582. android:configChanges="fontScale"
  583. android:screenOrientation="portrait"
  584. android:theme="@style/NTLES_Dialog1"
  585. android:windowSoftInputMode="stateAlwaysHidden|adjustResize"/>
  586. <provider
  587. android:name="android.support.v4.content.FileProvider"
  588. android:authorities="${applicationId}.provider"
  589. android:exported="false"
  590. android:grantUriPermissions="true">
  591. <meta-data
  592. android:name="android.support.FILE_PROVIDER_PATHS"
  593. android:resource="@xml/provider_paths"/>
  594. </provider>
  595. </application>
  596. </manifest>