You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
3.0 KiB
80 lines
3.0 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:sharedUserId="android.uid.system"
|
|
package="com.android.rockchip.camera2">
|
|
|
|
<uses-sdk android:minSdkVersion="19"
|
|
android:targetSdkVersion="28"/>
|
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<!-- Screen Capturing -->
|
|
<uses-permission android:name="android.permission.MANAGE_MEDIA_PROJECTION" />
|
|
|
|
<!-- Screen Recording -->
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
|
<uses-permission android:name="android.permission.CAPTURE_AUDIO_OUTPUT"/>
|
|
<uses-permission android:name="android.permission.CAPTURE_VIDEO_OUTPUT"/>
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/BaseTheme">
|
|
<activity
|
|
android:exported="true"
|
|
android:name=".RockchipCamera2">
|
|
<!-- <intent-filter>-->
|
|
<!-- <action android:name="android.intent.action.MAIN" />-->
|
|
|
|
<!-- <category android:name="android.intent.category.LAUNCHER" />-->
|
|
<!-- </intent-filter>-->
|
|
</activity>
|
|
|
|
<activity
|
|
android:name=".activity.WelcomeActivity"
|
|
android:configChanges="keyboard|keyboardHidden|screenSize|smallestScreenSize|screenLayout|orientation"
|
|
android:exported="true"
|
|
android:launchMode="singleTask"
|
|
android:screenOrientation="unspecified"
|
|
android:supportsPictureInPicture="false">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity
|
|
android:name=".activity.MainActivity"
|
|
android:configChanges="keyboard|keyboardHidden|screenSize|smallestScreenSize|screenLayout|orientation"
|
|
android:exported="true"
|
|
android:launchMode="singleTask"
|
|
android:resizeableActivity="true"
|
|
android:screenOrientation="unspecified"
|
|
android:supportsPictureInPicture="true"/>
|
|
|
|
<service
|
|
android:exported="true"
|
|
android:name=".ScreenRecordService"
|
|
android:foregroundServiceType="mediaProjection"/>
|
|
|
|
<service
|
|
android:exported="true"
|
|
android:name=".HdmiService">
|
|
<intent-filter>
|
|
<action android:name="com.android.rockchip.camera2.HdmiService" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</service>
|
|
</application>
|
|
|
|
</manifest>
|