Paul Blundell

Results 25 issues of Paul Blundell

Getting what I think is a false positive with the `checkProcMaps` method. It states: ``` /** * /proc/self/maps should not have libraries or APK from other /data/app and /data/data folders,...

https://github.com/su-vikas/conbeerlib/blob/master/conbeerlib/src/main/AndroidManifest.xml#L8 ![image](https://user-images.githubusercontent.com/655860/122051875-fad9a980-cddc-11eb-95c1-d8773486e7e0.png) https://github.com/su-vikas/conbeerlib/blob/master/conbeerlib/src/main/java/com/suvikas/conbeer/ConBeer.java#L400-L417 ![image](https://user-images.githubusercontent.com/655860/122051994-1c3a9580-cddd-11eb-97ab-f5ab14bdfc35.png) The code above will always return `true` for `isContainer` because the BroadcastReceiver in the Manifest is disabled. or am I missing something?

https://github.com/su-vikas/conbeerlib/blob/master/conbeerlib/src/main/java/com/suvikas/conbeer/ConBeer.java#L401 > intent.setPackage("com.container.com.suvikas.conware"); This is the package you use when attempting to start the broadcast receiver. Is this a typo or correct? Does it have something to do with running...

Me again :-) We are hitting this issue here: https://github.com/alibaba/ARouter/issues/1018 The source code says ``` // These class was generated by arouter-compiler. ``` So I was wondering if this is...

Your docs state: > [ACCESS_COARSE_LOCATION](https://developer.android.com/reference/android/Manifest.permission#ACCESS_COARSE_LOCATION): Apps targeting Android 12 (API 31) and above must also request this permission in addition to [ACCESS_FINE_LOCATION](https://developer.android.com/reference/android/Manifest.permission.html#ACCESS_FINE_LOCATION). However your code only requests the SCAN permission:...