forked from airgap-it/airgap-wallet
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
37 changed files
with
764 additions
and
852 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
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,22 +1,20 @@ | ||
{ | ||
"appId": "it.airgap.wallet", | ||
"appName": "AirGap Wallet", | ||
"bundledWebRuntime": false, | ||
"npmClient": "npm", | ||
"webDir": "www", | ||
"plugins": { | ||
"PushNotifications": { | ||
"presentationOptions": ["alert"] | ||
}, | ||
"SplashScreen": { | ||
"launchAutoHide": false, | ||
"androidSplashResourceName": "screen" | ||
} | ||
}, | ||
"android": { | ||
"allowMixedContent": true | ||
}, | ||
"ios": { | ||
"cordovaSwiftVersion": "5.0" | ||
} | ||
"appId": "it.airgap.wallet", | ||
"appName": "AirGap Wallet", | ||
"bundledWebRuntime": false, | ||
"webDir": "www", | ||
"plugins": { | ||
"PushNotifications": { | ||
"presentationOptions": [ | ||
"alert" | ||
] | ||
}, | ||
"SplashScreen": { | ||
"launchAutoHide": false, | ||
"androidSplashResourceName": "screen" | ||
} | ||
}, | ||
"android": { | ||
"allowMixedContent": 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,42 @@ | ||
[ | ||
{ | ||
"pkg": "@capacitor/app", | ||
"classpath": "com.capacitorjs.plugins.app.AppPlugin" | ||
}, | ||
{ | ||
"pkg": "@capacitor/app-launcher", | ||
"classpath": "com.capacitorjs.plugins.applauncher.AppLauncherPlugin" | ||
}, | ||
{ | ||
"pkg": "@capacitor/browser", | ||
"classpath": "com.capacitorjs.plugins.browser.BrowserPlugin" | ||
}, | ||
{ | ||
"pkg": "@capacitor/clipboard", | ||
"classpath": "com.capacitorjs.plugins.clipboard.ClipboardPlugin" | ||
}, | ||
{ | ||
"pkg": "@capacitor/haptics", | ||
"classpath": "com.capacitorjs.plugins.haptics.HapticsPlugin" | ||
}, | ||
{ | ||
"pkg": "@capacitor/keyboard", | ||
"classpath": "com.capacitorjs.plugins.keyboard.KeyboardPlugin" | ||
}, | ||
{ | ||
"pkg": "@capacitor/push-notifications", | ||
"classpath": "com.capacitorjs.plugins.pushnotifications.PushNotificationsPlugin" | ||
}, | ||
{ | ||
"pkg": "@capacitor/share", | ||
"classpath": "com.capacitorjs.plugins.share.SharePlugin" | ||
}, | ||
{ | ||
"pkg": "@capacitor/splash-screen", | ||
"classpath": "com.capacitorjs.plugins.splashscreen.SplashScreenPlugin" | ||
}, | ||
{ | ||
"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
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,33 @@ | ||
// 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-app' | ||
project(':capacitor-app').projectDir = new File('../node_modules/@capacitor/app/android') | ||
|
||
include ':capacitor-app-launcher' | ||
project(':capacitor-app-launcher').projectDir = new File('../node_modules/@capacitor/app-launcher/android') | ||
|
||
include ':capacitor-browser' | ||
project(':capacitor-browser').projectDir = new File('../node_modules/@capacitor/browser/android') | ||
|
||
include ':capacitor-clipboard' | ||
project(':capacitor-clipboard').projectDir = new File('../node_modules/@capacitor/clipboard/android') | ||
|
||
include ':capacitor-haptics' | ||
project(':capacitor-haptics').projectDir = new File('../node_modules/@capacitor/haptics/android') | ||
|
||
include ':capacitor-keyboard' | ||
project(':capacitor-keyboard').projectDir = new File('../node_modules/@capacitor/keyboard/android') | ||
|
||
include ':capacitor-push-notifications' | ||
project(':capacitor-push-notifications').projectDir = new File('../node_modules/@capacitor/push-notifications/android') | ||
|
||
include ':capacitor-share' | ||
project(':capacitor-share').projectDir = new File('../node_modules/@capacitor/share/android') | ||
|
||
include ':capacitor-splash-screen' | ||
project(':capacitor-splash-screen').projectDir = new File('../node_modules/@capacitor/splash-screen/android') | ||
|
||
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,7 +1,7 @@ | ||
#Tue Sep 22 13:19:24 CEST 2020 | ||
#Wed Oct 20 12:28:59 CEST 2021 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-all.zip | ||
distributionPath=wrapper/dists | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip | ||
distributionSha256Sum=10065868c78f1207afb3a92176f99a37d753a513dff453abb6b5cceda4058cda | ||
zipStoreBase=GRADLE_USER_HOME | ||
distributionSha256Sum=a8da5b02437a60819cad23e10fc7e9cf32bcb57029d9cb277e26eeff76ce014b |
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 |
---|---|---|
|
@@ -15,7 +15,7 @@ RUN mkdir /app | |
WORKDIR /app | ||
|
||
# using npm 6.5.0 to fix installing certain cordova/ionic plugins | ||
RUN npm install -g [email protected] [email protected] @capacitor/core@2.4.0 @capacitor/[email protected] @capacitor/cli@2.4.0 | ||
RUN npm install -g [email protected] [email protected] @capacitor/core@3.2.5 @capacitor/[email protected] @capacitor/cli@3.2.5 | ||
RUN npm cache clean -f | ||
RUN npm install -g n | ||
RUN n 15.14.0 | ||
|
This file was deleted.
Oops, something went wrong.
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,22 @@ | ||
import { CapacitorConfig } from '@capacitor/cli' | ||
|
||
const config: CapacitorConfig = { | ||
appId: "it.airgap.wallet", | ||
appName: "AirGap Wallet", | ||
bundledWebRuntime: false, | ||
webDir: "www", | ||
plugins: { | ||
PushNotifications: { | ||
presentationOptions: ["alert"] | ||
}, | ||
SplashScreen: { | ||
launchAutoHide: false, | ||
androidSplashResourceName: "screen" | ||
} | ||
}, | ||
android: { | ||
allowMixedContent: true | ||
} | ||
} | ||
|
||
export default config |
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.