Advertisement
Guest User

Untitled

a guest
Aug 9th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.70 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2.  
  3. <uses-permission android:name="android.permission.READ_CALENDAR" />
  4. <uses-permission android:name="android.permission.WRITE_CALENDAR" />
  5. <uses-permission android:name="com.android.alarm.permission.SET_ALARM" />
  6.  
  7. <supports-screens
  8. android:largeScreens="true"
  9. android:normalScreens="true"
  10. android:requiresSmallestWidthDp="320"
  11. android:smallScreens="false"
  12. android:xlargeScreens="true" />
  13.  
  14. <application
  15. android:name=".CustomApplication"
  16. android:allowBackup="true"
  17. android:icon="@mipmap/ic_launcher"
  18. android:label="@string/app_name"
  19. android:roundIcon="@mipmap/ic_launcher_round"
  20. android:supportsRtl="true"
  21. android:theme="@style/AppTheme">
  22. <activity
  23. android:name=".Fazer_media.Final"
  24. android:screenOrientation="portrait" />
  25. <activity
  26. android:name=".Fazer_media.Automatico"
  27. android:screenOrientation="portrait" />
  28. <activity
  29. android:name=".Fazer_media.Automatico2"
  30. android:screenOrientation="portrait"
  31. android:windowSoftInputMode="adjustPan" />
  32. <activity
  33. android:name=".Testes"
  34. android:label="Your Study Life Companion"
  35. android:screenOrientation="portrait"
  36. android:theme="@style/AppTheme.NoActionBar"
  37. android:windowSoftInputMode="adjustPan">
  38. <intent-filter>
  39. <action android:name="android.intent.action.MAIN" />
  40.  
  41. <category android:name="android.intent.category.LAUNCHER" />
  42. </intent-filter>
  43. </activity>
  44. <activity
  45. android:name=".TesteInfoDisplay"
  46. android:screenOrientation="portrait" />
  47. <activity
  48. android:name=".TestList"
  49. android:screenOrientation="portrait" />
  50. <activity
  51. android:name=".Begining.Intro"
  52. android:screenOrientation="portrait"
  53. android:theme="@style/Theme.AppCompat.NoActionBar" />
  54. <activity
  55. android:name=".Begining.ChoseEnsino"
  56. android:screenOrientation="portrait"
  57. android:theme="@style/Theme.AppCompat.NoActionBar" />
  58. <activity
  59. android:name=".Begining.ChoseSecundarioDisciplinas"
  60. android:screenOrientation="portrait"
  61. android:theme="@style/Theme.AppCompat.NoActionBar" />
  62. <activity
  63. android:name=".Begining.ChoseDisciplinas2"
  64. android:screenOrientation="portrait"
  65. android:theme="@style/Theme.AppCompat.NoActionBar" />
  66. <activity
  67. android:name=".Begining.Prof_Univ"
  68. android:screenOrientation="portrait"
  69. android:theme="@style/Theme.AppCompat.NoActionBar"
  70. android:windowSoftInputMode="adjustPan" />
  71. <activity
  72. android:name=".Begining.Disciplina_row"
  73. android:screenOrientation="portrait"></activity>
  74. </application>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement