-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: upgrade capacitor to v3 and changed api endpoint (#21)
* fix: upgrade capacitor to v3 and changed api endpoint * fix: android required files
- Loading branch information
1 parent
22bbede
commit 68e2531
Showing
40 changed files
with
1,919 additions
and
1,624 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,4 +33,4 @@ $RECYCLE.BIN/ | |
Thumbs.db | ||
UserInterfaceState.xcuserstate | ||
|
||
environments/ | ||
src/environments/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,39 @@ | ||
{ | ||
"appId": "com.matthiasprost.scalewaymanager", | ||
"appName": "Scaleway Manager", | ||
"bundledWebRuntime": false, | ||
"npmClient": "npm", | ||
"webDir": "www", | ||
"plugins": { | ||
"SplashScreen": { | ||
"launchAutoHide": false | ||
} | ||
}, | ||
"cordova": { | ||
"preferences": { | ||
"ScrollEnabled": "false", | ||
"android-minSdkVersion": "19", | ||
"BackupWebStorage": "none", | ||
"SplashMaintainAspectRatio": "true", | ||
"FadeSplashScreenDuration": "300", | ||
"SplashShowOnlyFirstTime": "false", | ||
"SplashScreen": "screen", | ||
"SplashScreenDelay": "3000", | ||
"StatusBarOverlaysWebView": "true", | ||
"ShowSplashScreenSpinner": "false", | ||
"WKWebViewOnly": "true" | ||
} | ||
} | ||
"appId": "com.matthiasprost.scalewaymanager", | ||
"appName": "Scaleway Manager", | ||
"bundledWebRuntime": false, | ||
"npmClient": "yarn", | ||
"webDir": "www", | ||
"plugins": { | ||
"SplashScreen": { | ||
"launchShowDuration": 3000, | ||
"launchAutoHide": true, | ||
"backgroundColor": "#ffffffff", | ||
"androidSplashResourceName": "splash", | ||
"androidScaleType": "CENTER_CROP", | ||
"showSpinner": true, | ||
"androidSpinnerStyle": "large", | ||
"iosSpinnerStyle": "small", | ||
"spinnerColor": "#999999", | ||
"splashFullScreen": true, | ||
"splashImmersive": true, | ||
"layoutName": "launch_screen", | ||
"useDialog": true | ||
} | ||
}, | ||
"cordova": { | ||
"preferences": { | ||
"ScrollEnabled": "false", | ||
"android-minSdkVersion": "19", | ||
"BackupWebStorage": "none", | ||
"SplashMaintainAspectRatio": "true", | ||
"FadeSplashScreenDuration": "300", | ||
"SplashShowOnlyFirstTime": "false", | ||
"SplashScreen": "screen", | ||
"SplashScreenDelay": "3000", | ||
"StatusBarOverlaysWebView": "true", | ||
"ShowSplashScreenSpinner": "false", | ||
"WKWebViewOnly": "true" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[ | ||
{ | ||
"pkg": "@capacitor/status-bar", | ||
"classpath": "com.capacitorjs.plugins.statusbar.StatusBarPlugin" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
// DO NOT EDIT THIS FILE! IT IS GENERATED EACH TIME "capacitor update" IS RUN | ||
include ':capacitor-android' | ||
project(':capacitor-android').projectDir = new File('../node_modules/@capacitor/android/capacitor') | ||
|
||
include ':capacitor-status-bar' | ||
project(':capacitor-status-bar').projectDir = new File('../node_modules/@capacitor/status-bar/android') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-all.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-all.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,22 @@ | ||
ext { | ||
minSdkVersion = 21 | ||
compileSdkVersion = 29 | ||
targetSdkVersion = 29 | ||
androidxAppCompatVersion = '1.1.0' | ||
androidxCoreVersion = '1.2.0' | ||
androidxMaterialVersion = '1.1.0-rc02' | ||
androidxBrowserVersion = '1.2.0' | ||
androidxLocalbroadcastmanagerVersion = '1.0.0' | ||
androidxExifInterfaceVersion = '1.2.0' | ||
firebaseMessagingVersion = '20.1.2' | ||
playServicesLocationVersion = '17.0.0' | ||
junitVersion = '4.12' | ||
androidxJunitVersion = '1.1.1' | ||
androidxEspressoCoreVersion = '3.2.0' | ||
cordovaAndroidVersion = '7.0.0' | ||
minSdkVersion = 22 | ||
compileSdkVersion = 32 | ||
targetSdkVersion = 32 | ||
androidxAppCompatVersion = '1.4.2' | ||
androidxCoreVersion = '1.8.0' | ||
androidxMaterialVersion = '1.6.1' | ||
androidxBrowserVersion = '1.4.0' | ||
androidxLocalbroadcastmanagerVersion = '1.0.0' | ||
androidxExifInterfaceVersion = '1.3.3' | ||
firebaseMessagingVersion = '23.0.5' | ||
playServicesLocationVersion = '20.0.0' | ||
junitVersion = '4.13.2' | ||
androidxJunitVersion = '1.1.3' | ||
androidxEspressoCoreVersion = '3.4.0' | ||
cordovaAndroidVersion = '10.1.1' | ||
androidxActivityVersion = '1.4.0' | ||
androidxCoordinatorLayoutVersion = '1.2.0' | ||
androidxFragmentVersion = '1.4.1' | ||
coreSplashScreenVersion = '1.0.0-rc01' | ||
androidxWebkitVersion = '1.4.0' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.