25 lines
919 B
XML
25 lines
919 B
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.bifan.txtreaderlib">
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:label="@string/app_name"
|
|
android:supportsRtl="true">
|
|
<activity android:name=".ui.ChatWithGptActivity"></activity>
|
|
<activity
|
|
android:name="com.bifan.txtreaderlib.ui.HwTxtPlayActivity"
|
|
android:theme="@style/HwTxtFullScreen">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<data android:mimeType="text/plain" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
|
|
|
|
</manifest>
|