21 lines
791 B
XML
21 lines
791 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
package="bou.amine.apps.readerforselfossv2.android">
|
||
|
|
||
|
<uses-permission android:name="android.permission.INTERNET" />
|
||
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||
|
|
||
|
<application
|
||
|
android:allowBackup="false"
|
||
|
android:supportsRtl="true"
|
||
|
android:theme="@style/AppTheme">
|
||
|
<activity
|
||
|
android:name=".MainActivity"
|
||
|
android:exported="true">
|
||
|
<intent-filter>
|
||
|
<action android:name="android.intent.action.MAIN" />
|
||
|
<category android:name="android.intent.category.LAUNCHER" />
|
||
|
</intent-filter>
|
||
|
</activity>
|
||
|
</application>
|
||
|
</manifest>
|