val installedAvds = (s: State) => {
val avds = (Path.userHome / ".android" / "avd" * "*.ini").get
Space ~> avds.map(f => token(f.base))
.reduceLeftOption(_ | _).getOrElse(token("none"))
}
Is het possible to make a fall back to look also in the ANDROID_SDK_HOME (I think it is sdkPath)?
Because in windows the latest android sdk make the .android below that directory.
Now I can only make an avd with the name "none".
In Android.scala in
Is het possible to make a fall back to look also in the ANDROID_SDK_HOME (I think it is sdkPath)? Because in windows the latest android sdk make the .android below that directory. Now I can only make an avd with the name "none".