-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
41 lines (30 loc) · 1.44 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
<?xml version='1.0' encoding='utf-8'?>
<plugin id="nostr-walletstore-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>NostrWalletStore</name>
<author>Dzianis Monich</author>
<description>
Cordova plugin for Nostr wallet storage and management.
</description>
<license>MIT</license>
<keywords>ecosystem:cordova, mobile, android, nostr, walletstore</keywords>
<js-module name="NostrWalletStore" src="www/nostr.js">
<clobbers target="cordova.plugins.NostrWalletStore" />
</js-module>
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<preference name="GradlePluginKotlinEnabled" value="true" />
<feature name="NostrWalletStore">
<param name="android-package" value="com.nostr.band.walletStore.Nostr" />
</feature>
</config-file>
<config-file parent="/*" target="AndroidManifest.xml" />
<source-file src="src/android/Nostr.java" target-dir="src/com/nostr/band/walletStore" />
<framework custom="true" src="src/android/gradle.gradle" type="gradleReference"/>
<config-file target="AndroidManifest.xml" parent="application">
<activity android:name="com.nostr.band.walletStore.ModalActivity"></activity>
</config-file>
</platform>
</plugin>