This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

1<?xml version="1.0" encoding="utf-8"?> 2<manifest xmlns:android="http://schemas.android.com/apk/res/android"> 3 4 <uses-feature 5 android:name="android.hardware.camera" 6 android:required="false" /> 7 <uses-permission android:name="android.permission.CAMERA" /> 8 <application 9 android:icon="@mipmap/ic_launcher" 10 android:label="PoseDetection" 11 android:theme="@android:style/Theme.Material.NoActionBar"> 12 <activity 13 android:name=".AppActivity" 14 android:configChanges="orientation|screenSize|screenLayout|keyboardHidden" 15 android:exported="true" 16 android:launchMode="singleInstance" 17 android:screenOrientation="landscape" 18 android:windowSoftInputMode="adjustPan"> 19 <intent-filter> 20 <action android:name="android.intent.action.MAIN" /> 21 <category android:name="android.intent.category.LAUNCHER" /> 22 </intent-filter> 23 </activity> 24 <provider 25 android:name="androidx.core.content.FileProvider" 26 android:authorities="${applicationId}.fileprovider" 27 android:exported="false" 28 android:grantUriPermissions="true"> 29 <meta-data 30 android:name="android.support.FILE_PROVIDER_PATHS" 31 android:resource="@xml/file_paths" /> 32 </provider> 33 </application> 34 35</manifest>