WrittenWord
WrittenWord
@ridsync try add this to file path of you file provider
replace brewAndStartAnimator like this: ``` private void brewAndStartAnimator(int dur, int finalXorY) { if (animator != null && animator.isRunning()) animator.cancel(); animator = ObjectAnimator.ofInt(StackLayoutManager.this, "animateValue", 0, finalXorY); animator.setDuration(dur); animator.start(); animator.addListener(new AnimatorListenerAdapter() {...
replace brewAndStartAnimator like this: ``` private void brewAndStartAnimator(int dur, int finalXorY) { if (animator != null && animator.isRunning()) animator.cancel(); animator = ObjectAnimator.ofInt(StackLayoutManager.this, "animateValue", 0, finalXorY); animator.setDuration(dur); animator.start(); animator.addListener(new AnimatorListenerAdapter() {...
work for me: ``` const functions = require('firebase-functions'); const admin = require('firebase-admin'); admin.initializeApp(); // replaces keywords with emoji in the "text" key of messages // pushed to /messages exports.emojify =...