-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
62 lines (50 loc) · 2.84 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
59
60
61
62
<?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="org.apache.cordova.plugin.TapjoyPlugin"
version="0.2.1">
<name>Tapjoy - phonegap</name>
<description>
</description>
<engines>
<engine name="cordova" version=">=3.0.0" platform="android"/>
</engines>
<js-module src="www/tapjoy.js" name="Tapjoy">
<clobbers target="window.plugins.tapjoy"/>
</js-module>
<platform name="android">
<source-file src="src/android/org/apache/cordova/plugin/TapjoyPlugin.java"
target-dir="src/org/apache/cordova/plugin"/>
<source-file src="libs/android/tapjoyconnectlibrary.jar"
target-dir="libs"/>
<config-file target="res/xml/config.xml" parent="/*">
<feature name="TapjoyPlugin">
<param name="android-package" value="org.apache.cordova.plugin.TapjoyPlugin"/>
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest">
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-sdk android:minSdkVersion="13" android:targetSdkVersion="18" />
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<activity android:configChanges="keyboardHidden|orientation|screenSize"
android:name="com.tapjoy.TJCOffersWebView"/>
<activity android:configChanges="orientation|keyboardHidden|screenSize"
android:name="com.tapjoy.TapjoyFullScreenAdWebView"/>
<activity android:configChanges="orientation|keyboardHidden|screenSize"
android:name="com.tapjoy.TapjoyDailyRewardAdWebView"/>
<activity android:configChanges="orientation|keyboardHidden|screenSize"
android:name="com.tapjoy.TapjoyVideoView"/>
<activity android:configChanges="orientation|keyboardHidden|screenSize" android:hardwareAccelerated="true"
android:name="com.tapjoy.TJAdUnitView"
android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen"/>
<activity android:configChanges="orientation|keyboardHidden|screenSize"
android:name="com.tapjoy.mraid.view.ActionHandler"/>
<activity android:configChanges="orientation|keyboardHidden|screenSize"
android:name="com.tapjoy.mraid.view.Browser"/>
</config-file>
</platform>
</plugin>