Jan Rabe

Results 57 issues of Jan Rabe

here are just a few thoughts: - Security // how does proguard/r8 increase security? (obfuscation is not security) i'd put it under build instead i'd put oauth / keystore here...

crash for version version 0.9.33 ``` java.lang.IllegalStateException: register failed, the sensor listeners size has exceeded the maximum limit 128 at android.hardware.SystemSensorManager.registerListenerImpl(SystemSensorManager.java:192) at android.hardware.SensorManager.registerListener(SensorManager.java:818) at android.hardware.SensorManager.registerListener(SensorManager.java:725) at com.willowtreeapps.hyperion.core.internal.HyperionMenuController.onStart(HyperionMenuController.java:233) at com.willowtreeapps.hyperion.core.internal.HyperionServiceLifecycleDelegate.onActivityStarted(HyperionServiceLifecycleDelegate.java:33) at...

activity.recreate() and i get this error ``` Fatal Exception: java.lang.NullPointerException: Attempt to invoke virtual method 'float android.text.Layout.getLineLeft(int)' on a null object reference at com.hanks.htextview.base.HText$1.onGlobalLayout(HText.java:56) at android.view.ViewTreeObserver.dispatchOnGlobalLayout(ViewTreeObserver.java:945) at android.view.ViewRootImpl.performTraversals(ViewRootImpl.java:2250) at android.view.ViewRootImpl.doTraversal(ViewRootImpl.java:1392)...

Backlog

I believe the HText should have null checks if HText#mHTextView is null before posting animations. ``` java.lang.NullPointerException at com.hanks.htextview.scale.ScaleText$3.run(ScaleText.java:62) at android.os.Handler.handleCallback(Handler.java:730) at android.os.Handler.dispatchMessage(Handler.java:92) at android.os.Looper.loop(Looper.java:137) at android.app.ActivityThread.main(ActivityThread.java:5103) at java.lang.reflect.Method.invokeNative(Native Method)...

Backlog

- added .gitignore - migrated to androidx - updated dependencies - formatted code (obsolete with #23) however i added a separate pull request because androidx is probably the better idea...

added google maps 3 sdk #21 from my observation: pro: - camera movement is a bit faster - tiles load faster - api is compatible with maps2: routing, marker, tiles,...

the google maps team apparently is working on v3 https://developers.google.com/maps/documentation/android-sdk/v3-client-migration here are the examples: https://github.com/googlemaps/android-samples/tree/v3-beta as far as i can tell the api didn't change, only the package name would...

any idea how we can fix z-fighting for a zoomed image within a recyclerview? imagine you have 3 photos and zoom into the 2nd one, then the 2nd one will...