首页 > 其他分享 >将android studio安装到D盘

将android studio安装到D盘

时间:2024-07-09 15:22:20浏览次数:15  
标签:Install 35 studio Emulator D盘 android Android SDK

  • 双击exe安装,勾选

  • 指定到D盘

  • 复选框为[不创建快捷方式],点击[Install]

  • 安装完成启动

  • 不导入设置

  • 不发送信息

  • 取消

  • 下一步

  • 自定义设置

  • 设置主题

  • 指定sdk下载位置

  • 下一步

  • 下一步

  • 同意

  • 开始下载

  • 下载完成

点击查看详情
Preparing "Install Google APIs Intel x86_64 Atom System Image API 35 (revision 6)".
Downloading https://dl.google.com/android/repository/sys-img/google_apis/x86_64-35_r06.zip
"Install Google APIs Intel x86_64 Atom System Image API 35 (revision 6)" ready.
Installing Google APIs Intel x86_64 Atom System Image in D:\Android\Sdk\system-images\android-35\google_apis\x86_64
"Install Google APIs Intel x86_64 Atom System Image API 35 (revision 6)" complete.
"Install Google APIs Intel x86_64 Atom System Image API 35 (revision 6)" finished.
Preparing "Install Android Emulator hypervisor driver (installer) v.2.2.0".
Downloading https://dl.google.com/android/repository/aehd-windows_v2.2.zip
"Install Android Emulator hypervisor driver (installer) v.2.2.0" ready.
Installing Android Emulator hypervisor driver (installer) in D:\Android\Sdk\extras\google\Android_Emulator_Hypervisor_Driver
"Install Android Emulator hypervisor driver (installer) v.2.2.0" complete.
"Install Android Emulator hypervisor driver (installer) v.2.2.0" finished.
Preparing "Install Sources for Android 35 v.1".
Downloading https://dl.google.com/android/repository/source-35_r01.zip
"Install Sources for Android 35 v.1" ready.
Installing Sources for Android 35 in D:\Android\Sdk\sources\android-35
"Install Sources for Android 35 v.1" complete.
"Install Sources for Android 35 v.1" finished.
Preparing "Install Android SDK Platform 35 (revision 1)".
Downloading https://dl.google.com/android/repository/platform-35_r01.zip
"Install Android SDK Platform 35 (revision 1)" ready.
Installing Android SDK Platform 35 in D:\Android\Sdk\platforms\android-35
"Install Android SDK Platform 35 (revision 1)" complete.
"Install Android SDK Platform 35 (revision 1)" finished.
Preparing "Install Android SDK Build-Tools 35 v.35.0.0".
Downloading https://dl.google.com/android/repository/build-tools_r35_windows.zip
"Install Android SDK Build-Tools 35 v.35.0.0" ready.
Installing Android SDK Build-Tools 35 in D:\Android\Sdk\build-tools\35.0.0
"Install Android SDK Build-Tools 35 v.35.0.0" complete.
"Install Android SDK Build-Tools 35 v.35.0.0" finished.
Preparing "Install Android SDK Platform-Tools v.35.0.1".
Downloading https://dl.google.com/android/repository/platform-tools_r35.0.1-win.zip
"Install Android SDK Platform-Tools v.35.0.1" ready.
Installing Android SDK Platform-Tools in D:\Android\Sdk\platform-tools
"Install Android SDK Platform-Tools v.35.0.1" complete.
"Install Android SDK Platform-Tools v.35.0.1" finished.
Preparing "Install Android Emulator v.34.2.15".
Downloading https://dl.google.com/android/repository/emulator-windows_x64-11906825.zip
"Install Android Emulator v.34.2.15" ready.
Installing Android Emulator in D:\Android\Sdk\emulator
"Install Android Emulator v.34.2.15" complete.
"Install Android Emulator v.34.2.15" finished.
Parsing D:\Android\Sdk\build-tools\35.0.0\package.xml
Parsing D:\Android\Sdk\emulator\package.xml
Parsing D:\Android\Sdk\extras\google\Android_Emulator_Hypervisor_Driver\package.xml
Parsing D:\Android\Sdk\platform-tools\package.xml
Parsing D:\Android\Sdk\platforms\android-35\package.xml
Parsing D:\Android\Sdk\sources\android-35\package.xml
Parsing D:\Android\Sdk\system-images\android-35\google_apis\x86_64\package.xml
Android SDK is up to date.
Running Android Emulator hypervisor driver installer
Android Emulator hypervisor driver installation failed. To install Android Emulator hypervisor driver follow the instructions found at: https://github.com/google/android-emulator-hypervisor-driver
Creating Android virtual device
Android virtual device Pixel_3a_API_35_extension_level_13_x86_64 was successfully created

标签:Install,35,studio,Emulator,D盘,android,Android,SDK
From: https://www.cnblogs.com/dogleftover/p/18291938

相关文章

  • 探索Google AI Studio的无限可能:从设计到代码的全新体验
    探索GoogleAIStudio的无限可能:从设计到代码的全新体验在2024年的GoogleI/O开发者大会上,Google展示了一项令人兴奋的实时演示:Gemini能够将应用程序UI的线框草图转换为JetpackCompose代码,直接在AndroidStudio中进行。这一功能基于Gemini的核心能力,虽然我们仍在不断优化......
  • Android面试题之Activity的启动模式和flag
    本文首发于公众号“AntDream”,欢迎微信搜索“AntDream”或扫描文章底部二维码关注,和我一起每天进步一点点Activity中的几种启动模式activity的几种启动模式是android中常考的知识点,一般会考察有哪几种启动模式,以及每种启动模式在什么场景下使用:standard:这个是android......
  • Android |(六)基础控件10 RecycleView 滑动【进阶】
      RecyclerView是官方在5.0之后新添加的控件,推出用来替代传统的ListView和GridView列表控件。一、RecycleView(一)总:添加RecycleView控件(1)activity_main中(2)初始化 (3)setLayoutManager()listRv.setLayoutManager(newLinearLayoutManager(this));RecyclerView提供......
  • 015 Creating First C# App using Visual Studio
    CreatingFirstC#App示例代码Program.csclassSample{  staticvoidMain()  {    System.Console.WriteLine("Hello");    System.Console.ReadKey();  }}......
  • Android全局替换字体
    一、概述由于业务需要,各端之间统一字体(Android、IOS、PC、网页)。所以android也需要替换成特定的字体。以后有可能还会增加其他的字体。方案:使用LayoutInflaterCompat.setFactory2来全局替换字体。这样做的好处是可以一次性的替换大部分的字体。剩余的个性......
  • 纯小白uni-app+Android Studio离线打包
    一、HBulderX(1)cloud:开发者中心 注册登录(2)HBulderX登录开发者中心的账号,创建uni-app项目-》test,此时点击test下文件mainfest.json,会出现如下uni-app的AppID 同时在CLOUD上也会出现此项目,注意,项目名称和AppID要对上 (3)HBulderX本地打包 打包结果如下,期间要下什么插件,就让......
  • Android:如何绘制View
    点击查看Android如何绘制视图官网一、简介Android框架会在Activity获得焦点时请求Activity绘制其布局。Android框架会处理绘制流程,但该Activity必须提供其布局层次结构的根节点。Android框架会绘制布局的根节点,并测量和绘制布局树。它会通过遍历布局树并渲染......
  • Android 10.0 SystemUI启动流程
    1、手机开机后,Android系统首先会创建一个Zygote(核心进程)。2、由Zygote启动SystemServer。3、SystemServer会启动系统运行所需的众多核心服务和普通服务、以及一些应用及数据。例如:SystemUI启动就是从SystemServer里启动的。4、进入锁屏界面,开机完成。SystemServer中......
  • 晚上定时编译android系统
    1、问题可能偶然想晚上定时编译android系统2、解决at.sh#!/bin/sh#at-fat.shnow+1min#at-lset-eset-xecho$SHELLecho'atbuildbegin'/bin/date>>at_build.log/bin/bash-c'sourcebuild/envsetup.sh>>at_build.log2>&1;lu......
  • Android开发——使用Android Studio封装SDK(二) jar
    前言:什么叫SDK?  软件开发工具包(SoftwareDevelopmentKit,缩写SDK)一般是一些软件工程师为特定的软件包、软件框架、硬件平台、操作系统等建立应用软件时的开发工具的集合。  Android常见的SDK有哪些形式?   (1).so库:是C或C++语言而打包成的库。   (2)......