AndroidManifest.xml 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. package="com.aliyun.svideo.snap.crop" >
  5. <uses-sdk
  6. android:minSdkVersion="21"
  7. android:targetSdkVersion="29" />
  8. <application>
  9. <activity
  10. android:name="com.aliyun.svideo.snap.crop.SnapMediaActivity"
  11. android:screenOrientation="portrait"
  12. android:theme="@style/AliyunVideoUIStytle"
  13. tools:replace="android:theme" >
  14. </activity>
  15. <activity
  16. android:name="com.aliyun.svideo.snap.crop.AliyunVideoCropActivity"
  17. android:screenOrientation="portrait"
  18. android:theme="@style/AliyunVideoUIStytle"
  19. tools:replace="android:theme" >
  20. </activity>
  21. <activity
  22. android:name="com.aliyun.svideo.snap.crop.AliyunImageCropActivity"
  23. android:screenOrientation="portrait"
  24. android:theme="@style/AliyunVideoUIStytle"
  25. tools:replace="android:theme" >
  26. </activity>
  27. </application>
  28. </manifest>