AndroidManifest.xml 1.92 KB
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="warp.ly.android_sdk">

    <uses-permission android:name="android.permission.INTERNET" />

    <!--  Restrict Tablets  -->
    <!--    <supports-screens-->
    <!--        android:largeScreens="true"-->
    <!--        android:normalScreens="true"-->
    <!--        android:smallScreens="true"-->
    <!--        android:xlargeScreens="false" />-->

    <application
        android:name="warp.ly.android_sdk.WarplyAndroidSDKApplication"
        android:allowBackup="false"
        android:exported="true"
        android:extractNativeLibs="true"
        android:fullBackupContent="false"
        android:hardwareAccelerated="true"
        android:icon="@drawable/ic_notification_logo"
        android:installLocation="internalOnly"
        android:label="@string/app_name"
        android:largeHeap="true"
        android:theme="@style/AppTheme">

        <activity
            android:name="warp.ly.android_sdk.activities.SplashActivity"
            android:exported="true"
            android:label="@string/app_name"
            android:screenOrientation="portrait">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

        <activity
            android:name="warp.ly.android_sdk.activities.MainActivity"
            android:exported="false"
            android:label="@string/title_activity_main"
            android:screenOrientation="portrait" />


    </application>

    <!-- For Huawei Push, only if we targetSdkVersion 30, comment if we are in Google build -->
    <!--    <queries>-->
    <!--        <intent>-->
    <!--            <action android:name="com.huawei.hms.core.aidlservice" />-->
    <!--        </intent>-->
    <!--    </queries>-->
</manifest>