• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

EasyPlex - Movies - Live Streaming - TV Series, Anime

EasyPlex - Movies - Live Streaming - TV Series, Anime 2.2

No permission to download
Code:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    package="com.paranormalia">

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.WAKE_LOCK" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
        tools:ignore="ScopedStorage" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
    <uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" />
    <uses-permission android:name="android.permission.EXPAND_STATUS_BAR" />
    <uses-permission android:name="android.permission.READ_PHONE_STATE" />
    <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />


    <application
        android:name="com.paranormalia.EasyPlexApp"
        android:fullBackupContent="true"
        tools:replace="android:fullBackupContent"
        android:fullBackupOnly="true"
        android:hardwareAccelerated="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme"
        android:usesCleartextTraffic="true"
        android:installLocation="preferExternal"
        tools:targetApi="q">

        <provider
            android:name="androidx.core.content.FileProvider"
            android:authorities="${applicationId}.fileProvider"
            android:exported="false"
            android:grantUriPermissions="true">
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/provider_paths"/>
        </provider>


        <meta-data
            android:name="com.google.android.gms.ads.APPLICATION_ID"
            android:value=""/>



        <meta-data
            android:name="com.startapp.sdk.APPLICATION_ID"
            android:value="201975314" />

        <meta-data
            android:name="com.startapp.sdk.RETURN_ADS_ENABLED"
            android:value="false" />


        <activity
            android:name="com.paranormalia.ui.base.BaseActivity"
            android:configChanges="orientation|screenSize|keyboardHidden"
            android:hardwareAccelerated="true"
            android:screenOrientation="portrait"
            android:windowSoftInputMode="stateAlwaysHidden|adjustPan"
            android:supportsPictureInPicture="true"
            android:theme="@style/AppTheme" />

        <activity
            android:name="com.paranormalia.ui.splash.SplashActivity"
            android:theme="@style/SplashTheme">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>


        <activity
            android:name="com.paranormalia.ui.player.cast.ExpandedControlsActivity"
            android:label="@string/app_name"
            android:launchMode="singleTask"
            android:persistent="true"
            android:theme="@style/Theme.CastVideosDark"
            android:screenOrientation="portrait">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
            </intent-filter>
            <meta-data
                android:name="android.support.PARENT_ACTIVITY"
                android:value="com.paranormalia.ui.player.activities.EasyPlexMainPlayer"/>
        </activity>


        <service
            android:name="com.paranormalia.ui.notifications.NotificationManager"
            android:enabled="true"
            android:exported="false">
            <intent-filter>
                <action android:name="com.google.firebase.MESSAGING_EVENT" />
            </intent-filter>
        </service>




        <meta-data
            android:name="com.google.android.gms.cast.framework.OPTIONS_PROVIDER_CLASS_NAME"
            android:value="com.paranormalia.ui.player.cast.CastOptionsProvider" />



        <!-- Set custom default icon. This is used when no icon is set for incoming notification messages.
     See README(https://goo.gl/l4GJaQ) for more. -->
        <meta-data
            android:name="com.google.firebase.messaging.default_notification_icon"
            android:resource="@drawable/notification_smal_size" />
        <!-- Set color used with incoming notification messages. This is used when no color is set for the incoming
             notification message. See README(https://goo.gl/6BKBk7) for more. -->
        <meta-data
            android:name="com.google.firebase.messaging.default_notification_color"
            android:resource="@color/colorAccent" />


        <meta-data
            android:name="com.google.android.gms.ads.AD_MANAGER_APP"
            android:value="true" />



        <activity
            android:name="com.paranormalia.ui.payment.PaymentDetails"
            android:screenOrientation="portrait" />

        <activity
            android:name="com.paranormalia.ui.login.LoginActivity"
            android:screenOrientation="portrait" />

        <activity
            android:name="com.paranormalia.ui.register.RegisterActivity"
            android:screenOrientation="portrait" />


        <activity
            android:name="com.paranormalia.ui.settings.SettingsActivity"
            android:screenOrientation="portrait" />




        <activity
            android:name="com.paranormalia.ui.moviedetails.MovieDetailsActivity"
            android:parentActivityName="com.paranormalia.ui.base.BaseActivity"
            android:screenOrientation="portrait">
            <intent-filter>
                <action android:name="MOVIE" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>



        <activity
            android:name="com.paranormalia.ui.seriedetails.SerieDetailsActivity"
            android:parentActivityName="com.paranormalia.ui.base.BaseActivity"
            android:configChanges="keyboard|keyboardHidden|orientation|screenSize|screenLayout|smallestScreenSize|uiMode"
            android:launchMode="singleTop"
            android:screenOrientation="portrait" />


        <activity
            android:name="com.paranormalia.ui.animes.AnimeDetailsActivity"
            android:parentActivityName="com.paranormalia.ui.base.BaseActivity"
            android:configChanges="keyboard|keyboardHidden|orientation|screenSize|screenLayout|smallestScreenSize|uiMode"
            android:launchMode="singleTop"
            android:screenOrientation="portrait" />



        <activity
            android:name="com.paranormalia.ui.player.activities.EasyPlexMainPlayer"
            android:launchMode="singleTop"
            android:screenOrientation="landscape"
            android:theme="@style/TubiPlayerTheme"
            android:supportsPictureInPicture="true"/>



        <activity
            android:name="com.paranormalia.ui.register.RegistrationSucess"
            android:screenOrientation="portrait" />

        <activity
            android:name="com.paranormalia.ui.trailer.TrailerPreviewActivity"
            android:screenOrientation="portrait" />

        <activity
            android:name="com.paranormalia.ui.upcoming.UpcomingTitlesActivity"
            android:screenOrientation="portrait" />
        <activity android:name="com.paranormalia.ui.player.activities.EasyPlexPlayerActivity"
            android:theme="@style/TubiPlayerTheme"

            />


        <activity
            android:name="com.paranormalia.ui.player.cast.settings.CastPreference"
            android:theme="@style/Theme.AppCompat"
            android:label="@string/action_settings">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
            </intent-filter>
        </activity>


        <activity
            android:name="com.paranormalia.ui.player.cast.queue.ui.QueueListViewActivity"
            android:label="@string/queue_list"
            android:screenOrientation="portrait">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
            </intent-filter>
        </activity>


        <activity android:name="com.paranormalia.ui.profile.EditProfileActivity"
            android:screenOrientation="portrait" />
        <activity android:name="com.paranormalia.ui.download.DownloadList" />
        <activity android:name="com.paranormalia.ui.payment.Payment"
            android:screenOrientation="portrait"
            />


        <activity android:name="com.paranormalia.ui.payment.PaymentPaypal"
            android:screenOrientation="portrait"
            />


        <activity android:name="com.paranormalia.ui.payment.PaymentStripe"
            android:screenOrientation="portrait"
            />


        <activity
            android:name="com.paranormalia.ui.player.activities.EmbedActivity"
            android:configChanges="orientation|screenSize"

            />

    </application>

</manifest>

i already done it bro !!
I can't install adminpanel
 
easyplex 1.4 working good for me, & I also tried easyplex 1.5 connecting 1.4 admin panel...only anime working other movie, series and streaming not connecting... Everything showing in app but not working....easyplex 1.5...if any one have easyplex 1.5 admin panel share me...
share script plz
 
Never try to null the Easyplex, never try to find the Easyplex nulled version, never waste your time. There is only one option for Easyplex, buy from codecanyon. Take this advice :)
Thanks for advise . I already used nulled version 1.5 almost 2 months and worked fine with me 😉😉😉😉. If you are the developer , I hope you fix your attitude to respond to potential buyers 🙂🙂🙂.

Don't ask me for 1.5 nulled version files as i deleted them and don't have backup .
 
Thanks for advise . I already used nulled version 1.5 almost 2 months and worked fine with me 😉😉😉😉. If you are the developer , I hope you fix your attitude to respond to potential buyers 🙂🙂🙂.

Don't ask me for 1.5 nulled version files as i deleted them and don't have backup .
Nice jokes :ROFLMAO::ROFLMAO::ROFLMAO:
 
  • Like
Reactions: AMWolfstein
Hello, when I log in to the admin panel I only see the menu and I cannot insert any movies etc. Can you help me please?

Adsız.png
 
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock