1*fa44fe6aSInna Palant<!-- 2*fa44fe6aSInna Palant ~ Copyright 2021 The Android Open Source Project 3*fa44fe6aSInna Palant ~ 4*fa44fe6aSInna Palant ~ Licensed under the Apache License, Version 2.0 (the "License"); 5*fa44fe6aSInna Palant ~ you may not use this file except in compliance with the License. 6*fa44fe6aSInna Palant ~ You may obtain a copy of the License at 7*fa44fe6aSInna Palant ~ 8*fa44fe6aSInna Palant ~ https://www.apache.org/licenses/LICENSE-2.0 9*fa44fe6aSInna Palant ~ 10*fa44fe6aSInna Palant ~ Unless required by applicable law or agreed to in writing, software 11*fa44fe6aSInna Palant ~ distributed under the License is distributed on an "AS IS" BASIS, 12*fa44fe6aSInna Palant ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13*fa44fe6aSInna Palant ~ See the License for the specific language governing permissions and 14*fa44fe6aSInna Palant ~ limitations under the License. 15*fa44fe6aSInna Palant --> 16*fa44fe6aSInna Palant 17*fa44fe6aSInna Palant<manifest xmlns:android="http://schemas.android.com/apk/res/android"> 18*fa44fe6aSInna Palant 19*fa44fe6aSInna Palant <uses-permission android:name="android.permission.CAMERA" /> 20*fa44fe6aSInna Palant <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> 21*fa44fe6aSInna Palant 22*fa44fe6aSInna Palant <application> 23*fa44fe6aSInna Palant <activity 24*fa44fe6aSInna Palant android:name="com.google.accompanist.permissions.test.PermissionsTestActivity" 25*fa44fe6aSInna Palant android:exported="true" 26*fa44fe6aSInna Palant android:theme="@android:style/Theme.Material.NoActionBar" /> 27*fa44fe6aSInna Palant <activity 28*fa44fe6aSInna Palant android:name="com.google.accompanist.permissions.test.EmptyPermissionsTestActivity" 29*fa44fe6aSInna Palant android:exported="true" 30*fa44fe6aSInna Palant android:theme="@android:style/Theme.Material.NoActionBar" /> 31*fa44fe6aSInna Palant </application> 32*fa44fe6aSInna Palant 33*fa44fe6aSInna Palant</manifest> 34