I am ashamed to say that after two years of working in Android, I still can"t tell the difference between these three. After reading a few articles, I am a little uncertain
. Let me ask you a question:
suppose there is a statement print ("a") in the onCreate method in Api level 23;
suppose onCreate in Api level 24 changes this statement to print ("b");
suppose onCreate in Api level 25 changes this statement to print ("c");
so one of my APK, with a Target version of 24 and compile version of 25 runs on a mobile phone with version 23. Which onCreate method will output?
Thank you first