Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0e62f787 authored by Abhishek Aggarwal's avatar Abhishek Aggarwal Committed by Mohammed Althaf T
Browse files

feat(wobble): add wobble animations to apps and folders

parent 3df5b01d
Loading
Loading
Loading
Loading
+8 −3
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
    <uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" />
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools">

    <uses-permission
        android:name="android.permission.MANAGE_EXTERNAL_STORAGE"
        tools:ignore="ScopedStorage" />
    <uses-permission android:name="foundation.e.pwaplayer.provider.READ_WRITE" />

    <application android:icon="@mipmap/ic_launcher" />

+9 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
    android:duration="110"
    android:fromDegrees="-2"
    android:pivotX="50%"
    android:pivotY="50%"
    android:repeatCount="infinite"
    android:repeatMode="reverse"
    android:toDegrees="2" />
+9 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
    android:duration="110"
    android:fromDegrees="2"
    android:pivotX="50%"
    android:pivotY="50%"
    android:repeatCount="infinite"
    android:repeatMode="reverse"
    android:toDegrees="-2" />
+2.82 KiB
Loading image diff...
+3 −0
Original line number Diff line number Diff line
@@ -4,4 +4,7 @@
    <string name="search">Search</string>
    <string name="suggestions">SUGGESTIONS</string>
    <string name="maps">Maps</string>
    <string name="ok">OK</string>
    <string name="cancel">Cancel</string>
    <string name="uninstall_app">Do you want to uninstall this app?</string>
</resources>
Loading