Android Obfuscation Unknown Verification type

Source: Internet
Author: User

Android Engineering Package SDK, export jar has been confused, the jar is used by third parties, confusion occurs when Unknown verification type [*] in stack map frame problem, test found

if () {}else{log.ceratelog ("something");}

where log

public class Log {public static Boolean debug = False;public static void Ceratelog (String str) {if (debug) {log.i ("TAG", str) ;}}}

When Debug is False, the Createlog () method actually does not execute the content, and when confused the else part of the if else is reduced to cause this problem, the workaround is to either remove the else part directly or

Log.ceratelog ("something");
Split into two sentences.

String AA = "Something" Log.ceratelog (AA);


Android Obfuscation Unknown Verification type

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.