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

Fix/vulns and other things #632

Merged
merged 4 commits into from
Jun 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions build/osx/entitlements.mac.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,7 @@
<true/>
<key>com.apple.security.device.camera</key>
<true/>
<key>com.apple.security.cs.allow-jit</key>
<true/>
</dict>
</plist>
8 changes: 4 additions & 4 deletions capacitor.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { CapacitorConfig } from '@capacitor/cli';
import { CapacitorConfig } from '@capacitor/cli'

const config: CapacitorConfig = {
appId: 'im.adamant.adamantmessengerpwa',
Expand All @@ -9,9 +9,9 @@ const config: CapacitorConfig = {
},
plugins: {
SplashScreen: {
androidScaleType: "CENTER_CROP", // fix logo stretching
androidScaleType: 'CENTER_CROP' // fix logo stretching
}
}
};
}

export default config;
export default config
Loading
Loading