Skip to content

Commit b4c88ad

Browse files
committed
Add Gemini MCP config; update Gradle Java home
Add .gemini/settings.json to register an mcpServer 'appium-mcp' that runs 'npx -y appium-mcp@latest'. Update android/gradle.properties to enable the Windows Android Studio JBR as org.gradle.java.home (uncommented) and comment out the Linux java-21-openjdk entry so the build uses the intended JDK/toolchain.
1 parent 00d08f9 commit b4c88ad

2 files changed

Lines changed: 13 additions & 2 deletions

File tree

.gemini/settings.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"mcpServers": {
3+
"appium-mcp": {
4+
"command": "npx",
5+
"args": [
6+
"-y",
7+
"appium-mcp@latest"
8+
]
9+
}
10+
}
11+
}

android/gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
org.gradle.jvmargs=-Xmx2G -XX:MaxMetaspaceSize=1G -XX:ReservedCodeCacheSize=512m -XX:+HeapDumpOnOutOfMemoryError
22
android.useAndroidX=true
33
# Android Gradle Plugin / Gradle do not run on JDK 26; without a JDK 17–21 toolchain the build fails with "26.0.2" as the only message.
4-
# org.gradle.java.home=C:\\Program Files\\Android\\Android Studio\\jbr
4+
org.gradle.java.home=C:\\Program Files\\Android\\Android Studio\\jbr
55
# Enable parallel build to speed up the build process
66
org.gradle.parallel=true
77
# Enable the Gradle build cache to reuse outputs from previous builds
@@ -12,4 +12,4 @@ org.gradle.configureondemand=true
1212
org.gradle.daemon=true
1313
# Enable Gradle's build scan plugin for better insights into build performance
1414
# org.gradle.scan=true
15-
org.gradle.java.home=/usr/lib/jvm/java-21-openjdk
15+
# org.gradle.java.home=/usr/lib/jvm/java-21-openjdk

0 commit comments

Comments
 (0)