android_studio.md: runIde should be inside tasks block (#871)

This commit is contained in:
Saravana 2022-10-28 15:48:01 +02:00 committed by GitHub
parent 42f6dae97c
commit 29528bdd47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -76,10 +76,12 @@ intellij {
plugins.set(listOf("android"))
}
runIde {
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"))
}
}
```