|
| 1 | +<!-- ******************************************************************************* |
| 2 | +# The MIT License (MIT) |
| 3 | +# |
| 4 | +# Copyright (c) 2019 vk.com |
| 5 | +# |
| 6 | +# Permission is hereby granted, free of charge, to any person obtaining a copy |
| 7 | +# of this software and associated documentation files (the "Software"), to deal |
| 8 | +# in the Software without restriction, including without limitation the rights |
| 9 | +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 10 | +# copies of the Software, and to permit persons to whom the Software is |
| 11 | +# furnished to do so, subject to the following conditions: |
| 12 | +# |
| 13 | +# The above copyright notice and this permission notice shall be included in all |
| 14 | +# copies or substantial portions of the Software. |
| 15 | +# |
| 16 | +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 17 | +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 18 | +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 19 | +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 20 | +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 21 | +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 22 | +# SOFTWARE. |
| 23 | +# ****************************************************************************** --> |
| 24 | + |
| 25 | +<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 26 | + package="com.vk.sdk.sample"> |
| 27 | + <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> |
| 28 | + |
| 29 | + <application |
| 30 | + android:name=".SampleApplication" |
| 31 | + android:allowBackup="false" |
| 32 | + android:label="@string/app_name" |
| 33 | + android:icon="@mipmap/ic_launcher_round" |
| 34 | + android:roundIcon="@mipmap/ic_launcher_round" |
| 35 | + android:supportsRtl="true" |
| 36 | + android:networkSecurityConfig="@xml/network_security_config" |
| 37 | + android:theme="@style/AppTheme" > |
| 38 | + <activity |
| 39 | + android:name=".WelcomeActivity" |
| 40 | + android:configChanges="keyboard|keyboardHidden|orientation|screenSize" |
| 41 | + android:label="@string/app_name" |
| 42 | + android:launchMode="singleInstance" |
| 43 | + android:windowSoftInputMode="adjustResize"> |
| 44 | + <intent-filter> |
| 45 | + <action android:name="android.intent.action.MAIN"/> |
| 46 | + |
| 47 | + <category android:name="android.intent.category.LAUNCHER"/> |
| 48 | + <category android:name="android.intent.category.MULTIWINDOW_LAUNCHER"/> |
| 49 | + </intent-filter> |
| 50 | + </activity> |
| 51 | + <activity |
| 52 | + android:name=".UserActivity" |
| 53 | + android:configChanges="keyboard|keyboardHidden|orientation|screenSize" |
| 54 | + android:label="@string/app_name" /> |
| 55 | + </application> |
| 56 | +</manifest> |
0 commit comments