feat: Add new emoji assets and an UpdateBanner component.
Some checks failed
Build and Release / build-and-release (push) Failing after 3m28s
Some checks failed
Build and Release / build-and-release (push) Failing after 3m28s
This commit is contained in:
18
apps/android/capacitor.config.ts
Normal file
18
apps/android/capacitor.config.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
import type { CapacitorConfig } from '@capacitor/cli';
|
||||
|
||||
const config: CapacitorConfig = {
|
||||
appId: 'com.yourorg.discordclone',
|
||||
appName: 'Discord Clone',
|
||||
webDir: '../web/dist',
|
||||
server: {
|
||||
androidScheme: 'http',
|
||||
cleartext: true,
|
||||
},
|
||||
plugins: {
|
||||
App: {
|
||||
// Handle back button in Android
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export default config;
|
||||
19
apps/android/package.json
Normal file
19
apps/android/package.json
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"name": "@discord-clone/android",
|
||||
"private": true,
|
||||
"version": "1.0.0",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"cap:sync": "npx cap sync",
|
||||
"cap:open": "npx cap open android",
|
||||
"cap:run": "npx cap run android"
|
||||
},
|
||||
"dependencies": {
|
||||
"@capacitor/android": "^6.0.0",
|
||||
"@capacitor/app": "^6.0.0",
|
||||
"@capacitor/core": "^6.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@capacitor/cli": "^6.0.0"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user