AndroidManifest.xml 1.86 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="@mipmap/ic_launcher"
        android:installLocation="internalOnly"
        android:label="@string/app_name"
        android:largeHeap="true"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:theme="@style/AppTheme">
        <meta-data
            android:name="com.google.android.geo.API_KEY"
            android:value="@string/google_maps_key" />

        <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>
    </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>