12345678910111213141516171819202122232425262728293031 |
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- package="com.aliyun.svideo.snap.crop" >
- <uses-sdk
- android:minSdkVersion="21"
- android:targetSdkVersion="29" />
- <application>
- <activity
- android:name="com.aliyun.svideo.snap.crop.SnapMediaActivity"
- android:screenOrientation="portrait"
- android:theme="@style/AliyunVideoUIStytle"
- tools:replace="android:theme" >
- </activity>
- <activity
- android:name="com.aliyun.svideo.snap.crop.AliyunVideoCropActivity"
- android:screenOrientation="portrait"
- android:theme="@style/AliyunVideoUIStytle"
- tools:replace="android:theme" >
- </activity>
- <activity
- android:name="com.aliyun.svideo.snap.crop.AliyunImageCropActivity"
- android:screenOrientation="portrait"
- android:theme="@style/AliyunVideoUIStytle"
- tools:replace="android:theme" >
- </activity>
- </application>
- </manifest>
|