AndroidManifest.xml 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.ntels.kneet.v2"
  4. android:versionCode="10017"
  5. android:versionName="1.0.2" >
  6. <uses-sdk
  7. android:minSdkVersion="15"
  8. android:targetSdkVersion="22" />
  9. <!-- <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> -->
  10. <!-- <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> -->
  11. <!-- <uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS"/> -->
  12. <!-- <uses-permission android:name="android.permission.READ_CONTACTS"/> -->
  13. <!-- <uses-permission android:name="android.permission.WRITE_CONTACTS"/> -->
  14. <!-- <uses-permission android:name="android.permission.RECEIVE_SMS"/> -->
  15. <!-- <uses-permission android:name="android.permission.USE_CREDENTIALS"/> -->
  16. <!-- <uses-permission android:name="com.android.browser.permission.READ_HISTORY_BOOKMARKS"/> -->
  17. <!-- <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT"/> -->
  18. <uses-permission android:name="android.permission.BLUETOOTH" />
  19. <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  20. <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
  21. <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
  22. <uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE" />
  23. <uses-permission android:name="android.permission.CAMERA" />
  24. <uses-permission android:name="android.permission.FLASHLIGHT" />
  25. <uses-permission android:name="android.permission.GET_ACCOUNTS" />
  26. <uses-permission android:name="android.permission.GET_TASKS" />
  27. <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" />
  28. <uses-permission android:name="android.permission.INTERNET" />
  29. <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
  30. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  31. <uses-permission android:name="android.permission.READ_PHONE_STATE" />
  32. <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
  33. <uses-permission android:name="android.permission.VIBRATE" />
  34. <uses-permission android:name="android.permission.WAKE_LOCK" />
  35. <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
  36. <uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
  37. <uses-feature
  38. android:name="android.hardware.camera"
  39. android:required="false" />
  40. <uses-feature
  41. android:name="android.hardware.camera.front"
  42. android:required="false" />
  43. <uses-feature
  44. android:name="android.hardware.camera.autofocus"
  45. android:required="false" />
  46. <uses-feature
  47. android:name="android.hardware.camera.flash"
  48. android:required="false" />
  49. <uses-feature android:name="android.hardware.screen.landscape" />
  50. <uses-feature
  51. android:name="android.hardware.wifi"
  52. android:required="false" />
  53. <uses-feature android:name="android.hardware.touchscreen" />
  54. <uses-feature
  55. android:name="android.hardware.telephony"
  56. android:required="false" />
  57. <uses-feature
  58. android:glEsVersion="0x00020000"
  59. android:required="true" />
  60. <application
  61. android:name="com.ntels.kneet.v2.common.AppConfig"
  62. android:allowBackup="true"
  63. android:icon="@drawable/ic_launcher"
  64. android:label="@string/app_name"
  65. android:largeHeap="true"
  66. android:theme="@style/AppTheme" >
  67. <activity
  68. android:name="com.ntels.kneet.v2.view.Intro"
  69. android:configChanges="fontScale"
  70. android:label="@string/app_name"
  71. android:screenOrientation="portrait"
  72. android:theme="@style/Translucent"
  73. android:windowSoftInputMode="stateAlwaysHidden|adjustPan" >
  74. <intent-filter>
  75. <action android:name="android.intent.action.MAIN" />
  76. <category android:name="android.intent.category.LAUNCHER" />
  77. </intent-filter>
  78. </activity>
  79. <activity
  80. android:name="com.ntels.kneet.v2.view.AppStart"
  81. android:configChanges="fontScale"
  82. android:excludeFromRecents="true"
  83. android:launchMode="singleTask"
  84. android:screenOrientation="portrait"
  85. android:taskAffinity=""
  86. android:theme="@style/Translucent" >
  87. <intent-filter>
  88. <action android:name="android.intent.action.VIEW" />
  89. <category android:name="android.intent.category.DEFAULT" />
  90. <category android:name="android.intent.category.BROWSABLE" />
  91. <data
  92. android:host="start"
  93. android:scheme="ntels_kneet_v2" />
  94. </intent-filter>
  95. </activity>
  96. <activity
  97. android:name="com.ntels.kneet.v2.view.Login"
  98. android:configChanges="fontScale"
  99. android:screenOrientation="portrait"
  100. android:theme="@style/Translucent"
  101. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  102. <activity
  103. android:name="com.ntels.kneet.v2.view.Login_New_Device"
  104. android:configChanges="fontScale"
  105. android:screenOrientation="portrait"
  106. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  107. <activity
  108. android:name="com.ntels.kneet.v2.view.invitation.Invitation_List"
  109. android:configChanges="fontScale"
  110. android:screenOrientation="portrait"
  111. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  112. <activity
  113. android:name="com.ntels.kneet.v2.view.Reset_Password"
  114. android:configChanges="fontScale"
  115. android:screenOrientation="portrait"
  116. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  117. <activity
  118. android:name="com.ntels.kneet.v2.view.Join"
  119. android:configChanges="fontScale"
  120. android:screenOrientation="portrait"
  121. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  122. <activity
  123. android:name="com.ntels.kneet.v2.view.Home_Start"
  124. android:configChanges="fontScale"
  125. android:screenOrientation="portrait"
  126. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  127. <activity
  128. android:name="com.ntels.kneet.v2.view.Join_Chk"
  129. android:configChanges="fontScale"
  130. android:screenOrientation="portrait"
  131. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  132. <activity
  133. android:name="com.ntels.kneet.v2.view.Main"
  134. android:configChanges="fontScale"
  135. android:launchMode="singleTask"
  136. android:screenOrientation="portrait"
  137. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  138. <activity
  139. android:name="com.ntels.kneet.v2.view.main_more.Main_More"
  140. android:configChanges="fontScale"
  141. android:screenOrientation="portrait"
  142. android:theme="@style/Translucent"
  143. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  144. <activity
  145. android:name="com.ntels.kneet.v2.view.main_more.Setting"
  146. android:configChanges="fontScale"
  147. android:screenOrientation="portrait"
  148. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  149. <activity
  150. android:name="com.ntels.kneet.v2.view.main_more.Homehub"
  151. android:configChanges="fontScale"
  152. android:screenOrientation="portrait"
  153. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  154. <activity
  155. android:name="com.ntels.kneet.v2.view.invitation.Invitation_Reply"
  156. android:configChanges="fontScale"
  157. android:screenOrientation="portrait"
  158. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  159. <activity
  160. android:name="com.ntels.kneet.v2.view.homemember.HomeMember_Add"
  161. android:configChanges="fontScale"
  162. android:screenOrientation="portrait"
  163. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  164. <activity
  165. android:name="com.ntels.kneet.v2.view.main_more.Message_Center"
  166. android:configChanges="fontScale"
  167. android:screenOrientation="portrait"
  168. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  169. <activity
  170. android:name="com.ntels.kneet.v2.view.main_more.Notice"
  171. android:configChanges="fontScale"
  172. android:screenOrientation="portrait"
  173. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  174. <activity
  175. android:name="com.ntels.kneet.v2.view.things.Things_Device_Add"
  176. android:configChanges="fontScale"
  177. android:screenOrientation="portrait"
  178. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  179. <activity
  180. android:name="com.ntels.kneet.v2.view.rules.Rules_Detail"
  181. android:configChanges="fontScale"
  182. android:screenOrientation="portrait"
  183. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  184. <activity
  185. android:name="com.ntels.kneet.v2.view.rules.Rules_Edit"
  186. android:configChanges="fontScale"
  187. android:screenOrientation="portrait"
  188. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  189. <activity
  190. android:name="com.ntels.kneet.v2.view.things.Things_Detail"
  191. android:configChanges="fontScale"
  192. android:screenOrientation="portrait"
  193. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  194. <activity
  195. android:name="com.ntels.kneet.v2.view.main_more.Homemode"
  196. android:configChanges="fontScale"
  197. android:screenOrientation="portrait"
  198. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  199. <activity
  200. android:name="com.ntels.kneet.v2.view.main_more.Homemode_Edit"
  201. android:configChanges="fontScale"
  202. android:screenOrientation="portrait"
  203. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  204. <meta-data
  205. android:name="com.google.android.maps.v2.API_KEY"
  206. android:value="@string/google_app_id" />
  207. <meta-data
  208. android:name="com.google.android.gms.version"
  209. android:value="@integer/google_play_services_version" />
  210. <!-- GCM 서비스 & 브로드캐스트 -->
  211. <receiver
  212. android:name="com.ntels.kneet.v2.common.gcm.service.GcmBroadcastReceiver"
  213. android:exported="true"
  214. android:permission="com.google.android.c2dm.permission.SEND" >
  215. <intent-filter>
  216. <action android:name="com.google.android.c2dm.intent.RECEIVE" />
  217. <category android:name="com.ntels.Kneet.GCM" />
  218. </intent-filter>
  219. </receiver>
  220. <!-- Loacal Process BoroadCast Receiver -->
  221. <!-- GCM 서비스 -->
  222. <service
  223. android:name="com.ntels.kneet.v2.common.gcm.service.PushService"
  224. android:exported="false" >
  225. <intent-filter>
  226. <action android:name="com.ntels.Kneet.ACTION_PUSH_SERVICE_POOLLING" />
  227. </intent-filter>
  228. </service>
  229. <!-- GCM 서비스 -->
  230. <service android:name="com.ntels.kneet.v2.common.gcm.service.GcmIntentService" />
  231. <!-- Mdns 서비스 -->
  232. <receiver android:name="com.ntels.kneet.v2.common.mdns.MdnsRegBroadcastRecevier" >
  233. <intent-filter>
  234. <action android:name="android.intent.action.BOOT_COMPLETED" />
  235. <action android:name="android.net.wifi.WIFI_STATE_CHANGED" />
  236. <action android:name="android.net.wifi.STATE_CHANGE" />
  237. </intent-filter>
  238. </receiver>
  239. <receiver
  240. android:name="com.ntels.kneet.v2.common.mdns.RestartService"
  241. android:enabled="true"
  242. android:exported="false"
  243. android:label="RestartService"
  244. android:process=":remote" >
  245. <intent-filter>
  246. <action android:name="ACTION.Restart.PersistentService" />
  247. </intent-filter>
  248. </receiver>
  249. <service
  250. android:name="com.ntels.kneet.v2.common.mdns.MdnsRegService"
  251. android:exported="false" />
  252. <!-- GCM Push서비스 -->
  253. <!-- Dialog_Spinner -->
  254. <activity
  255. android:name="com.ntels.kneet.v2.view.dialog.PushDialog"
  256. android:configChanges="fontScale"
  257. android:excludeFromRecents="true"
  258. android:launchMode="singleTask"
  259. android:screenOrientation="portrait"
  260. android:taskAffinity=""
  261. android:theme="@style/Translucent" />
  262. <activity
  263. android:name="com.ntels.kneet.v2.view.Image_Select"
  264. android:configChanges="orientation|fontScale|keyboardHidden|screenSize"
  265. android:screenOrientation="portrait"
  266. android:theme="@style/NTLES_Dialog1" />
  267. <activity
  268. android:name="com.ntels.kneet.v2.view.dialog.Dialog_Spinner"
  269. android:configChanges="fontScale"
  270. android:screenOrientation="portrait"
  271. android:theme="@style/NTLES_Dialog1"
  272. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" >
  273. </activity>
  274. <activity
  275. android:name="com.google.zxing.client.android.Reader_Qr"
  276. android:clearTaskOnLaunch="true"
  277. android:screenOrientation="portrait"
  278. android:stateNotNeeded="true"
  279. android:windowSoftInputMode="stateAlwaysHidden" />
  280. <activity
  281. android:name="com.ntels.kneet.v2.view.things.Things_Device_Add_01"
  282. android:configChanges="fontScale"
  283. android:screenOrientation="portrait"
  284. android:theme="@style/NTLES_Dialog1"
  285. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  286. <activity
  287. android:name="com.ntels.kneet.v2.view.things.Things_Device_Add_02"
  288. android:configChanges="fontScale"
  289. android:screenOrientation="portrait"
  290. android:theme="@style/NTLES_Dialog1"
  291. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  292. <activity
  293. android:name="com.ntels.kneet.v2.view.things.Things_Device_Add_03"
  294. android:configChanges="fontScale"
  295. android:screenOrientation="portrait"
  296. android:theme="@style/NTLES_Dialog1"
  297. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  298. <activity
  299. android:name="com.ntels.kneet.v2.view.things.Things_Device_Del_01"
  300. android:configChanges="fontScale"
  301. android:screenOrientation="portrait"
  302. android:theme="@style/NTLES_Dialog1"
  303. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  304. <activity
  305. android:name="com.ntels.kneet.v2.view.things.Things_Device_Del_02"
  306. android:configChanges="fontScale"
  307. android:screenOrientation="portrait"
  308. android:theme="@style/NTLES_Dialog1"
  309. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  310. <activity
  311. android:name="com.ntels.kneet.v2.view.things.Things_Device_Del_03"
  312. android:configChanges="fontScale"
  313. android:screenOrientation="portrait"
  314. android:theme="@style/NTLES_Dialog1"
  315. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  316. <activity
  317. android:name="com.ntels.kneet.v2.view.things.Things_Homehub_Input"
  318. android:configChanges="fontScale"
  319. android:screenOrientation="portrait"
  320. android:theme="@style/NTLES_Dialog1"
  321. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  322. <activity
  323. android:name="com.ntels.kneet.v2.view.things.Things_Homehub_Guide_Intro"
  324. android:configChanges="fontScale"
  325. android:screenOrientation="portrait"
  326. android:theme="@style/NTLES_Dialog1"
  327. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  328. <activity
  329. android:name="com.ntels.kneet.v2.view.things.Things_Homehub_Guide_01"
  330. android:configChanges="fontScale"
  331. android:screenOrientation="portrait"
  332. android:theme="@style/NTLES_Dialog1"
  333. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  334. <activity
  335. android:name="com.ntels.kneet.v2.view.things.Things_Homehub_Guide_02"
  336. android:configChanges="fontScale"
  337. android:screenOrientation="portrait"
  338. android:theme="@style/NTLES_Dialog1"
  339. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  340. <activity
  341. android:name="com.ntels.kneet.v2.view.things.Things_Homehub_Guide_03"
  342. android:configChanges="fontScale"
  343. android:screenOrientation="portrait"
  344. android:theme="@style/NTLES_Dialog1"
  345. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  346. <activity
  347. android:name="com.ntels.kneet.v2.view.things.Things_Homehub_Guide_04_01"
  348. android:configChanges="fontScale"
  349. android:screenOrientation="portrait"
  350. android:theme="@style/NTLES_Dialog1"
  351. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  352. <activity
  353. android:name="com.ntels.kneet.v2.view.things.Things_Homehub_Guide_04_02"
  354. android:configChanges="fontScale"
  355. android:screenOrientation="portrait"
  356. android:theme="@style/NTLES_Dialog1"
  357. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  358. <activity
  359. android:name="com.ntels.kneet.v2.view.main_more.Setting_Name_Change"
  360. android:configChanges="fontScale"
  361. android:screenOrientation="portrait"
  362. android:theme="@style/NTLES_Dialog1"
  363. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  364. <activity
  365. android:name="com.ntels.kneet.v2.view.main_more.Homehub_Password_Change"
  366. android:configChanges="fontScale"
  367. android:screenOrientation="portrait"
  368. android:theme="@style/NTLES_Dialog1"
  369. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  370. <activity
  371. android:name="com.ntels.kneet.v2.view.main_more.Setting_Email_Change"
  372. android:configChanges="fontScale"
  373. android:screenOrientation="portrait"
  374. android:theme="@style/NTLES_Dialog1"
  375. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  376. <activity
  377. android:name="com.ntels.kneet.v2.view.main_more.Setting_Password_Change"
  378. android:configChanges="fontScale"
  379. android:screenOrientation="portrait"
  380. android:theme="@style/NTLES_Dialog1"
  381. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  382. <activity
  383. android:name="com.ntels.kneet.v2.view.main_more.Setting_Password_Chk"
  384. android:configChanges="fontScale"
  385. android:screenOrientation="portrait"
  386. android:theme="@style/NTLES_Dialog1"
  387. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  388. <activity
  389. android:name="com.ntels.kneet.v2.view.main_more.Setting_Admin_Password_Chk"
  390. android:configChanges="fontScale"
  391. android:screenOrientation="portrait"
  392. android:theme="@style/NTLES_Dialog1"
  393. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  394. <activity
  395. android:name="com.ntels.kneet.v2.view.main_more.Setting_RTSP_Change"
  396. android:configChanges="fontScale"
  397. android:screenOrientation="portrait"
  398. android:theme="@style/NTLES_Dialog1"
  399. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  400. <activity
  401. android:name="com.ntels.kneet.v2.view.rules.Rules_Triggers_Select"
  402. android:configChanges="fontScale"
  403. android:screenOrientation="portrait"
  404. android:theme="@style/NTLES_Dialog1"
  405. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  406. <activity
  407. android:name="com.ntels.kneet.v2.view.rules.Rules_Triggers_Time"
  408. android:configChanges="fontScale"
  409. android:screenOrientation="portrait"
  410. android:theme="@style/NTLES_Dialog1"
  411. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  412. <activity
  413. android:name="com.ntels.kneet.v2.view.rules.Rules_Triggers_Sun"
  414. android:configChanges="fontScale"
  415. android:screenOrientation="portrait"
  416. android:theme="@style/NTLES_Dialog1"
  417. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  418. <activity
  419. android:name="com.ntels.kneet.v2.view.rules.Rules_Triggers_Temp"
  420. android:configChanges="fontScale"
  421. android:screenOrientation="portrait"
  422. android:theme="@style/NTLES_Dialog1"
  423. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  424. <activity
  425. android:name="com.ntels.kneet.v2.view.rules.Rules_Temperature_Select"
  426. android:configChanges="fontScale"
  427. android:screenOrientation="portrait"
  428. android:theme="@style/NTLES_Dialog1"
  429. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  430. <activity
  431. android:name="com.ntels.kneet.v2.view.rules.Rules_Date_Select"
  432. android:configChanges="fontScale"
  433. android:screenOrientation="portrait"
  434. android:theme="@style/NTLES_Dialog1"
  435. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  436. <activity
  437. android:name="com.ntels.kneet.v2.view.rules.Rules_Multisensor_Select"
  438. android:configChanges="fontScale"
  439. android:screenOrientation="portrait"
  440. android:theme="@style/NTLES_Dialog1"
  441. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  442. <activity
  443. android:name="com.ntels.kneet.v2.view.rules.Rules_Things_Select"
  444. android:configChanges="fontScale"
  445. android:screenOrientation="portrait"
  446. android:theme="@style/NTLES_Dialog1"
  447. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  448. <activity
  449. android:name="com.ntels.kneet.v2.view.rules.Rules_Add_Sucess"
  450. android:configChanges="fontScale"
  451. android:screenOrientation="portrait"
  452. android:theme="@style/NTLES_Dialog1"
  453. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  454. <activity
  455. android:name="com.ntels.kneet.v2.view.things.Things_Name_Change"
  456. android:configChanges="fontScale"
  457. android:screenOrientation="portrait"
  458. android:theme="@style/NTLES_Dialog1"
  459. android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
  460. <!-- Include the AdActivity and InAppPurchaseActivity configChanges and themes. -->
  461. <activity
  462. android:name="com.google.android.gms.ads.AdActivity"
  463. android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
  464. android:theme="@android:style/Theme.Translucent" />
  465. <activity
  466. android:name="com.google.android.gms.ads.purchase.InAppPurchaseActivity"
  467. android:theme="@style/Theme.IAPTheme" />
  468. <activity
  469. android:name="com.google.android.gms.appinvite.PreviewActivity"
  470. android:exported="true"
  471. android:theme="@style/Theme.AppInvite.Preview" >
  472. <intent-filter>
  473. <action android:name="com.google.android.gms.appinvite.ACTION_PREVIEW" />
  474. <category android:name="android.intent.category.DEFAULT" />
  475. </intent-filter>
  476. </activity>
  477. <activity
  478. android:name="com.google.android.gms.auth.api.signin.internal.SignInHubActivity"
  479. android:excludeFromRecents="true"
  480. android:exported="false"
  481. android:theme="@android:style/Theme.Translucent.NoTitleBar" />
  482. <!--
  483. Service handling Google Sign-In user revocation. For apps that do not integrate with
  484. Google Sign-In, this service will never be started.
  485. -->
  486. <service
  487. android:name="com.google.android.gms.auth.api.signin.RevocationBoundService"
  488. android:exported="true"
  489. android:permission="com.google.android.gms.auth.api.signin.permission.REVOCATION_NOTIFICATION" />
  490. <provider
  491. android:name="com.google.android.gms.measurement.AppMeasurementContentProvider"
  492. android:authorities="com.ntels.kneet.v2.google_measurement_service"
  493. android:exported="false" />
  494. <receiver
  495. android:name="com.google.android.gms.measurement.AppMeasurementReceiver"
  496. android:enabled="true" >
  497. <intent-filter>
  498. <action android:name="com.google.android.gms.measurement.UPLOAD" />
  499. </intent-filter>
  500. </receiver>
  501. <service
  502. android:name="com.google.android.gms.measurement.AppMeasurementService"
  503. android:enabled="true"
  504. android:exported="false" />
  505. </application>
  506. </manifest>