File tree Expand file tree Collapse file tree 2 files changed +17
-4
lines changed Expand file tree Collapse file tree 2 files changed +17
-4
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ tap 'homebrew/cask'
3
3
tap 'homebrew/cask-versions'
4
4
tap 'homebrew/core'
5
5
tap 'homebrew/services'
6
- tap 'caskroom/cask'
7
6
8
7
brew 'archey'
9
8
brew 'ffmpeg'
@@ -21,7 +20,7 @@ brew 'python'
21
20
brew 'tig'
22
21
brew 'tree'
23
22
brew 'watchman'
24
- brew 'yarn' , args : [ 'without-node' ]
23
+ brew 'yarn'
25
24
brew 'youtube-dl'
26
25
brew 'z'
27
26
@@ -48,9 +47,16 @@ cask 'visual-studio-code'
48
47
cask 'vlc'
49
48
cask 'zoomus'
50
49
50
+
51
+ # Android React Native Development
51
52
# Use JAVA 8 which is the stablest version for Android.
52
53
# https://stackoverflow.com/questions/53059771/could-not-determine-java-version-from-11-0-1-when-running-npm-run-android
53
- cask 'java8'
54
+
55
+ cask 'adoptopenjdk8'
56
+ # https://github.com/AdoptOpenJDK/homebrew-openjdk/issues/106
57
+ # until the fix you can run
58
+ # brew cask install adoptopenjdk/openjdk/adoptopenjdk8
59
+
54
60
brew 'gradle'
55
61
cask 'android-file-transfer'
56
62
cask 'android-platform-tools'
Original file line number Diff line number Diff line change 14
14
15
15
## Install applications from the internet
16
16
17
+ Apple M1 Chip needs to add this alias
18
+ ```
19
+ alias ibrew='arch -x86_64 /usr/local/bin/brew'
20
+ ```
21
+
17
22
Automatically install applications from ` Brewfile `
18
23
19
- - [ ] ` brew bundle `
24
+ - [ ] ` ibrew bundle `
25
+
26
+ Check the result with ` echo $ANDROID_HOME `
20
27
21
28
## macOS defaults for hackers
22
29
You can’t perform that action at this time.
0 commit comments