博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
AndroidQ模拟器问题-Package “Android Emulator” with revision at least 28.1.9 not available
阅读量:4292 次
发布时间:2019-05-27

本文共 1237 字,大约阅读时间需要 4 分钟。

Package “Android Emulator” with revision at least 28.1.9 not available

问题困扰了好几天,最后google到了答案,这里贴出来。

This happens because Android Q is still in beta and therefore it’s only be available through the Canary and Development channels. This makes sense, since it’s on the development stage and we can still have changes between versions. The emulator images seem to follow the same reasoning and with this, for now, you need to download it through these channels.

With this in mind, we’ve got some workarounds on how to install it.

翻译的大致意思是,Android Q目前处于Beta阶段,使用stable版本的SdkManager或者AndroidStudio不能下载到beta版本的东西。相当于不在一个频道上。所以,你需要下载其他版本的sdkmanager或者AndroidStudio。

方法1,

下载Android Studio 3.5,然后再最新版本中下载新sdk。

The easiest way here is to download and install Android Studio 3.5. Don’t worry, you can have them both installed at the same time. Moreover, it’s easier to distinguish them both, since the Canary’s icon is yellow and the Stable version green.
You can download this version from the official .
这里下载新版本的3.5,使用最新版,下载和管理sdk和AVD。

 

方法2,

1,改变sdkmanager 频道

sdkmanager -update -channel=3
  • 0-stable
  • 1-beta
  • 2-developer
  • 3-canary

2,Android Studio → Preferences-->Appearance & Behaviour → System Settings → Updates

从stable修改到Canary。然后就可以升级sdk和emulator了。

转载地址:http://wnegi.baihongyu.com/

你可能感兴趣的文章
程序员每天早上早来10分钟的好处
查看>>
互联网30年,泡沫如梦,一个个泡沫和风口过后,会是什么样的结局
查看>>
升级centos 6.8 服务器的gcc
查看>>
API网关在微服务架构中的应用,这一篇就够了
查看>>
JVM发生内存溢出的8种原因、及解决办法
查看>>
SpringBoot2.0 基础案例(12):基于转账案例,演示事务管理操作
查看>>
高性能负载均衡:nginx搭建tomcat集群
查看>>
Spring切面中的正则表达式
查看>>
一直再说高并发,多少QPS才算高并发?
查看>>
Git恢复之前版本的两种方法reset、revert(图文详解)
查看>>
Maven打包的三种方式
查看>>
电商场景:并发扣库存,怎么保证不超卖又不影响并发性能
查看>>
分布式事务处理方式总结
查看>>
延迟队列有哪些实现方案?说说你的看法
查看>>
厉害了!我们老大半小时把我的springboot项目并发提升几倍
查看>>
Spring 中Bean 的生命周期
查看>>
为什么要用枚举实现单例模式(避免反射、序列化问题)
查看>>
微服务架构下的分布式限流方案思考
查看>>
全网最详细的一篇SpringCloud总结
查看>>
消息中间件中的有序消息,其实是排队但是不能插队
查看>>