I\'m currently dealing with a particular issue with my paid application. Internally it contains a licensing check. The app is patched by hackers by modifying the app apk/j
Not sure about android but in standard JDK you would do something like this:
try { Class.forName( "your.fqdn.class.name" ); } catch( ClassNotFoundException e ) { //my class isn't there! }