docs: update plugin READMEs with new content and corrections

- Revised titles and installation commands for several plugins, including Adjust, AdMob Plus, and Approov Advanced HTTP.
- Added new README files for plugins such as Airship, Audio Management, and Genius Scan.
- Corrected plugin repository links and usage documentation across multiple plugins.
- Updated supported platforms and descriptions for clarity and accuracy.
- Enhanced consistency in formatting and structure throughout the documentation.
This commit is contained in:
Daniel Sogl
2025-06-07 16:42:22 +02:00
parent 82fec43427
commit 95f86044aa
36 changed files with 381 additions and 73 deletions
+7 -23
View File
@@ -1,36 +1,20 @@
# IRoot
```text
$ ionic cordova plugin add cordova-plugin-iroot
```
$ ionic cordova plugin add cordova-plugin-IRoot
$ npm install @awesome-cordova-plugins/i-root
```
## [Usage Documentation](https://danielsogl.gitbook.io/awesome-cordova-plugins/plugins/iroot/)
## [Usage Documentation](https://danielsogl.gitbook.io/awesome-cordova-plugins/plugins/i-root/)
Plugin Repo: [https://github.com/WuglyakBolgoink/cordova-plugin-iroot](https://github.com/WuglyakBolgoink/cordova-plugin-iroot)
Plugin Repo: [https://github.com/WuglyakBolgoink/cordova-plugin-IRoot](https://github.com/WuglyakBolgoink/cordova-plugin-IRoot)
Use this plugin to add an extra layer of security for your app by detecting if the device was rooted (on android) or jailbreaked (on iOS).
## Supported platforms
* Android
* iOS
- Android
- iOS
## Original Plugin Notes
### iOS - Postinstall
To avoid errors like
> -canOpenURL: failed for URL: "cydia://package/com.example.package" - error: "This app is not allowed to query for scheme cydia"
dont forget to add `"cydia"` in `LSApplicationQueriesSchemes` key of `info.plist`. Otherwise `canOpenURL` will always return `false`.
```xml
<xxx>
<key>LSApplicationQueriesSchemes</key>
<array>
<string>cydia</string>
</array>
</xxx>
```