dequeueBuffer: can't dequeue multiple buffers without setting the buffer - android -


when want run app on smartphones have 4.4.2 or 4.4.4 android version got error :

/bufferqueue: [com.huawei.android.launcher/com.huawei.android.launcher.launcher] dequeuebuffer: can't dequeue multiple buffers without setting buffer count 

my gradle :

apply plugin: 'com.android.application'  android {     compilesdkversion 23     buildtoolsversion '24.0.0'      defaultconfig {         applicationid "*.*.*"         minsdkversion 16         targetsdkversion 23         versioncode 1         versionname "1.0"         jackoptions {             enabled true         }         // enabling multidex support.         multidexenabled true     }     buildtypes {         release {             debuggable false             minifyenabled false             shrinkresources false             proguardfiles getdefaultproguardfile('proguard-android.txt'), 'proguard-rules.pro'         }     }      compileoptions {         sourcecompatibility javaversion.version_1_8         targetcompatibility javaversion.version_1_8     }     dexoptions {         javamaxheapsize "2g"         incremental true         predexlibraries = false     } } repositories {     maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }     maven { url 'https://raw.github.com/felipecsl/m2repository/master' }    // maven { url "https://jitpack.io" }     mavencentral()  } dependencies {     compile filetree(include: ['*.jar'], dir: 'libs')     compile('com.github.florent37:materialviewpager:1.2.0@aar') {         transitive = true     }   // libraries... } 


Comments

Popular posts from this blog

java - SSE Emitter : Manage timeouts and complete() -

jquery - uncaught exception: DataTables Editor - remote hosting of code not allowed -

java - How to resolve error - package com.squareup.okhttp3 doesn't exist? -