-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathplugin.xml
44 lines (33 loc) · 1.69 KB
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?xml version='1.0' encoding='utf-8'?>
<plugin id="nostr-keystore-cordova-plugin"
version="1.5.6"
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<name>Nostr</name>
<author>Dzianis Monich</author>
<description>
Cordova plugin for Nostr key storage and management.
</description>
<license>MIT</license>
<keywords>ecosystem:cordova, mobile, android, nostr, keystore</keywords>
<js-module name="NostrKeyStore" src="www/nostr.js">
<clobbers target="cordova.plugins.NostrKeyStore" />
</js-module>
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<preference name="GradlePluginKotlinEnabled" value="true" />
<feature name="NostrKeyStore">
<param name="android-package" value="com.nostr.band.keyStore.Nostr" />
</feature>
</config-file>
<config-file parent="/*" target="AndroidManifest.xml" />
<source-file src="src/android/Nostr.java" target-dir="src/com/nostr/band/keyStore" />
<source-file src="src/android/KeyStorageUtil.kt" target-dir="java/com/nostr/band/keyStore/" />
<source-file src="src/android/Bech32Util.kt" target-dir="java/com/nostr/band/keyStore/" />
<source-file src="src/android/Utils.kt" target-dir="java/com/nostr/band/keyStore/" />
<framework custom="true" src="src/android/gradle.gradle" type="gradleReference"/>
<config-file target="AndroidManifest.xml" parent="application">
<activity android:name="com.nostr.band.keyStore.ModalActivity"></activity>
</config-file>
</platform>
</plugin>