forked from Liso-Vault/app
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
962ced7
commit ed6ac29
Showing
9 changed files
with
445 additions
and
439 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,40 @@ | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.liso.app" | ||
xmlns:tools="http://schemas.android.com/tools"> | ||
<!-- SERVICE --> | ||
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" /> | ||
<!-- STORAGE --> | ||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> | ||
<!-- SECURITY --> | ||
<uses-permission android:name="android.permission.USE_BIOMETRIC" /> | ||
<!-- BILLING --> | ||
<uses-permission android:name="com.android.vending.BILLING" /> | ||
<!-- INTERNET --> | ||
<uses-permission android:name="android.permission.INTERNET" /> | ||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | ||
|
||
<application android:label="@string/app_name" android:icon="@mipmap/ic_launcher" android:hasFragileUserData="true"> | ||
<activity android:name=".MainActivity" android:launchMode="singleTop" android:theme="@style/LaunchTheme" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" android:hardwareAccelerated="true" android:windowSoftInputMode="adjustResize" android:exported="true"> | ||
<meta-data android:name="io.flutter.embedding.android.NormalTheme" android:resource="@style/NormalTheme" /> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN"/> | ||
<category android:name="android.intent.category.LAUNCHER"/> | ||
</intent-filter> | ||
</activity> | ||
<!-- Flutter Local Notifications --> | ||
<service android:name="com.dexterous.flutterlocalnotifications.ForegroundService" android:exported="false" android:stopWithTask="false"/> | ||
<!-- Flutter Embedding --> | ||
<meta-data android:name="flutterEmbedding" android:value="2" /> | ||
<!-- Autofill Service --> | ||
<activity android:name=".AutofillActivity" android:launchMode="singleTop" android:theme="@style/LaunchTheme" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" android:hardwareAccelerated="true" android:windowSoftInputMode="adjustResize" android:exported="true"> | ||
<meta-data android:name="io.flutter.embedding.android.SplashScreenDrawable" android:resource="@drawable/launch_background" /> | ||
<meta-data android:name="io.flutter.embedding.android.NormalTheme" android:resource="@style/NormalTheme" /> | ||
<meta-data android:name="flutterEmbedding" android:value="2" /> | ||
</activity> | ||
|
||
<meta-data android:name="com.keevault.flutter_autofill_service.ACTIVITY_NAME" android:value="com.liso.app.AutofillActivity" /> | ||
<meta-data android:name="com.keevault.flutter_autofill_service.SAVE_ACTIVITY_NAME" android:value="com.liso.app.AutofillActivity" /> | ||
<meta-data android:name="com.keevault.flutter_autofill_service.service_short_name" android:value="Liso" /> | ||
<meta-data android:name="com.keevault.flutter_autofill_service.match_header_drawable_name" android:value="ic_notification" /> | ||
<!-- <meta-data android:name="com.keevault.flutter_autofill_service.select_another_entry_drawable_name" android:value="ic_notification" /> --> | ||
<meta-data android:name="com.keevault.flutter_autofill_service.select_another_entry" android:value="Pick again" /> | ||
|
||
<service android:name="com.keevault.flutter_autofill_service.FlutterAutofillService" tools:replace="label" android:label="Liso Password Manager"> | ||
<meta-data android:name="com.keevault.flutter_autofill_service.unlock_label" android:value="Autofill with Liso" /> | ||
<meta-data android:name="com.keevault.flutter_autofill_service.unlock_drawable_name" android:value="ic_notification" /> | ||
</service> | ||
</application> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.liso.app" xmlns:tools="http://schemas.android.com/tools"> | ||
<!-- SERVICE --> | ||
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" /> | ||
<!-- STORAGE --> | ||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> | ||
<!-- SECURITY --> | ||
<uses-permission android:name="android.permission.USE_BIOMETRIC" /> | ||
<!-- BILLING --> | ||
<uses-permission android:name="com.android.vending.BILLING" /> | ||
<!-- INTERNET --> | ||
<uses-permission android:name="android.permission.INTERNET" /> | ||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | ||
<application android:label="@string/app_name" android:icon="@mipmap/ic_launcher" android:hasFragileUserData="true"> | ||
<activity android:name=".MainActivity" android:launchMode="singleTop" android:theme="@style/LaunchTheme" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" android:hardwareAccelerated="true" android:windowSoftInputMode="adjustResize" android:exported="true"> | ||
<meta-data android:name="io.flutter.embedding.android.NormalTheme" android:resource="@style/NormalTheme" /> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
<category android:name="android.intent.category.LAUNCHER" /> | ||
</intent-filter> | ||
</activity> | ||
<!-- Flutter Embedding --> | ||
<meta-data android:name="flutterEmbedding" android:value="2" /> | ||
<!-- Autofill Service --> | ||
<activity android:name=".AutofillActivity" android:launchMode="singleTop" android:theme="@style/LaunchTheme" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" android:hardwareAccelerated="true" android:windowSoftInputMode="adjustResize" android:exported="true"> | ||
<meta-data android:name="io.flutter.embedding.android.SplashScreenDrawable" android:resource="@drawable/launch_background" /> | ||
<meta-data android:name="io.flutter.embedding.android.NormalTheme" android:resource="@style/NormalTheme" /> | ||
<meta-data android:name="flutterEmbedding" android:value="2" /> | ||
</activity> | ||
<meta-data android:name="com.keevault.flutter_autofill_service.ACTIVITY_NAME" android:value="com.liso.app.AutofillActivity" /> | ||
<meta-data android:name="com.keevault.flutter_autofill_service.SAVE_ACTIVITY_NAME" android:value="com.liso.app.AutofillActivity" /> | ||
<meta-data android:name="com.keevault.flutter_autofill_service.service_short_name" android:value="Liso" /> | ||
<meta-data android:name="com.keevault.flutter_autofill_service.match_header_drawable_name" android:value="ic_notification" /> | ||
<!-- <meta-data android:name="com.keevault.flutter_autofill_service.select_another_entry_drawable_name" android:value="ic_notification" /> --> | ||
<meta-data android:name="com.keevault.flutter_autofill_service.select_another_entry" android:value="Pick again" /> | ||
<service android:name="com.keevault.flutter_autofill_service.FlutterAutofillService" tools:replace="label" android:label="Liso Password Manager"> | ||
<meta-data android:name="com.keevault.flutter_autofill_service.unlock_label" android:value="Autofill with Liso" /> | ||
<meta-data android:name="com.keevault.flutter_autofill_service.unlock_drawable_name" android:value="ic_notification" /> | ||
</service> | ||
</application> | ||
</manifest> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters