sdk

How to Install Older iOS Simulators in XCode 4.2.1 (SDK5.0)

跟風遠走 提交于 2019-12-28 01:56:35
问题 I have just bought a new iMac. I then downloaded the latest SDK 5.0 and installed XCode 4.2.1. Everything is working fine. Though I realized that there are only iPhone and iPad Simulators 5.0 available for debugging. So I went on clicking the More Simulators... I click Install for all items and a while passed, and when I came back, it indicated as "Installed". But when I go back to my XCode, there are still just Simulators 5.0 in the list. So, how do I go about installing the older simulators

RN 环境搭建

馋奶兔 提交于 2019-12-28 00:15:36
一、windows 1.安装JDK jdk必须是1.8 2.安装Node.js (1)node版本必须>=10 (2)不要使用cnpm npm config set registry https://registry.npm.taobao.org --global npm config set disturl https://npm.taobao.org/dist --global 3.安装Yarn、React Native 的命令行工具 Yarn 是 Facebook 提供的替代 npm 的工具,可以加速 node 模块的下载。React Native 的命令行工具用于执行创建、初始化、更新项目、运行打包服务(packager)等任务 npm install -g yarn react-native-cli 安装完 yarn 后同理也要设置镜像源: yarn config set registry https://registry.npm.taobao.org --global yarn config set disturl https://npm.taobao.org/dist --global 安装完 yarn 之后就可以用 yarn 代替 npm 了,例如用 yarn 代替 npm install 命令,用 yarn add 某第三方库名 代替 npm install

React Native开发 - 搭建React Native开发环境

自作多情 提交于 2019-12-27 23:56:24
移动开发以前一般都是原生的语言来开发,Android开发是用Java语言,IOS的开发是Object-C或者Swift。那么对于开发一个App,至少需要两套代码、两个团队。对于公司来说,成本还是有的。然而现在有蛮多的公司开发App是基于React Native来开发的,这样可以做到一个App,就是一套代码,一个团队。对于公司来说,无疑节约了成本。 《React Native开发》这系列的文章主要是记录本人利用React Native学习开发的笔记,这一篇文章是第一篇《搭建React Native开发环境》。 1、安装NodeJs 由于React Native中有一些工具,例如react-native-cli,是要npm来安装,所以先得安装NodeJs。对于NodeJs的版本要求是必须高于8.3。 打开NodeJs的官网下载页面: https://nodejs.org/en/download/ 直接下载最新版本,可以下载绿色解压版本,也可以下载安装版本,我本人喜欢绿色版本,同时系统是64位的,如图: 解压好后,将NodeJs的所在目录配置到环境变量path中。 然后通过cmd命令设置npm镜像,即: npm config set registry https://registry.npm.taobao.org --global npm config set disturl https

某宝app抓包插件编写

大城市里の小女人 提交于 2019-12-27 23:47:28
分析客户端代码 通过jeb打开apk获知,核心通信包使用的是mtop sdk,普通抓包工具charles、findler无法捕获相应包的根本原因在于,其采用了网络加载速度表现更卓越的SPDY协议,因此,需要阻止其使用该协议,才能抓包。 代码实现 只需让sdk的全局配置中执行下面这行代码即可: SwitchConfig.getInstance().setGlobalSpdySwitchOpen(false) 抓包效果 有对具体细节感兴趣的可以通过名字联系我。 来源: 51CTO 作者: super19911115 链接: https://blog.51cto.com/14648912/2461223

Android app crashes after SDK-tools update version (NoClassDefFound, tool version 22)

时光总嘲笑我的痴心妄想 提交于 2019-12-27 21:46:13
问题 I have just updated my android SDK tools to the newly released version (tools version 22, platform tools version 17) java.lang.NoClassDefFoundError The .classpath file was modified. The update in added a line : <classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/> Before the SDK tools update, all my projects worked well !! I corrected my problem in this way : In the project properties (eclipse) -> java build path -> order and export make sure that all

Android app crashes after SDK-tools update version (NoClassDefFound, tool version 22)

江枫思渺然 提交于 2019-12-27 21:43:31
问题 I have just updated my android SDK tools to the newly released version (tools version 22, platform tools version 17) java.lang.NoClassDefFoundError The .classpath file was modified. The update in added a line : <classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/> Before the SDK tools update, all my projects worked well !! I corrected my problem in this way : In the project properties (eclipse) -> java build path -> order and export make sure that all

Running the new Intel emulator for Android

家住魔仙堡 提交于 2019-12-27 10:34:52
问题 Lately Google and Intel have published a new way to run the emulator, which should work much better than the previous version (which has emulated ARM CPU). Here are some links about it: this and this. However, after installing the new components and creating a new emulator configuration as instructed, I get an error and I also can't see any improvements. I've tried both API 10 and API 15, and with GPU enabled and disabled. None of those configurations helped. I've also tried it on two

Android开发平台搭建(Windows)

你。 提交于 2019-12-27 10:19:59
这里简单记录了下,在Windows下搭建Android开发平台. 1. 下载Android SDK. 当前最新版本为 android-sdk_r05-windows. http://developer.android.com/sdk/index.html 2. 下载JDK http://java.sun.com/javase/downloads/index.jsp 3.Eclipse IDE http://www.eclipse.org/downloads/ 这里使用的 Eclipse IDE for Java EE Developers 4. 安装 jdk-6u20-windows-i586.exe(JDK) 5. 安装android-sdk_r05-windows.zip 执行解压以后的SDK Setup.exe文件. 添加SDK的安装目录到系统环境变量中. 选择安装一些Package. 6. Eclipse 配置 加入 Android Plugin。 https://dl-ssl.google.com/android/eclipse/ 配置 Android Plugin 5. 一个简单的程序 6. 模拟器的运行效果 来源: https://www.cnblogs.com/ginohuo/archive/2010/05/06/1728896.html

Android SDK使用迅雷下载方法

人走茶凉 提交于 2019-12-27 02:43:51
安装SDK Manager后运行,发现需升级或下载的文件,然后只勾选其中一个,开始下载后可以在“android-sdks\temp”文件夹发现临时文件,如“google_apis-14_r02.zip” 然后把这个文件名的下载地址复制到迅雷进行下载,下载地址一般是“ https://dl-ssl.google.com/android/repository / ”+文件名,如下所示: https://dl-ssl.google.com/android/repository /google_apis-14_r02.zip 若不能正确获取下载地址则可在百度搜索“google_apis-14_r02.zip”即可在搜索结果里发现真实的下载地址 来源: https://www.cnblogs.com/dashi/archive/2013/03/10/4034668.html

idea启动项目报错:Error:java: JDK isn't specified for module 'XXXXX'

て烟熏妆下的殇ゞ 提交于 2019-12-27 02:31:38
file----project structure —modules—dependencies----modules sdk: 更改为自己安装的jdk即可,如果是 多模块则每个模块的jdk 都需要更换 来源: CSDN 作者: weixin_43152758 链接: https://blog.csdn.net/weixin_43152758/article/details/103709024