hhstore / blog

My Tech Blog: about Mojo / Rust / Golang / Python / Kotlin / Flutter / VueJS / Blockchain etc.
https://github.com/hhstore/blog/issues
296 stars 24 forks source link

Java/Kotlin: Tutorial #244

Open hhstore opened 3 years ago

hhstore commented 3 years ago

related:

kotlin:

flutter:

搭建开发环境:

hhstore commented 3 years ago

Java:

安装:

mac 下:

brew tap adoptopenjdk/openjdk

brew cask install adoptopenjdk8
brew cask install adoptopenjdk11
brew cask install adoptopenjdk13
export JAVA_8_HOME=$(/usr/libexec/java_home -v1.8)
export JAVA_11_HOME=$(/usr/libexec/java_home -v11)

alias java8='export JAVA_HOME=$JAVA_8_HOME'
alias java11='export JAVA_HOME=$JAVA_11_HOME'

# default to Java 11
java11
# 版本管理工具: 
brew install jenv 

$ echo 'export PATH="$HOME/.jenv/bin:$PATH"' >> ~/.bash_profile
$ echo 'eval "$(jenv init -)"' >> ~/.bash_profile

$ echo 'export PATH="$HOME/.jenv/bin:$PATH"' >> ~/.zshrc
$ echo 'eval "$(jenv init -)"' >> ~/.zshrc
hhstore commented 3 years ago

Kotlin:

安装:

$ brew update
$ brew install kotlin

Android Studio 配置:

基本语法:

hhstore commented 3 years ago

1

hhstore commented 3 years ago

1

hhstore commented 3 years ago

1