1
- import { colors as c } from "../lib/color" ;
2
- import { IJob } from "../lib/interfaces" ;
3
- import * as jobs from "../lib/jobs" ;
4
- import { ICurrentActivityFragment } from "./lib/interfaces" ;
1
+ import { colors as c } from "../lib/color.js " ;
2
+ import { IJob } from "../lib/interfaces.js " ;
3
+ import * as jobs from "../lib/jobs.js " ;
4
+ import { ICurrentActivityFragment } from "./lib/interfaces.js " ;
5
5
import {
6
6
getApplicationContext ,
7
7
R ,
8
8
wrapJavaPerform
9
- } from "./lib/libjava" ;
9
+ } from "./lib/libjava.js " ;
10
10
import {
11
11
Activity ,
12
12
ActivityClientRecord ,
@@ -16,7 +16,7 @@ import {
16
16
PackageManager ,
17
17
Throwable ,
18
18
JavaMethodsOverloadsResult ,
19
- } from "./lib/types" ;
19
+ } from "./lib/types.js " ;
20
20
21
21
enum PatternType {
22
22
Regex = 'regex' ,
@@ -400,7 +400,12 @@ const watchMethod = (
400
400
} ;
401
401
402
402
// Push the implementation so that it can be nulled later
403
- job . implementations . push ( m ) ;
403
+ if ( job . implementations ) {
404
+ job . implementations . push ( m ) ;
405
+ } else {
406
+ job . implementations = [ m ] ;
407
+ }
408
+
404
409
} ) ;
405
410
} ) ;
406
411
} ;
@@ -468,7 +473,7 @@ export const getServices = (): Promise<string[]> => {
468
473
// not using the helper as we need other variables too
469
474
const context = currentApplication . getApplicationContext ( ) ;
470
475
471
- let services = [ ] ;
476
+ var services : string [ ] = [ ] ;
472
477
473
478
currentApplication . mLoadedApk . value . mServices . value . values ( ) . toArray ( ) . map ( ( potentialServices ) => {
474
479
Java . cast ( potentialServices , arrayMap ) . keySet ( ) . toArray ( ) . map ( ( service ) => {
@@ -502,7 +507,7 @@ export const getBroadcastReceivers = (): Promise<string[]> => {
502
507
GET_RECEIVERS
503
508
) . receivers . value
504
509
505
- let receivers = [ ] ;
510
+ var receivers : string [ ] = [ ] ;
506
511
507
512
currentApplication . mLoadedApk . value . mReceivers . value . values ( ) . toArray ( ) . map ( ( potentialReceivers ) => {
508
513
Java . cast ( potentialReceivers , arrayMap ) . keySet ( ) . toArray ( ) . map ( ( receiver ) => {
@@ -565,7 +570,12 @@ export const setReturnValue = (fqClazz: string, filterOverload: string | null, n
565
570
} ;
566
571
567
572
// record override
568
- job . implementations . push ( m ) ;
573
+ if ( job . implementations ) {
574
+ job . implementations . push ( m ) ;
575
+ } else {
576
+ job . implementations = [ m ] ;
577
+ }
578
+
569
579
} ) ;
570
580
571
581
jobs . add ( job ) ;
0 commit comments