diff options
| -rw-r--r-- | plugins/android.json | 21 | ||||
| -rw-r--r-- | plugins/fetch.json | 16 | ||||
| -rw-r--r-- | plugins/ios.json | 7 |
3 files changed, 43 insertions, 1 deletions
diff --git a/plugins/android.json b/plugins/android.json index 9b96def7..ecde5f2c 100644 --- a/plugins/android.json +++ b/plugins/android.json @@ -91,6 +91,10 @@ { "xml": "<feature name=\"PushNotification\"><param name=\"android-package\" value=\"com.adobe.phonegap.push.PushPlugin\" /></feature>", "count": 1 + }, + { + "xml": "<feature name=\"Media\"><param name=\"android-package\" value=\"org.apache.cordova.media.AudioHandler\" /></feature>", + "count": 1 } ] } @@ -108,11 +112,23 @@ }, { "xml": "<uses-permission android:name=\"android.permission.WRITE_EXTERNAL_STORAGE\" />", - "count": 2 + "count": 3 }, { "xml": "<uses-permission android:name=\"android.permission.INTERNET\" />", "count": 1 + }, + { + "xml": "<uses-permission android:name=\"android.permission.RECORD_AUDIO\" />", + "count": 1 + }, + { + "xml": "<uses-permission android:name=\"android.permission.MODIFY_AUDIO_SETTINGS\" />", + "count": 1 + }, + { + "xml": "<uses-permission android:name=\"android.permission.READ_PHONE_STATE\" />", + "count": 1 } ], "/manifest/application": [ @@ -262,6 +278,9 @@ }, "phonegap-plugin-push": { "PACKAGE_NAME": "com.pliablepixels.zmninja" + }, + "org.apache.cordova.media": { + "PACKAGE_NAME": "com.pliablepixels.zmninja" } }, "dependent_plugins": { diff --git a/plugins/fetch.json b/plugins/fetch.json index 959be649..208c3793 100644 --- a/plugins/fetch.json +++ b/plugins/fetch.json @@ -196,5 +196,21 @@ }, "is_top_level": true, "variables": {} + }, + "org.apache.cordova.media": { + "source": { + "type": "registry", + "id": "org.apache.cordova.media" + }, + "is_top_level": true, + "variables": {} + }, + "org.apache.cordova.file": { + "source": { + "type": "registry", + "id": "org.apache.cordova.file" + }, + "is_top_level": false, + "variables": {} } }
\ No newline at end of file diff --git a/plugins/ios.json b/plugins/ios.json index db8ec169..993fa085 100644 --- a/plugins/ios.json +++ b/plugins/ios.json @@ -83,6 +83,10 @@ { "xml": "<feature name=\"AppVersion\"><param name=\"ios-package\" value=\"AppVersion\" /></feature>", "count": 1 + }, + { + "xml": "<feature name=\"Media\"><param name=\"ios-package\" value=\"CDVSound\" /></feature>", + "count": 1 } ] } @@ -192,6 +196,9 @@ }, "uk.co.whiteoctober.cordova.appversion": { "PACKAGE_NAME": "com.pliablepixels.zmninja" + }, + "org.apache.cordova.media": { + "PACKAGE_NAME": "com.pliablepixels.zmninja" } }, "dependent_plugins": { |
