explicitly remove the fingerprint permission

This commit is contained in:
tibbi 2017-11-06 17:52:53 +01:00
parent 3e327ac69f
commit 14f8716c5b
2 changed files with 9 additions and 4 deletions

View File

@ -1,9 +1,13 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<manifest <manifest
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.simplemobiletools.notes"> package="com.simplemobiletools.notes">
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission
android:name="android.permission.USE_FINGERPRINT"
tools:node="remove"/>
<application <application
android:name=".App" android:name=".App"
@ -34,9 +38,9 @@
</intent-filter> </intent-filter>
<intent-filter> <intent-filter>
<action android:name="android.intent.action.VIEW" /> <action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="text/plain" /> <data android:mimeType="text/plain"/>
</intent-filter> </intent-filter>
</activity> </activity>

View File

@ -16,10 +16,11 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:background="@null" android:background="@null"
android:freezesText="true"
android:gravity="top" android:gravity="top"
android:inputType="textCapSentences|textMultiLine" android:inputType="textCapSentences|textMultiLine"
android:padding="@dimen/activity_margin" android:padding="@dimen/activity_margin"
android:freezesText="true"
android:textCursorDrawable="@null"/> android:textCursorDrawable="@null"/>
</ScrollView> </ScrollView>
</RelativeLayout> </RelativeLayout>