This message was deleted.
# android
s
This message was deleted.
t
Give a look at the start params that studio pumps into gradle.
Copy code
StartParameter{
  taskRequests=[], \
  excludedTaskNames=[], 
  currentDir=/home/tjones/Source/aetnaboost-android/gradle/plugins, 
  projectDir=null, 
  projectProperties={}, 
  systemPropertiesArgs={
    idea.active=true, 
    idea.resolveSourceSetDependencies=true, 
    idea.version=2022.1, 
    java.awt.headless=true, 
    idea.sync.active=true, 
    org.gradle.internal.GradleProjectBuilderOptions=omit_all_tasks
  }, 
  gradleUserHomeDir=/home/tjones/.gradle, 
  gradleHome=/home/tjones/.gradle/wrapper/dists/gradle-7.5.1-bin/7jzzequgds1hbszbhq3npc5ng/gradle-7.5.1, 
  logLevel=LIFECYCLE, 
  showStacktrace=ALWAYS, 
  buildFile=null, 
  initScripts=[
    /tmp/ijmapper.gradle, 
    /tmp/ijmapper.gradle, 
    /tmp/sync.studio.tooling626.gradle, 
    /tmp/ijinit.gradle, 
    /tmp/sync.studio.tooling725.gradle, 
    /tmp/ijinit1.gradle, 
    /tmp/ijtestinit.gradle
  ], 
  dryRun=false, 
  rerunTasks=false, 
  offline=false, 
  refreshDependencies=false, 
  parallelProjectExecution=false, 
  configureOnDemand=false, 
  maxWorkerCount=128, 
  buildCacheEnabled=false, 
  writeDependencyLocks=false, 
  verificationMode=STRICT, 
  refreshKeys=false
}
That is what EEc9 puts in as idea.version. I suspect that is the best bet for now. I also am guessing the
/tmp/sync.studio.tooling*.gradle
files may have some configuration we could sniff out to get more detailed info if idea version isn't enough for what you are wanting to do.
Copy code
Android Studio Electric Eel | 2022.1.1 Canary 9
Build #AI-221.5921.22.2211.8881706, built on July 28, 2022
Runtime version: 11.0.13+0-b1751.21-8125866 amd64
VM: OpenJDK 64-Bit Server VM by JetBrains s.r.o.
Linux 5.15.0-46-generic
j
thanks, that helps