itachi1706/AndroidHelperLib

View on GitHub
helperlib/src/main/AndroidManifest.xml

Summary

Maintainability
Test Coverage
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools">

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

    <!-- Remove UnusedAttribute warning when SDK version is 23 or higher -->
    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme"
        android:usesCleartextTraffic="false"
        tools:ignore="UnusedAttribute" />
</manifest>