$ keytool -genkey -v -keystore debug.keystore -storepass android -alias androiddebugkey -keypass android -keyalg RSA -keysize 2048 -validity 10000 -dname "C=US, O=Android, CN=Android Debug"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| KEYMAPOPTS="us us" | |
| HOSTNAMEOPTS="-n alpine" | |
| INTERFACESOPTS="auto lo | |
| iface lo inet loopback | |
| auto eth0 | |
| iface eth0 inet dhcp | |
| hostname alpine | |
| " | |
| TIMEZONEOPTS="-z UTC" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| sudo apt-get install -y \ | |
| apt-transport-https \ | |
| ca-certificates \ | |
| curl \ | |
| gnupg2 \ | |
| software-properties-common | |
| curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add - |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Install Android SDK CLI (Work in Progress) | |
| ## Install Java 8 | |
| ```bash | |
| sudo apt install openjdk-8-jdk-headless | |
| ``` | |
| ## Android SDK |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Installing the Guest Additions on a GUI-less server | |
| Start VirtualBox. | |
| Start the host in question. | |
| Once the host has booted, click Devices | Insert Guest Additions CD Image. | |
| Log in to your guest server. | |
| Mount the CD-ROM with the command sudo mount /dev/cdrom /media/cdrom. | |
| Change into the mounted directory with the command cd /media/cdrom. | |
| Install the necessary dependencies with the command sudo apt-get install -y dkms build-essential linux-headers-generic linux-headers-$(uname -r). | |
| Change to the root user with the command sudo su. | |
| Install the Guest Additions package with the command ./VBoxLinuxAdditions.run. |
from : http://blog.csdn.net/keenweiwei/article/details/51473796
2018-1-5 23:53:38 测试可用
2016年05月22日 09:49:11
Visual Studio Professional 2015简体中文版(专业版) KEY:HMGNV-WCYXV-X7G9W-YCX63-B98R2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { PureComponent } from 'react'; | |
| import { InteractionManager } from 'react-native'; | |
| class WaitForUI extends PureComponent { | |
| constructor(props) { | |
| super(props); | |
| this.state = { | |
| interactionsComplete: false, | |
| }; | |
| } |
NewerOlder