Antoine Vianey
Antoine Vianey
Quick / Dirty fix is to manually include dependencies : ``` implementation 'io.fotoapparat:fotoapparat:2.7.0' // add missing dependencies implementation "androidx.annotation:annotation:1.0.2" implementation "androidx.exifinterface:exifinterface:1.0.0" implementation "org.jetbrains.kotlin:kotlin-stdlib:1.3.30" ```
Your problem is not related... Might come from somewhere else, log indicates that you mix "androidx" with "android.support" which is not good You should switch to androidx now What is...
Obviously this check should wrap the `if(singleUpdate)` one https://github.com/mrmans0n/smart-location-lib/blob/8939ae96140e1a469f40a2dde1489002faca10ad/library/src/main/java/io/nlopez/smartlocation/location/providers/LocationManagerProvider.java#L52
In the meantime, one can silently catch the exception by registering a custom exception handler after crashlytics init Application#onCreate() /** * To be registered after Crashlytics init * Catch for...
I use this : ``` val badgeDrawable = BadgeDrawable.create(this) findViewById(R.id.control_calibrate).apply { viewTreeObserver.addOnGlobalLayoutListener { val field = BadgeDrawable::class.java.getDeclaredField("shapeDrawable") field.isAccessible = true (field.get(badgeDrawable) as MaterialShapeDrawable)?.let { it.strokeWidth = 0 /* set width...
The library targets SVG Basic And not SVG 1.1 specs... See http://www.w3.org/TR/SVGMobile/
thanks for the feedback, I'll look into this ;-)
rewrote the code... but havn't look into this while rewriting... As of today, setTerminal only means its a leaf Node corresponding to end of game But terminal should also be...
I planned it to be time based, see https://github.com/avianey/mcts4j/blob/master/mcts4j/src/main/java/fr/avianey/mcts4j/MonteCarloTreeSearch.java TODO line 59 you can do it by extracting the stop variable to a class field so that you can stop...