diff --git a/src/routes/(console)/project-[region]-[project]/overview/platforms/createAndroid.svelte b/src/routes/(console)/project-[region]-[project]/overview/platforms/createAndroid.svelte
index e5aba6c42..f6e3d4209 100644
--- a/src/routes/(console)/project-[region]-[project]/overview/platforms/createAndroid.svelte
+++ b/src/routes/(console)/project-[region]-[project]/overview/platforms/createAndroid.svelte
@@ -10,7 +10,8 @@
Typography,
Fieldset,
InlineCode,
- Tooltip
+ Tooltip,
+ Alert
} from '@appwrite.io/pink-svelte';
import { Button, Form, InputText } from '$lib/elements/forms';
import { IconAndroid, IconAppwrite, IconInfo } from '@appwrite.io/pink-icons-svelte';
@@ -39,6 +40,31 @@
const val APPWRITE_PROJECT_NAME = "${$project.name}"
const val APPWRITE_PUBLIC_ENDPOINT = "${sdk.forProject(page.params.region, page.params.project).client.config.endpoint}"`;
+ const prompt = `
+ 1. If you're starting a new project, you can clone our starter kit from GitHub using the terminal, VSCode or Android Studio.
+
+ \`\`\`bash
+ ${gitCloneCode}
+ \`\`\`
+
+ 2. Open the file \`constants/AppwriteConfig.kt\` and update the configuration settings.
+
+
+ \`\`\`kotlin
+ ${configCode}
+ \`\`\`
+
+ 3. Run the app on a connected device or emulator, then click the \`Send a ping\` button to verify the setup.
+ `;
+
+ async function copyPrompt() {
+ await navigator.clipboard.writeText(prompt);
+ addNotification({
+ type: 'success',
+ message: 'Prompt copied to clipboard'
+ });
+ }
+
async function createAndroidPlatform() {
try {
isCreatingPlatform = true;
@@ -162,6 +188,18 @@ const val APPWRITE_PUBLIC_ENDPOINT = "${sdk.forProject(page.params.region, page.
{#if isPlatformCreated}