AndroidManifest.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. package="me.vadik.knigopis">
  6. <uses-permission android:name="android.permission.INTERNET"/>
  7. <uses-permission android:name="android.permission.READ_PHONE_STATE"/>
  8. <application
  9. android:name=".App"
  10. android:allowBackup="false"
  11. android:icon="@mipmap/ic_launcher"
  12. android:label="@string/common.title.app"
  13. android:roundIcon="@mipmap/ic_launcher_round"
  14. android:supportsRtl="true"
  15. android:theme="@style/AppTheme"
  16. tools:ignore="GoogleAppIndexingWarning"
  17. tools:replace="allowBackup,label">
  18. <activity
  19. android:name=".MainActivity"
  20. android:label="@string/common.title.app"
  21. android:launchMode="singleTop">
  22. <intent-filter>
  23. <action android:name="android.intent.action.MAIN"/>
  24. <category android:name="android.intent.category.LAUNCHER"/>
  25. </intent-filter>
  26. <intent-filter>
  27. <action android:name="android.intent.action.VIEW" />
  28. <category android:name="android.intent.category.DEFAULT" />
  29. <category android:name="android.intent.category.BROWSABLE" />
  30. <data
  31. android:host="www.knigopis.com"
  32. android:scheme="http" />
  33. </intent-filter>
  34. </activity>
  35. <activity android:name=".BookActivity"/>
  36. <activity
  37. android:name=".user.UserActivity"
  38. android:parentActivityName=".MainActivity"/>
  39. <activity
  40. android:name=".profile.ProfileActivity"
  41. android:screenOrientation="portrait"
  42. android:theme="@style/ProfileAppTheme" />
  43. <activity
  44. android:name="ru.ulogin.sdk.UloginAuthActivity"
  45. android:configChanges="orientation|screenSize"/>
  46. </application>
  47. </manifest>