From 29528bdd47bed0ec2afcf0a16cd1729b853e72ed Mon Sep 17 00:00:00 2001 From: Saravana Date: Fri, 28 Oct 2022 15:48:01 +0200 Subject: [PATCH] android_studio.md: runIde should be inside tasks block (#871) --- topics/products/androidstudio/android_studio.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/topics/products/androidstudio/android_studio.md b/topics/products/androidstudio/android_studio.md index f22899510..2dc052524 100644 --- a/topics/products/androidstudio/android_studio.md +++ b/topics/products/androidstudio/android_studio.md @@ -76,10 +76,12 @@ intellij { plugins.set(listOf("android")) } -runIde { - // Absolute path to installed target 3.5 Android Studio to use as - // IDE Development Instance (the "Contents" directory is macOS specific): - ideDir.set(file("/Applications/Android Studio.app/Contents")) +tasks { + runIde { + // Absolute path to installed target 3.5 Android Studio to use as + // IDE Development Instance (the "Contents" directory is macOS specific): + ideDir.set(file("/Applications/Android Studio.app/Contents")) + } } ```