171 lines
7.0 KiB
XML
171 lines
7.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
|
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="29" />
|
|
|
|
<uses-feature
|
|
android:name="android.hardware.camera.any"
|
|
android:required="false" />
|
|
<uses-feature
|
|
android:name="android.hardware.camera"
|
|
android:required="false" />
|
|
<uses-feature
|
|
android:name="android.hardware.camera.autofocus"
|
|
android:required="false" />
|
|
|
|
<application
|
|
android:name=".utils.PixelDroidApplication"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/BaseAppTheme">
|
|
<service
|
|
android:name="androidx.appcompat.app.AppLocalesMetadataHolderService"
|
|
android:enabled="false"
|
|
android:exported="false">
|
|
<meta-data
|
|
android:name="autoStoreLocales"
|
|
android:value="true" />
|
|
</service>
|
|
|
|
<activity
|
|
android:name=".posts.AlbumActivity"
|
|
android:exported="false"
|
|
android:theme="@style/TransparentAlbumActivity"/>
|
|
<activity
|
|
android:name=".profile.EditProfileActivity"
|
|
android:exported="false"
|
|
android:theme="@style/BaseAppTheme" />
|
|
|
|
<activity
|
|
android:name=".posts.MediaViewerActivity"
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
android:exported="false"
|
|
android:theme="@style/BaseAppTheme" />
|
|
<activity android:name=".postCreation.camera.CameraActivity"
|
|
android:theme="@style/BaseAppTheme"/>
|
|
<activity
|
|
android:name=".posts.ReportActivity"
|
|
android:screenOrientation="sensorPortrait"
|
|
android:theme="@style/BaseAppTheme"
|
|
tools:ignore="LockedOrientationActivity" />
|
|
|
|
<activity
|
|
android:name=".stories.StoriesActivity" />
|
|
<activity
|
|
android:name=".postCreation.PostCreationActivity"
|
|
android:exported="true"
|
|
android:windowSoftInputMode="adjustResize"
|
|
android:theme="@style/BaseAppTheme">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.SEND_MULTIPLE" />
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="image/*" />
|
|
<data android:mimeType="video/*" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name=".profile.FollowsActivity"
|
|
android:theme="@style/BaseAppTheme"
|
|
android:screenOrientation="sensorPortrait"
|
|
tools:ignore="LockedOrientationActivity" />
|
|
<activity
|
|
android:name=".posts.feeds.uncachedFeeds.hashtags.HashTagActivity"
|
|
android:theme="@style/BaseAppTheme"
|
|
android:screenOrientation="sensorPortrait"
|
|
tools:ignore="LockedOrientationActivity" />
|
|
<activity
|
|
android:name=".posts.PostActivity"
|
|
android:screenOrientation="sensorPortrait"
|
|
tools:ignore="LockedOrientationActivity"
|
|
android:theme="@style/BaseAppTheme" />
|
|
|
|
<activity
|
|
android:name=".profile.ProfileActivity"
|
|
android:screenOrientation="sensorPortrait"
|
|
tools:ignore="LockedOrientationActivity"
|
|
android:theme="@style/BaseAppTheme"/>
|
|
<activity android:name=".profile.CollectionActivity"
|
|
android:theme="@style/BaseAppTheme"/>
|
|
<activity
|
|
android:name=".settings.SettingsActivity"
|
|
android:label="@string/title_activity_settings2"
|
|
android:parentActivityName=".MainActivity"
|
|
android:theme="@style/BaseAppTheme" />
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:exported="true"
|
|
android:theme="@style/Theme.App.Starting"
|
|
android:screenOrientation="sensorPortrait"
|
|
android:windowSoftInputMode="adjustPan"
|
|
tools:ignore="LockedOrientationActivity">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
android:name="android.app.default_searchable"
|
|
android:value="org.pixeldroid.app.searchDiscover.SearchActivity" />
|
|
<meta-data android:name="android.app.shortcuts"
|
|
android:resource="@xml/shortcuts" />
|
|
</activity>
|
|
<activity
|
|
android:name=".LoginActivity"
|
|
android:exported="true"
|
|
android:screenOrientation="sensorPortrait"
|
|
android:theme="@style/BaseAppTheme"
|
|
android:windowSoftInputMode="adjustResize"
|
|
tools:ignore="LockedOrientationActivity">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<data
|
|
android:host="${applicationId}"
|
|
android:scheme="@string/auth_scheme" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name=".searchDiscover.SearchActivity"
|
|
android:exported="true"
|
|
android:theme="@style/BaseAppTheme"
|
|
android:launchMode="singleTop"
|
|
android:screenOrientation="sensorPortrait"
|
|
tools:ignore="LockedOrientationActivity">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.SEARCH" />
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
android:name="android.app.searchable"
|
|
android:resource="@xml/searchable" />
|
|
</activity>
|
|
<activity android:name=".searchDiscover.TrendingActivity"
|
|
android:theme="@style/BaseAppTheme" />
|
|
|
|
<provider
|
|
android:name="androidx.core.content.FileProvider"
|
|
android:authorities="${applicationId}.fileprovider"
|
|
android:exported="false"
|
|
android:grantUriPermissions="true">
|
|
<meta-data
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
android:resource="@xml/file_paths" />
|
|
</provider>
|
|
</application>
|
|
|
|
</manifest> |