Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/source/apis.rst
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ With Kivy, add an ``on_pause`` method to your App class, which returns True::

With the webview bootstrap, pausing should work automatically.

Under SDL2, you can handle the `appropriate events <https://wiki.libsdl.org/SDL_EventType>`__ (see SDL_APP_WILLENTERBACKGROUND etc.).
Under SDL2, you can handle the `appropriate events <https://wiki.libsdl.org/SDL3/SDL_EventType>`__ (see SDL_APP_WILLENTERBACKGROUND etc.).


Observing Activity result
Expand Down
12 changes: 12 additions & 0 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,3 +321,15 @@ def get_version():
r"https://github.com/kivy/python-for-android/blob.*",
]

# Allow redirects for URLs where we prefer to keep the original form
linkcheck_allowed_redirects = {
# Kivy chat redirects to Discord invite
r"https://chat\.kivy\.org/": r"https://discord\.com/.*",
# GitHub archive URLs redirect to codeload
r"https://github\.com/kivy/python-for-android/archive/.*": r"https://codeload\.github\.com/.*",
# GitHub gist homepage redirects to starred
r"https://gist\.github\.com/$": r"https://gist\.github\.com/.*",
# Google Play Store redirects
r"https://play\.google\.com/store/$": r"https://play\.google\.com/store/.*",
}

4 changes: 2 additions & 2 deletions doc/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ It can generate:

It supports multiple CPU architectures.

It supports apps developed with `Kivy framework <http://kivy.org>`_, but was
It supports apps developed with `Kivy framework <https://kivy.org/>`_, but was
built to be flexible about the backend libraries (through "bootstraps"), and
also supports `PySDL2 <https://pypi.org/project/PySDL2/>`_, and a
`WebView <https://developer.android.com/reference/android/webkit/WebView>`_ with
Expand All @@ -34,7 +34,7 @@ dependencies for Android devices, and bundling it with the app's python code
and dependencies. The Python code is then interpreted on the Android device.

It is recommended that python-for-android be used via
`Buildozer <https://buildozer.readthedocs.io/>`_, which ensures the correct
`Buildozer <https://buildozer.readthedocs.io/en/latest/>`_, which ensures the correct
dependencies are pre-installed, and centralizes the configuration. However,
python-for-android is not limited to being used with Buildozer.

Expand Down
Loading