File tree 2 files changed +3
-3
lines changed
pythonforandroid/bootstraps/webview/build
src/main/java/org/kivy/android
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ public String getEntryPoint(String search_dir) {
69
69
List <String > entryPoints = new ArrayList <String >();
70
70
entryPoints .add ("main.pyo" ); // python 2 compiled files
71
71
entryPoints .add ("main.pyc" ); // python 3 compiled files
72
- for (String value : entryPoints ) {
72
+ for (String value : entryPoints ) {
73
73
File mainFile = new File (search_dir + "/" + value );
74
74
if (mainFile .exists ()) {
75
75
return value ;
@@ -303,7 +303,7 @@ protected void showLoadingScreen() {
303
303
mImageView .setImageBitmap (bitmap );
304
304
305
305
/*
306
- * Set the presplash loading screen background color
306
+ * Set the presplash loading screen background color
307
307
* https://developer.android.com/reference/android/graphics/Color.html
308
308
* Parse the color string, and return the corresponding color-int.
309
309
* If the string cannot be parsed, throws an IllegalArgumentException exception.
Original file line number Diff line number Diff line change 13
13
import org .kivy .android .PythonActivity ;
14
14
15
15
public class WebViewLoader {
16
- private static final String TAG = "WebViewLoader" ;
16
+ private static final String TAG = "WebViewLoader" ;
17
17
18
18
public static void testConnection () {
19
19
You can’t perform that action at this time.
0 commit comments