-
Notifications
You must be signed in to change notification settings - Fork 6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Demo app fails to run on 2.3.4 #7
Comments
Duplicate of #8 |
it's not a duplicate but it can be solved easily by replacing addAll to adding for each item. Please modify your Demo app to remove such silly errors |
It's a duplicate because addAll is fine for API levels >= 16. This crash only occurs on API levels < 11, so once the correct minSdkVersion (16) is enforced, this wont be an issue. |
Closed
b95505017
pushed a commit
to b95505017/ExoPlayer
that referenced
this issue
Dec 14, 2015
Fix a typo in README
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
01-14 21:41:21.336 6953-6953/? E/AndroidRuntime﹕ FATAL EXCEPTION: main
java.lang.NoSuchMethodError: com.google.android.exoplayer.demo.SampleChooserActivity$SampleAdapter.addAll
at com.google.android.exoplayer.demo.SampleChooserActivity.onCreate(SampleChooserActivity.java:52)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1660)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1716)
at android.app.ActivityThread.access$1500(ActivityThread.java:124)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:968)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:130)
at android.app.ActivityThread.main(ActivityThread.java:3806)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:507)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
at dalvik.system.NativeStart.main(Native Method)
The text was updated successfully, but these errors were encountered: