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:windowSoftInputMode="adjustPan"> 18 <intent-filter> 19 <action android:name="android.intent.action.MAIN" /> 20 <category android:name="android.intent.category.LAUNCHER" /> 21 </intent-filter> 22 </activity> 23 <provider 24 android:name="androidx.core.content.FileProvider" 25 android:authorities="${applicationId}.fileprovider" 26 android:exported="false" 27 android:grantUriPermissions="true"> 28 <meta-data 29 android:name="android.support.FILE_PROVIDER_PATHS" 30 android:resource="@xml/file_paths" /> 31 </provider> 32 </application> 33 34</manifest>