File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
pythonforandroid/bootstraps/sdl2/build/src/main/java/org/kivy/android Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -151,7 +151,7 @@ protected void onPostExecute(String result) {
151
151
File path = new File (getIntent ().getData ().getSchemeSpecificPart ());
152
152
153
153
Project p = Project .scanDirectory (path );
154
- String custom_orientation = this .getExtra ("orientation" );
154
+ String custom_orientation = PythonActivity . mActivity .getExtra ("orientation" );
155
155
156
156
String entry_point = getEntryPoint (p .dir );
157
157
SDLActivity .nativeSetenv ("ANDROID_ENTRYPOINT" , p .dir + "/" + entry_point );
@@ -505,7 +505,7 @@ public String getEntryPoint(String search_dir) {
505
505
* have a compiled version or not.
506
506
*/
507
507
List <String > entryPoints = new ArrayList <String >();
508
- String extra = this .getExtra ("entrypoint" );
508
+ String extra = PythonActivity . mActivity .getExtra ("entrypoint" );
509
509
if (extra != "" )
510
510
entryPoints .add (extra ); // custom entrypoint
511
511
You can’t perform that action at this time.
0 commit comments