What is the difference between Defined Methods and Referenced Methods in Android studio Apk Analyzer
问题 One of the new features in android studio 2.2 preview 1 is APK Analyzer and when you try it it give you statistics Defined Methods and Referenced Methods example output: This dex file defines 4118 classes with 28823 methods,and references 35206 methods 回答1: Defined methods are methods that you have written, or are using correctly based on the given situation. If a method is referenced, it only means that you (or other methods/objects in your code) are calling them. However, just because a