Skip to content

Commit

Permalink
camera permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
asoltys committed Mar 1, 2025
1 parent 6a1c4cd commit c0fa40f
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 9 deletions.
2 changes: 2 additions & 0 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,6 @@
<!-- Permissions -->

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-feature android:name="android.hardware.camera" android:required="true"/>
</manifest>
Binary file modified bun.lockb
Binary file not shown.
17 changes: 11 additions & 6 deletions capacitor.config.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
{
"appId": "io.coinos",
"appName": "Coinos",
"server": {
"hostname": "coinos.io",
"url": "https://coinos.io"
}
"appId": "io.coinos",
"appName": "Coinos",
"server": {
"hostname": "coinos.io",
"url": "https://coinos.io"
},
"android": {
"webContentsDebuggingEnabled": true,
"allowMixedContent": true,
"useBrowserHistory": true
}
}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
"name": "coinos",
"version": "1.0.4",
"devDependencies": {
"@capacitor/assets": "^3.0.5",
"@capacitor/android": "^6.2.0",
"@capacitor/assets": "^3.0.5",
"@capacitor/cli": "^6.2.0",
"@capacitor/core": "^6.2.0",
"@capacitor/core": "^7.0.1",
"@capacitor/ios": "^6.1.2",
"@cashu/cashu-ts": "^2.0.0-rc4",
"@iconify/iconify": "^3.1.1",
Expand Down Expand Up @@ -68,5 +68,5 @@
"lint": "prettier --check .",
"format": "prettier --write ."
},
"type": "module",
"type": "module"
}

0 comments on commit c0fa40f

Please sign in to comment.