-
Notifications
You must be signed in to change notification settings - Fork 1
/
plugin.xml
58 lines (58 loc) · 3.4 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?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="orchextra-cordovaplugin" version="0.0.1">
<name>Orchextra Plugin Cordova</name>
<js-module name="OrchextraPlugin" src="www/orchextra.js">
<clobbers target="window.OrchextraPlugin" />
</js-module>
<platform name="ios">
<config-file parent="/*" target="config.xml">
<feature name="OrchextraWrapper">
<param name="ios-package" value="OrchextraWrapper" />
</feature>
</config-file>
<config-file target="*-Info.plist" parent="NSLocationAlwaysUsageDescription">
<string></string>
</config-file>
<config-file target="*-Info.plist" parent="NSLocationWhenInUseUsageDescription">
<string></string>
</config-file>
<framework src="CoreLocation.framework" />
<framework src="AVFoundation.framework" />
<framework src="AdSupport.framework" />
<framework src="PassKit.framework" />
<framework src="WebKit.framework" />
<framework src="SafariServices.framework" />
<framework src="libz.dylib" />
<framework src="src/ios/Framework/Orchextra.framework" custom="true" />
<resource-file src="src/ios/Framework/Orchextra.bundle" />
<source-file src="src/ios/OrchextraWrapper.h" />
<source-file src="src/ios/OrchextraWrapper.m" />
<source-file src="src/ios/Helpers/Categories/CDVInvokedUrlCommand+Orchextra.h" />
<source-file src="src/ios/Helpers/Categories/CDVInvokedUrlCommand+Orchextra.m" />
<source-file src="src/ios/Helpers/Categories/AppDelegate+notification.h" />
<source-file src="src/ios/Helpers/Categories/AppDelegate+notification.m" />
<source-file src="src/ios/Helpers/Categories/NSDictionary+JSON.h" />
<source-file src="src/ios/Helpers/Categories/NSDictionary+JSON.m" />
<source-file src="src/ios/Helpers/Categories/ORCUser+JSON.h" />
<source-file src="src/ios/Helpers/Categories/ORCUser+JSON.m" />
<source-file src="src/ios/Helpers/Categories/NSString+Gender.h" />
<source-file src="src/ios/Helpers/Categories/NSString+Gender.m" />
</platform>
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<feature name="OrchextraWrapper">
<param name="android-package" value="orchextra.OrchextraWrapper" />
</feature>
</config-file>
<config-file parent="/*" target="AndroidManifest.xml" />
<source-file src="src/android/OrchextraWrapper.java" target-dir="src/orchextra" />
<source-file src="src/android/MainApplication.java" target-dir="src/orchextra" />
<source-file src="src/android/entities/OrchextraAuthTokens.java" target-dir="src/orchextra/entities" />
<source-file src="src/android/entities/UserMiddleWare.java" target-dir="src/orchextra/entities" />
<source-file src="src/android/sdk/OrchextraSdk.java" target-dir="src/orchextra/sdk" />
<source-file src="src/android/utils/DataParser.java" target-dir="src/orchextra/utils" />
<framework src="build.gradle" custom="true" type="gradleReference" />
<hook type="before_compile" src="scripts/android_app_name.js" />
<hook type="after_plugin_add" src="scripts/android_app_name.js" />
</platform>
</plugin>