| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.modular.apputils">
- <application
- android:allowBackup="true"
- android:label="@string/app_name"
- android:supportsRtl="true">
- <activity
- android:name=".activity.SingleImagePreviewActivity"
- android:screenOrientation="portrait">
- <intent-filter>
- <action android:name="com.modular.tool.SingleImagePreviewActivity" />
- <category android:name="android.intent.category.DEFAULT" />
- </intent-filter>
- </activity>
- <activity
- android:name=".activity.SelectNetAcitivty"
- android:label="搜索字段" />
- <!-- alipay sdk begin -->
- <activity
- android:name="com.alipay.sdk.app.H5PayActivity"
- android:configChanges="orientation|keyboardHidden|navigation|screenSize"
- android:exported="false"
- android:screenOrientation="behind"
- android:windowSoftInputMode="adjustResize|stateHidden" />
- <activity
- android:name="com.alipay.sdk.app.H5AuthActivity"
- android:configChanges="orientation|keyboardHidden|navigation"
- android:exported="false"
- android:screenOrientation="behind"
- android:windowSoftInputMode="adjustResize|stateHidden" />
- <!-- alipay sdk end -->
- <activity android:name=".activity.SimpleWebActivity">
- <intent-filter>
- <action android:name="com.modular.apputils.activity.SimpleWebActivity" />
- <category android:name="android.intent.category.DEFAULT" />
- </intent-filter>
- </activity>
- <activity android:name=".IntentUrlActivity">
- <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="usoftchina.com"
- android:scheme="app"></data>
- </intent-filter>
- </activity>
- <activity android:name=".activity.PDFViewActivity"
- android:label="PDF预览"/>
- </application>
- </manifest>
|