Exemple #1
0
def main_func(path):
    """
    Detect 3rd-party libraries in app.
    The detection result is printed.
    :param path: The path of target app.
    :return: None.
    """
    print "--Decoding--"
    detector = Detector()
    decoded_path = detector.get_smali(path)
    print decoded_path

    detector.merge_smali(path)
    detector.get_hash(decoded_path)