Open majestyhao opened 8 years ago
In ArrayToString1 String[] array = new String[1]; array[1] = imei;
String[] array = new String[1];
array[1] = imei;
I think the second line should be
array[0] = imei;
Duplicate of https://github.com/secure-software-engineering/DroidBench/issues/23 . There is a pull request: https://github.com/secure-software-engineering/DroidBench/pull/25
In ArrayToString1
String[] array = new String[1];
array[1] = imei;
I think the second line should be
array[0] = imei;