File tree Expand file tree Collapse file tree
client/src/org/kvdeveloper/client Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,7 +11,13 @@ public class ClientActivity extends PythonActivity {
1111 private static final String TAG = "ClientActivity" ;
1212
1313 @ Override
14- protected String getEntryPoint () {
14+ protected void onCreate (Bundle savedInstanceState ) {
15+ Log .i (TAG , "ClientActivity started" );
16+ super .onCreate (savedInstanceState );
17+ }
18+
19+ @ Override
20+ public String getEntryPoint (String searchDir ) {
1521 Uri uri = getIntent ().getData ();
1622 if (uri != null ) {
1723 String path = uri .getPath ();
@@ -23,12 +29,6 @@ protected String getEntryPoint() {
2329 }
2430 }
2531
26- @ Override
27- protected void onCreate (Bundle savedInstanceState ) {
28- Log .i (TAG , "ClientActivity started" );
29- super .onCreate (savedInstanceState );
30- }
31-
3232 @ Override
3333 public boolean dispatchKeyEvent (KeyEvent event ) {
3434 int keyCode = event .getKeyCode ();
You can’t perform that action at this time.
0 commit comments