Skip to content

Commit

Permalink
Merge pull request #3 from SorenHolstHansen/browser
Browse files Browse the repository at this point in the history
browser plugin
  • Loading branch information
wainwrightmark committed Mar 4, 2024
2 parents 18c69d3 + 472788f commit 471a8b4
Show file tree
Hide file tree
Showing 17 changed files with 1,597 additions and 1,306 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Current support is as follows
| App ||
| App Launcher ||
| Action Sheet ||
| Browser | |
| Browser | |
| Camera ||
| Clipboard ||
| Cookies ||
Expand Down
42 changes: 21 additions & 21 deletions example_application/capacitor.config.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
{
"appId": "com.example.app",
"appName": "Example",
"webDir": "dist",
"bundledWebRuntime": false,
"appId": "com.example.app",
"appName": "Example",
"webDir": "dist",
"bundledWebRuntime": false,

"plugins": {
"SplashScreen": {
"launchAutoHide": false,
"launchFadeOutDuration": 3000,
"backgroundColor": "#ffffffff",
"androidSplashResourceName": "splash",
"androidScaleType": "CENTER_CROP",
"showSpinner": true,
"androidSpinnerStyle": "large",
"iosSpinnerStyle": "small",
"spinnerColor": "#999999",
"splashFullScreen": true,
"splashImmersive": true,
"layoutName": "launch_screen",
"useDialog": true
}
}
"plugins": {
"SplashScreen": {
"launchAutoHide": false,
"launchFadeOutDuration": 3000,
"backgroundColor": "#ffffffff",
"androidSplashResourceName": "splash",
"androidScaleType": "CENTER_CROP",
"showSpinner": true,
"androidSpinnerStyle": "large",
"iosSpinnerStyle": "small",
"spinnerColor": "#999999",
"splashFullScreen": true,
"splashImmersive": true,
"layoutName": "launch_screen",
"useDialog": true
}
}
}
1 change: 1 addition & 0 deletions example_application/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
></script>

<script src="./plugins/@capacitor/action-sheet.js" type="module"></script>
<script src="./plugins/@capacitor/browser.js" type="module"></script>
<script src="./plugins/@capacitor/camera.js" type="module"></script>
<script src="./plugins/@capacitor/device.js" type="module"></script>
<script src="./plugins/@capacitor/dialog.js" type="module"></script>
Expand Down
1 change: 1 addition & 0 deletions example_application/ios/App/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ def capacitor_pods
pod 'CapacitorCordova', :path => '../../node_modules/@capacitor/ios'
pod 'CapacitorActionSheet', :path => '../../node_modules/@capacitor/action-sheet'
pod 'CapacitorApp', :path => '../../node_modules/@capacitor/app'
pod 'CapacitorBrowser', :path => '../../node_modules/@capacitor/browser'
pod 'CapacitorCamera', :path => '../../node_modules/@capacitor/camera'
pod 'CapacitorClipboard', :path => '../../node_modules/@capacitor/clipboard'
pod 'CapacitorDevice', :path => '../../node_modules/@capacitor/device'
Expand Down
124 changes: 124 additions & 0 deletions example_application/ios/App/Podfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,124 @@
PODS:
- Capacitor (5.0.3):
- CapacitorCordova
- CapacitorActionSheet (5.0.2):
- Capacitor
- CapacitorApp (5.0.2):
- Capacitor
- CapacitorBrowser (5.2.0):
- Capacitor
- CapacitorCamera (5.0.2):
- Capacitor
- CapacitorClipboard (5.0.2):
- Capacitor
- CapacitorCordova (5.0.3)
- CapacitorDevice (5.0.2):
- Capacitor
- CapacitorDialog (5.0.2):
- Capacitor
- CapacitorHaptics (5.0.2):
- Capacitor
- CapacitorLocalNotifications (5.0.2):
- Capacitor
- CapacitorNetwork (5.0.2):
- Capacitor
- CapacitorPreferences (5.0.2):
- Capacitor
- CapacitorRateApp (4.0.3):
- Capacitor
- CapacitorScreenReader (5.0.2):
- Capacitor
- CapacitorShare (5.0.2):
- Capacitor
- CapacitorSplashScreen (5.0.4):
- Capacitor
- CapacitorStatusBar (5.0.2):
- Capacitor
- CapacitorToast (5.0.2):
- Capacitor

DEPENDENCIES:
- "Capacitor (from `../../node_modules/@capacitor/ios`)"
- "CapacitorActionSheet (from `../../node_modules/@capacitor/action-sheet`)"
- "CapacitorApp (from `../../node_modules/@capacitor/app`)"
- "CapacitorBrowser (from `../../node_modules/@capacitor/browser`)"
- "CapacitorCamera (from `../../node_modules/@capacitor/camera`)"
- "CapacitorClipboard (from `../../node_modules/@capacitor/clipboard`)"
- "CapacitorCordova (from `../../node_modules/@capacitor/ios`)"
- "CapacitorDevice (from `../../node_modules/@capacitor/device`)"
- "CapacitorDialog (from `../../node_modules/@capacitor/dialog`)"
- "CapacitorHaptics (from `../../node_modules/@capacitor/haptics`)"
- "CapacitorLocalNotifications (from `../../node_modules/@capacitor/local-notifications`)"
- "CapacitorNetwork (from `../../node_modules/@capacitor/network`)"
- "CapacitorPreferences (from `../../node_modules/@capacitor/preferences`)"
- CapacitorRateApp (from `../../node_modules/capacitor-rate-app`)
- "CapacitorScreenReader (from `../../node_modules/@capacitor/screen-reader`)"
- "CapacitorShare (from `../../node_modules/@capacitor/share`)"
- "CapacitorSplashScreen (from `../../node_modules/@capacitor/splash-screen`)"
- "CapacitorStatusBar (from `../../node_modules/@capacitor/status-bar`)"
- "CapacitorToast (from `../../node_modules/@capacitor/toast`)"

EXTERNAL SOURCES:
Capacitor:
:path: "../../node_modules/@capacitor/ios"
CapacitorActionSheet:
:path: "../../node_modules/@capacitor/action-sheet"
CapacitorApp:
:path: "../../node_modules/@capacitor/app"
CapacitorBrowser:
:path: "../../node_modules/@capacitor/browser"
CapacitorCamera:
:path: "../../node_modules/@capacitor/camera"
CapacitorClipboard:
:path: "../../node_modules/@capacitor/clipboard"
CapacitorCordova:
:path: "../../node_modules/@capacitor/ios"
CapacitorDevice:
:path: "../../node_modules/@capacitor/device"
CapacitorDialog:
:path: "../../node_modules/@capacitor/dialog"
CapacitorHaptics:
:path: "../../node_modules/@capacitor/haptics"
CapacitorLocalNotifications:
:path: "../../node_modules/@capacitor/local-notifications"
CapacitorNetwork:
:path: "../../node_modules/@capacitor/network"
CapacitorPreferences:
:path: "../../node_modules/@capacitor/preferences"
CapacitorRateApp:
:path: "../../node_modules/capacitor-rate-app"
CapacitorScreenReader:
:path: "../../node_modules/@capacitor/screen-reader"
CapacitorShare:
:path: "../../node_modules/@capacitor/share"
CapacitorSplashScreen:
:path: "../../node_modules/@capacitor/splash-screen"
CapacitorStatusBar:
:path: "../../node_modules/@capacitor/status-bar"
CapacitorToast:
:path: "../../node_modules/@capacitor/toast"

SPEC CHECKSUMS:
Capacitor: 304a960e431f9e6f78556554ca71c41c1b2b9680
CapacitorActionSheet: 5f96ede9bde29ba734a5a31b70cfdaaa7855689f
CapacitorApp: 28fef1fd75b2b3686e875216806fb8416d421097
CapacitorBrowser: a6deae9e5bf87f62b62a753cff7992c5def9e771
CapacitorCamera: 15face5f9e030e480929a2c989deaaf3eb0d3947
CapacitorClipboard: a198f34cd0ed4d1777da5edae13445227ec05be3
CapacitorCordova: def732a63679698df6fb392bbe6d269a0b61e937
CapacitorDevice: 980e172f6fbfa0a945c73f908adc74b5a031e7d4
CapacitorDialog: 01c49f7f4b37e7ad59e38fd317a6e5f006f23cdc
CapacitorHaptics: 864585542a435bd41eaabf7f30d9ff5ec03024d3
CapacitorLocalNotifications: db01feb38f85b4fd8c0a0d0fa94a4a6410239563
CapacitorNetwork: 77c00ce41b4e014cbc6fdcb233462e7fce4b4755
CapacitorPreferences: 0ad8838944f900284900d9647d9b0145c89ca27d
CapacitorRateApp: 896df7ec6a237fea72d1955e0cb26394654b00db
CapacitorScreenReader: c3ac63145683b8e1a52c7217757eedfaec47dc53
CapacitorShare: 931224a0e17615e799d35b26286ab1d05f37d8fb
CapacitorSplashScreen: 93a389d4f7673c08214ae25bb6f21d867d5305c5
CapacitorStatusBar: 48f2899f6846cc7d8431b251ebfc58e1c10e3d58
CapacitorToast: d785c9169585b9267b8392094298de7cb0eaa16e

PODFILE CHECKSUM: 2ff3605e50758e9080a3f42005ef9ec0e8d738c6

COCOAPODS: 1.12.1

0 comments on commit 471a8b4

Please sign in to comment.