Open mu29 opened 7 years ago
This will fix issues on Android 4.2 (API 16), #5 : java.lang.IllegalArgumentException: Context must not be null
java.lang.IllegalArgumentException: Context must not be null
Because mGestureDetector variable declared with final, it initialized before calling BouncyAdapter constructor which set mContext variable.
mGestureDetector
BouncyAdapter
mContext
This will fix issues on Android 4.2 (API 16), #5 :
java.lang.IllegalArgumentException: Context must not be null
Because
mGestureDetector
variable declared with final, it initialized before callingBouncyAdapter
constructor which setmContext
variable.