game.multiplayer = bundle.getString("multiplayer" ,null);
is giving the error:
java.lang.NoSuchMethodError: android.os.Bundle.getString
Other methods like
game.word.word = bundle.getStringArray("word");
work fine.
Anyone any idea?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
getString(key, defValue) was added in API 12. Use getString(key), as this will return null if the key doesn’t exist.