Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/Gym Map #151

Merged
merged 13 commits into from
Aug 9, 2021
1 change: 1 addition & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -31,6 +31,7 @@ jobs:
VUE_APP_USER_ENDPOINT_URL: ${{ secrets.VUE_APP_USER_ENDPOINT_URL }}
VUE_APP_ROUTE_ENDPOINT_URL: ${{ secrets.VUE_APP_ROUTE_ENDPOINT_URL }}
VUE_APP_MAP_EMBED_API: ${{ secrets.VUE_APP_MAP_EMBED_API }}
VUE_APP_MAPBOX_ACCESS_KEY: ${{ secrets.VUE_APP_MAPBOX_ACCESS_KEY }}
VUE_APP_TRACKING_ID: ${{ secrets.VUE_APP_TRACKING_ID }}
VUE_APP_PRODUCTION_ROUTE: /

1 change: 1 addition & 0 deletions ionic_user_interface/android/app/capacitor.build.gradle
Original file line number Diff line number Diff line change
@@ -12,6 +12,7 @@ dependencies {
implementation project(':capacitor-app')
implementation project(':capacitor-camera')
implementation project(':capacitor-filesystem')
implementation project(':capacitor-geolocation')
implementation project(':capacitor-haptics')
implementation project(':capacitor-keyboard')
implementation project(':capacitor-share')
Original file line number Diff line number Diff line change
@@ -11,6 +11,10 @@
"pkg": "@capacitor/filesystem",
"classpath": "com.capacitorjs.plugins.filesystem.FilesystemPlugin"
},
{
"pkg": "@capacitor/geolocation",
"classpath": "com.capacitorjs.plugins.geolocation.GeolocationPlugin"
},
{
"pkg": "@capacitor/haptics",
"classpath": "com.capacitorjs.plugins.haptics.HapticsPlugin"
3 changes: 3 additions & 0 deletions ionic_user_interface/android/capacitor.settings.gradle
Original file line number Diff line number Diff line change
@@ -11,6 +11,9 @@ project(':capacitor-camera').projectDir = new File('../node_modules/@capacitor/c
include ':capacitor-filesystem'
project(':capacitor-filesystem').projectDir = new File('../node_modules/@capacitor/filesystem/android')

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

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

Loading