99```
1010ANDROID_SDK_HOME=~/.buildozer/android/platform/android-sdk-20
1111ANDROID_NDK_HOME=~/.buildozer/android/platform/android-ndk-r9c
12- CRYSTAX_NDK_HOME=~/.buildozer/crystax-ndk
1312./ci/rebuild_update_recipes.py
1413```
1514
2019 [ERROR]: Didn't find any valid dependency graphs.
2120 [ERROR]: This means that some of your requirements pull in conflicting dependencies.
2221- only rebuilds on sdl2 bootstrap
23- - supports mainly python3crystax with fallback to python2, but no python3 support
22+ - supports mainly python3 with fallback to python2
2423"""
2524import sh
2625import os
@@ -56,9 +55,7 @@ def build(target_python, requirements):
5655 testapp = 'setup_testapp_python2.py'
5756 android_sdk_home = os .environ ['ANDROID_SDK_HOME' ]
5857 android_ndk_home = os .environ ['ANDROID_NDK_HOME' ]
59- crystax_ndk_home = os .environ ['CRYSTAX_NDK_HOME' ]
60- if target_python == TargetPython .python3crystax :
61- android_ndk_home = crystax_ndk_home
58+ if target_python == TargetPython .python3 :
6259 testapp = 'setup_testapp_python3.py'
6360 requirements .add (target_python .name )
6461 requirements = ',' .join (requirements )
@@ -75,7 +72,7 @@ def build(target_python, requirements):
7572
7673
7774def main ():
78- target_python = TargetPython .python3crystax
75+ target_python = TargetPython .python3
7976 recipes = modified_recipes ()
8077 print ('recipes modified:' , recipes )
8178 recipes -= CORE_RECIPES
0 commit comments