File tree Expand file tree Collapse file tree 2 files changed +18
-6
lines changed Expand file tree Collapse file tree 2 files changed +18
-6
lines changed Original file line number Diff line number Diff line change @@ -91,6 +91,15 @@ complete)::
91
91
92
92
sudo pacman -S core/autoconf core/automake core/gcc core/make core/patch core/pkgconf extra/cmake extra/jdk8-openjdk extra/python-pip extra/unzip extra/zip
93
93
94
+ On macOS::
95
+
96
+ brew cask install autoconf automake java8 libtool pkg-config
97
+
98
+ If Java 8 is no longer available you can still install it via::
99
+
100
+ brew tap homebrew/cask-versions
101
+ brew cask install homebrew/cask-versions/adoptopenjdk8
102
+
94
103
Installing Android SDK
95
104
~~~~~~~~~~~~~~~~~~~~~~
96
105
Original file line number Diff line number Diff line change @@ -165,6 +165,15 @@ In the similar fashion for macOS you need to install the :code:`java8` package::
165
165
brew cask install java8
166
166
167
167
168
+ Error: Cask 'java8' is unavailable: No Cask with this name exists
169
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
170
+
171
+ In order to install Java 8 on macOS you may need extra steps::
172
+
173
+ brew tap homebrew/cask-versions
174
+ brew cask install homebrew/cask-versions/adoptopenjdk8
175
+
176
+
168
177
JNI DETECTED ERROR IN APPLICATION: static jfieldID 0x0000000 not valid for class java.lang.Class<org.renpy.android.PythonActivity>
169
178
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
170
179
@@ -173,12 +182,6 @@ This error appears in the logcat log if you try to access
173
182
fix it, change your code to reference
174
183
``org.kivy.android.PythonActivity `` instead.
175
184
176
- websocket-client: if you see errors relating to 'SSL not available'
177
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
178
- Ensure you have the package backports.ssl-match-hostname in the buildozer requirements, since Kivy targets python 2.7.x
179
-
180
- You may also need sslopt={"cert_reqs": ssl.CERT_NONE} as a parameter to ws.run_forever() if you get an error relating to host verification
181
-
182
185
Requested API target 19 is not available, install it with the SDK android tool
183
186
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
184
187
You can’t perform that action at this time.
0 commit comments