Can this Android animation be used in compose mult...
# compose
j
Can this Android animation be used in compose multiplatform?
Copy code
<?xml version="1.0" encoding="utf-8"?>
<animated-vector xmlns:android="<http://schemas.android.com/apk/res/android>"
    android:drawable="@drawable/syncing"
    xmlns:aapt="<http://schemas.android.com/aapt>">
    <target android:name="rotationGroup">
    <aapt:attr name="android:animation">
        <set android:interpolator="@android:anim/linear_interpolator">
    <objectAnimator
        android:duration="10000"
        android:propertyName="rotation"
        android:valueFrom="360"
        android:valueTo="0"
        android:repeatCount="-1"
        android:interpolator="@android:anim/linear_interpolator"
        />
        </set>
    </aapt:attr>
    </target>


</animated-vector>
🚫 4