-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
23 lines (23 loc) · 1.18 KB
/
plugin.xml
File metadata and controls
23 lines (23 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version='1.0' encoding='utf-8'?>
<plugin id="ionic-android-logs" version="0.0.4"
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<name>IonicAndroidLogs</name>
<description>An Android Cordova plugin that allows users to create logs.</description>
<license>MIT</license>
<js-module name="IonicAndroidLogs" src="www/IonicAndroidLogs.js">
<clobbers target="cordova.plugins.IonicAndroidLogs" />
</js-module>
<keywords>cordova,android,logs</keywords>
<repo>https://github.com/shhdharmen/ionic-android-logs.git</repo>
<issue>https://github.com/shhdharmen/ionic-android-logs/issues</issue>
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<feature name="IonicAndroidLogs">
<param name="android-package" value="com.dharmenshah.cordova.plugin.IonicAndroidLogs" />
</feature>
</config-file>
<config-file parent="/*" target="AndroidManifest.xml"></config-file>
<source-file src="src/android/IonicAndroidLogs.java" target-dir="src/ionic-android-logs/IonicAndroidLogs" />
</platform>
</plugin>