forked from Acode-Foundation/Acode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
20 lines (14 loc) · 855 Bytes
/
Copy pathplugin.xml
File metadata and controls
20 lines (14 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="com.foxdebug.acode.rk.auth" version="1.0.0">
<name>Authentication</name>
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<feature name="Authenticator">
<param name="android-package" value="com.foxdebug.acode.rk.auth.Authenticator" />
</feature>
</config-file>
<framework src="androidx.security:security-crypto:1.1.0" />
<source-file src="src/android/Authenticator.java" target-dir="src/com/foxdebug/acode/rk/auth" />
<source-file src="src/android/EncryptedPreferenceManager.java" target-dir="src/com/foxdebug/acode/rk/auth" />
</platform>
</plugin>