Skip to content

Commit

Permalink
feat(future): add browser plugin and try to fix backlink
Browse files Browse the repository at this point in the history
  • Loading branch information
leomelki committed Aug 26, 2024
1 parent 11032c1 commit 13c5a50
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 2 deletions.
1 change: 1 addition & 0 deletions android/app/capacitor.build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ apply from: "../capacitor-cordova-android-plugins/cordova.variables.gradle"
dependencies {
implementation project(':capacitor-community-media')
implementation project(':capacitor-app')
implementation project(':capacitor-browser')
implementation project(':capacitor-filesystem')
implementation project(':capacitor-geolocation')
implementation project(':capacitor-haptics')
Expand Down
1 change: 0 additions & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http" />
<data android:scheme="https" />
<data android:scheme="app" />
<data android:host="iseplife.fr" />
</intent-filter>

Expand Down
3 changes: 3 additions & 0 deletions android/capacitor.settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ project(':capacitor-community-media').projectDir = new File('../node_modules/@ca
include ':capacitor-app'
project(':capacitor-app').projectDir = new File('../node_modules/@capacitor/app/android')

include ':capacitor-browser'
project(':capacitor-browser').projectDir = new File('../node_modules/@capacitor/browser/android')

include ':capacitor-filesystem'
project(':capacitor-filesystem').projectDir = new File('../node_modules/@capacitor/filesystem/android')

Expand Down
1 change: 1 addition & 0 deletions 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 'CapacitorCommunityMedia', :path => '../../node_modules/@capacitor-community/media'
pod 'CapacitorApp', :path => '../../node_modules/@capacitor/app'
pod 'CapacitorBrowser', :path => '../../node_modules/@capacitor/browser'
pod 'CapacitorFilesystem', :path => '../../node_modules/@capacitor/filesystem'
pod 'CapacitorGeolocation', :path => '../../node_modules/@capacitor/geolocation'
pod 'CapacitorHaptics', :path => '../../node_modules/@capacitor/haptics'
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"@capacitor-community/media": "^5.4.1",
"@capacitor/android": "^5.0.0",
"@capacitor/app": "^5.0.0",
"@capacitor/browser": "^6.0.2",
"@capacitor/core": "^5.0.0",
"@capacitor/filesystem": "^5.0.0",
"@capacitor/geolocation": "^5.0.0",
Expand Down Expand Up @@ -162,5 +163,6 @@
"workbox-strategies": "^5.1.4",
"workbox-streams": "^5.1.4"
},
"description": "iseplife webapp"
"description": "iseplife webapp",
"packageManager": "[email protected]"
}
10 changes: 10 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2327,6 +2327,15 @@ __metadata:
languageName: node
linkType: hard

"@capacitor/browser@npm:^6.0.2":
version: 6.0.2
resolution: "@capacitor/browser@npm:6.0.2"
peerDependencies:
"@capacitor/core": ^6.0.0
checksum: fb51ff878039e81dccea392cfb1b79bb6de1977072da2b0ceccd005e32460edcd8f7ff76965f32e7fe34ad2bcafd2382d16aa541c29a3e338ea413c18897baf3
languageName: node
linkType: hard

"@capacitor/cli@npm:^5.0.0":
version: 5.7.5
resolution: "@capacitor/cli@npm:5.7.5"
Expand Down Expand Up @@ -12754,6 +12763,7 @@ __metadata:
"@capacitor-community/media": ^5.4.1
"@capacitor/android": ^5.0.0
"@capacitor/app": ^5.0.0
"@capacitor/browser": ^6.0.2
"@capacitor/cli": ^5.0.0
"@capacitor/core": ^5.0.0
"@capacitor/filesystem": ^5.0.0
Expand Down

0 comments on commit 13c5a50

Please sign in to comment.