|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="gr.thmmy.mthmmy"
|
|
|
|
android:installLocation="auto">
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" />
|
|
|
|
|
|
|
|
<application
|
|
|
|
android:name=".base.BaseApplication"
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:hardwareAccelerated="true"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:supportsRtl="true"
|
|
|
|
android:theme="@style/AppTheme">
|
|
|
|
<activity
|
|
|
|
android:name=".activities.main.MainActivity"
|
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
<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="thmmy.gr"
|
|
|
|
android:scheme="http" />
|
|
|
|
<data
|
|
|
|
android:host="www.thmmy.gr"
|
|
|
|
android:scheme="http" />
|
|
|
|
|
|
|
|
<data
|
|
|
|
android:host="www.thmmy.gr"
|
|
|
|
android:scheme="https" />
|
|
|
|
|
|
|
|
<data
|
|
|
|
android:host="thmmy.gr"
|
|
|
|
android:scheme="https" />
|
|
|
|
|
|
|
|
<data android:host="thmmy.gr" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activities.LoginActivity"
|
|
|
|
android:configChanges="orientation|screenSize|keyboardHidden"
|
|
|
|
android:launchMode="singleTop"
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
<activity
|
|
|
|
android:name=".activities.AboutActivity"
|
|
|
|
android:launchMode="singleTop"
|
|
|
|
android:parentActivityName=".activities.main.MainActivity"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".activities.main.MainActivity" />
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activities.topic.TopicActivity"
|
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:parentActivityName=".activities.main.MainActivity"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".activities.main.MainActivity" />
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activities.profile.ProfileActivity"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
|
|
|
<activity
|
|
|
|
android:name=".activities.board.BoardActivity"
|
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:parentActivityName=".activities.main.MainActivity"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".activities.main.MainActivity" />
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activities.downloads.DownloadsActivity"
|
|
|
|
android:parentActivityName=".activities.main.MainActivity"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".activities.main.MainActivity" />
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activities.BookmarkActivity"
|
|
|
|
android:parentActivityName=".activities.main.MainActivity"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".activities.main.MainActivity" />
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
<provider
|
|
|
|
android:name="android.support.v4.content.FileProvider"
|
|
|
|
android:authorities="${applicationId}.provider"
|
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
android:resource="@xml/provider_paths" />
|
|
|
|
</provider>
|
|
|
|
|
|
|
|
<service
|
|
|
|
android:name=".services.DownloadService"
|
|
|
|
android:exported="false" />
|
|
|
|
<service
|
|
|
|
android:name=".services.FirebaseService"
|
|
|
|
android:exported="false">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.google.firebase.MESSAGING_EVENT"/>
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
|
|
|
|
|
|
|
<receiver
|
|
|
|
android:name=".receiver.Receiver"
|
|
|
|
android:enabled="true"
|
|
|
|
android:exported="false">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.media.action.ACTION_DOWNLOAD" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|