react-native-touch-id-android
Version:
touchID for React Native (Android)
28 lines (23 loc) • 1.36 kB
text/xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="co.eleken.react_native_touch_id_android.test" >
<uses-sdk
android:minSdkVersion="16"
android:targetSdkVersion="25" />
<instrumentation
android:name="android.test.InstrumentationTestRunner"
android:functionalTest="false"
android:handleProfiling="false"
android:label="Tests for co.eleken.react_native_touch_id_android.test"
android:targetPackage="co.eleken.react_native_touch_id_android.test" />
<!-- Marshmallow fingerprint permission -->
<uses-permission android:name="android.permission.USE_FINGERPRINT" /> <!-- Samsung fingerprint permission, only required if you include the Spass module -->
<uses-permission android:name="com.samsung.android.providers.context.permission.WRITE_USE_APP_FEATURE_SURVEY" />
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
<android:uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<android:uses-permission android:name="android.permission.READ_PHONE_STATE" />
<android:uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<application>
<uses-library android:name="android.test.runner" />
</application>
</manifest>