[
  {
    "path": ".gitignore",
    "content": ".gradle\n/local.properties\n/.idea/workspace.xml\n.DS_Store\n/build\n# built application files\n*.apk\n*.ap_\n\n# files for the dex VM\n*.dex\n\n# Java class files\n*.class\n.DS_Store\n\n# generated files\nbin/\ngen/\nWiki/\n\n# Local configuration file (sdk path, etc)\nlocal.properties\n\n# Eclipse project files\n.classpath\n.project\n.settings/\n\n# Proguard folder generated by Eclipse\nproguard/\n\n#Android Studio\nbuild/\n\n# Intellij project files\n*.iml\n*.ipr\n*.iws\n.idea/\n\n#gradle\n.gradle/\n"
  },
  {
    "path": ".travis.yml",
    "content": "language: android\nandroid:\n  components:\n  - tools\n  - platform-tools\n  - build-tools-25.0.2\n  - android-25\n  - extra-android-support\n  - extra\n  - extra-android-m2repository\nscript:\n  - ./gradlew assembleDebug"
  },
  {
    "path": "License",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2014 daimajia\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "# Android View Animations [![Build Status](https://travis-ci.org/daimajia/AndroidViewAnimations.svg)](https://travis-ci.org/daimajia/AndroidViewAnimations)\n\nOne day, I saw [an iOS library](https://github.com/ArtFeel/AFViewShaker), which is a view shaker, it's very beautiful. I think Android also need one, and should be better.\n\nSo, I started to collect animation effects... and in two days, this project born.\n\n# Demo\n\n![](http://ww3.sinaimg.cn/mw690/610dc034gw1ej75mi2w77g20c30jb4qr.gif)\n\n[Download Demo](https://github.com/daimajia/AndroidViewAnimations/releases/download/v1.1.2/AndroidViewAnimations-1.1.2.apk)\n# Usage\n\n> Since Version 2.0, NineOldAndroids has been removed. Thanks Jake Wharton.\n\nFor making animations more real, I created another project named [Android Easing Functions](https://github.com/daimajia/AnimationEasingFunctions) which is an implementations of [easing functions](http://easings.net/) on Android. So, we need to dependent that project.\n\n## Step 1\n\n#### Gradle\n```groovy\ndependencies {\n    implementation 'com.daimajia.androidanimations:library:2.4@aar'\n}\n```\n#### Maven\n\n```xml\n<dependency>\n    <groupId>com.daimajia.androidanimation</groupId>\n    <artifactId>library</artifactId>\n    <version>2.4</version>\n</dependency>\n```\n\n## Step 2\n\nJust like play Yo-yo.\n\n```java\nYoYo.with(Techniques.Tada)\n    .duration(700)\n    .repeat(5)\n    .playOn(findViewById(R.id.edit_area));\n```\n\n### Effects\n#### Attension\n`Flash`, `Pulse`, `RubberBand`, `Shake`, `Swing`, `Wobble`, `Bounce`, `Tada`, `StandUp`, `Wave`\n\n#### Special\n`Hinge`, `RollIn`, `RollOut`,`Landing`,`TakingOff`,`DropOut`\n\n#### Bounce\n`BounceIn`, `BounceInDown`, `BounceInLeft`, `BounceInRight`, `BounceInUp`\n\n#### Fade\n`FadeIn`, `FadeInUp`, `FadeInDown`, `FadeInLeft`, `FadeInRight`\n\n`FadeOut`, `FadeOutDown`, `FadeOutLeft`, `FadeOutRight`, `FadeOutUp`\n\n#### Flip\n`FlipInX`, `FlipOutX`, `FlipOutY`\n\n#### Rotate\n`RotateIn`, `RotateInDownLeft`, `RotateInDownRight`, `RotateInUpLeft`, `RotateInUpRight`\n\n`RotateOut`, `RotateOutDownLeft`, `RotateOutDownRight`, `RotateOutUpLeft`, `RotateOutUpRight`\n\n#### Slide\n`SlideInLeft`, `SlideInRight`, `SlideInUp`, `SlideInDown`\n\n`SlideOutLeft`, `SlideOutRight`, `SlideOutUp`, `SlideOutDown`\n\n#### Zoom\n`ZoomIn`, `ZoomInDown`, `ZoomInLeft`, `ZoomInRight`, `ZoomInUp`\n\n`ZoomOut`, `ZoomOutDown`, `ZoomOutLeft`, `ZoomOutRight`, `ZoomOutUp`\n\nWelcome contribute your amazing animation effect. :-D\n\n# Thanks\n\n- [AFViewShaker](https://github.com/ArtFeel/AFViewShaker)\n- [Animate.css](https://github.com/daneden/animate.css)\n\n# Why YoYo?\n\nYoYo is a [toy](https://en.wikipedia.org/wiki/Yo-yo), with a lot of [Techniques](./library/src/main/java/com/daimajia/androidanimations/library/Techniques.java).\n\n# About me\n\n(2013)\nA student in mainland China.\n\nWelcome to [offer me an internship](mailto:daimajia@gmail.com).\nIf you have any new idea about this project, feel free to [contact me](mailto:daimajia@gmail.com).\n\n(2019)\nFive years later, now I become an investment associate in China.\n\nWelcome to send your business plan to [me](mailto:daimajia@gmail.com). Maybe I would have a better understanding on your startup project than others. Trust me.\n"
  },
  {
    "path": "build.gradle",
    "content": "buildscript {\n    repositories {\n        jcenter()\n        google()\n    }\n\n    dependencies {\n        classpath 'com.android.tools.build:gradle:4.0.1'\n    }\n}\n\nallprojects {\n    repositories {\n        jcenter()\n        google()\n    }\n}\n"
  },
  {
    "path": "demo/.gitignore",
    "content": "/build\n"
  },
  {
    "path": "demo/build.gradle",
    "content": "apply plugin: 'com.android.application'\n\nandroid {\n    compileSdkVersion COMPILE_SDK_VERSION.toInteger()\n\n    defaultConfig {\n        applicationId GROUP\n        minSdkVersion MIN_SDK_VERSION.toInteger()\n        targetSdkVersion TARGET_SDK_VERSION.toInteger()\n        versionCode VERSION_CODE.toInteger()\n        versionName VERSION_NAME\n    }\n\n    buildTypes {\n        release {\n            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'\n        }\n    }\n\n    lintOptions{\n        abortOnError false\n    }\n}\n\ndependencies {\n    implementation fileTree(dir: 'libs', include: ['*.jar'])\n    implementation project(':library')\n}\n"
  },
  {
    "path": "demo/proguard-rules.pro",
    "content": "# Add project specific ProGuard rules here.\n# By default, the flags in this file are appended to flags specified\n# in /Applications/Android Studio.app/sdk/tools/proguard/proguard-android.txt\n# You can edit the include path and order by changing the proguardFiles\n# directive in build.gradle.\n#\n# For more details, see\n#   http://developer.android.com/guide/developing/tools/proguard.html\n\n# Add any project specific keep options here:\n\n# If your project uses WebView with JS, uncomment the following\n# and specify the fully qualified class name to the JavaScript interface\n# class:\n#-keepclassmembers class fqcn.of.javascript.interface.for.webview {\n#   public *;\n#}\n"
  },
  {
    "path": "demo/src/main/AndroidManifest.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package=\"com.daimajia.androidanimations\" >\n\n    <application\n        android:allowBackup=\"true\"\n        android:icon=\"@drawable/ic_launcher\"\n        android:label=\"@string/app_name\"\n        android:theme=\"@style/AppTheme\" >\n        <activity\n            android:name=\".MyActivity\"\n            android:label=\"@string/app_name\" >\n            <intent-filter>\n                <action android:name=\"android.intent.action.MAIN\" />\n\n                <category android:name=\"android.intent.category.LAUNCHER\" />\n            </intent-filter>\n        </activity>\n        <activity android:name=\".ExampleActivity\"/>\n    </application>\n\n</manifest>\n"
  },
  {
    "path": "demo/src/main/java/com/daimajia/androidanimations/EffectAdapter.java",
    "content": "package com.daimajia.androidanimations;\n\nimport android.content.Context;\nimport android.view.LayoutInflater;\nimport android.view.View;\nimport android.view.ViewGroup;\nimport android.widget.BaseAdapter;\nimport android.widget.TextView;\n\nimport com.daimajia.androidanimations.library.Techniques;\n\npublic class EffectAdapter extends BaseAdapter {\n\n    private Context mContext;\n\n    public EffectAdapter(Context context){\n        mContext = context;\n    }\n\n    @Override\n    public int getCount() {\n        return Techniques.values().length;\n    }\n\n    @Override\n    public Object getItem(int position) {\n        return Techniques.values()[position].getAnimator();\n    }\n\n    @Override\n    public long getItemId(int position) {\n        return position;\n    }\n\n    @Override\n    public View getView(final int position, View convertView, ViewGroup parent) {\n        View v = LayoutInflater.from(mContext).inflate(R.layout.item,null,false);\n        TextView t = (TextView)v.findViewById(R.id.list_item_text);\n        Object o = getItem(position);\n        int start = o.getClass().getName().lastIndexOf(\".\") + 1;\n        String name = o.getClass().getName().substring(start);\n        t.setText(name);\n        v.setTag(Techniques.values()[position]);\n        return v;\n    }\n}\n"
  },
  {
    "path": "demo/src/main/java/com/daimajia/androidanimations/ExampleActivity.java",
    "content": "package com.daimajia.androidanimations;\n\nimport android.app.Activity;\nimport android.os.Bundle;\nimport android.view.View;\nimport android.widget.TextView;\n\nimport com.daimajia.androidanimations.library.Techniques;\nimport com.daimajia.androidanimations.library.YoYo;\n\npublic class ExampleActivity extends Activity {\n    @Override\n    protected void onCreate(Bundle savedInstanceState) {\n        super.onCreate(savedInstanceState);\n        setContentView(R.layout.example);\n\n        final TextView t = (TextView) findViewById(R.id.notice);\n        t.setText(\"Please input your Email and Password\");\n\n        findViewById(R.id.submit).setOnClickListener(new View.OnClickListener() {\n            @Override\n            public void onClick(View v) {\n\n                YoYo.with(Techniques.Tada)\n                        .duration(700)\n                        .playOn(findViewById(R.id.edit_area));\n\n                t.setText(\"Wrong password!\");\n            }\n        });\n\n        final TextView t2 = (TextView) findViewById(R.id.notice2);\n        t2.setText(\"Please input your Email and Password\");\n\n        findViewById(R.id.submit2).setOnClickListener(new View.OnClickListener() {\n            @Override\n            public void onClick(View v) {\n\n                YoYo.with(Techniques.Shake).playOn(findViewById(R.id.edit_area2));\n\n                t2.setText(\"Wrong password!\");\n            }\n        });\n    }\n}\n"
  },
  {
    "path": "demo/src/main/java/com/daimajia/androidanimations/MyActivity.java",
    "content": "package com.daimajia.androidanimations;\n\nimport android.animation.Animator;\nimport android.app.Activity;\nimport android.content.Intent;\nimport android.os.Bundle;\nimport android.view.Menu;\nimport android.view.MenuItem;\nimport android.view.View;\nimport android.view.animation.AccelerateDecelerateInterpolator;\nimport android.widget.AdapterView;\nimport android.widget.ListView;\nimport android.widget.Toast;\n\nimport com.daimajia.androidanimations.library.Techniques;\nimport com.daimajia.androidanimations.library.YoYo;\n\npublic class MyActivity extends Activity {\n\n    private ListView mListView;\n    private EffectAdapter mAdapter;\n    private View mTarget;\n    private YoYo.YoYoString rope;\n\n    @Override\n    protected void onCreate(Bundle savedInstanceState) {\n        super.onCreate(savedInstanceState);\n        setContentView(R.layout.activity_my);\n\n        mListView = (ListView) findViewById(R.id.list_items);\n        mTarget = findViewById(R.id.hello_world);\n\n        mAdapter = new EffectAdapter(this);\n        mListView.setAdapter(mAdapter);\n\n        mListView.setOnItemClickListener(new AdapterView.OnItemClickListener() {\n            @Override\n            public void onItemClick(AdapterView<?> parent, View view, int position, long id) {\n                if (rope != null) {\n                    rope.stop(true);\n                }\n                Techniques technique = (Techniques) view.getTag();\n                rope = YoYo.with(technique)\n                        .duration(1200)\n                        .repeat(YoYo.INFINITE)\n                        .pivot(YoYo.CENTER_PIVOT, YoYo.CENTER_PIVOT)\n                        .interpolate(new AccelerateDecelerateInterpolator())\n                        .withListener(new Animator.AnimatorListener() {\n                            @Override\n                            public void onAnimationStart(Animator animation) {\n\n                            }\n\n                            @Override\n                            public void onAnimationEnd(Animator animation) {\n                            }\n\n                            @Override\n                            public void onAnimationCancel(Animator animation) {\n                                Toast.makeText(MyActivity.this, \"canceled previous animation\", Toast.LENGTH_SHORT).show();\n                            }\n\n                            @Override\n                            public void onAnimationRepeat(Animator animation) {\n\n                            }\n                        })\n                        .playOn(mTarget);\n            }\n        });\n        findViewById(R.id.hello_world).setOnClickListener(new View.OnClickListener() {\n            @Override\n            public void onClick(View v) {\n                if (rope != null) {\n                    rope.stop(true);\n                }\n            }\n        });\n    }\n\n    @Override\n    public void onWindowFocusChanged(boolean hasFocus) {\n        if (hasFocus) {\n            rope = YoYo.with(Techniques.FadeIn).duration(1000).playOn(mTarget);// after start,just click mTarget view, rope is not init\n        }\n    }\n\n\n    @Override\n    public boolean onCreateOptionsMenu(Menu menu) {\n        // Inflate the menu; this adds items to the action bar if it is present.\n        getMenuInflater().inflate(R.menu.my, menu);\n        return true;\n    }\n\n    @Override\n    public boolean onOptionsItemSelected(MenuItem item) {\n        // Handle action bar item clicks here. The action bar will\n        // automatically handle clicks on the Home/Up button, so long\n        // as you specify a parent activity in AndroidManifest.xml.\n        int id = item.getItemId();\n        if (id == R.id.action_settings) {\n            startActivity(new Intent(this, ExampleActivity.class));\n            return true;\n        }\n        return super.onOptionsItemSelected(item);\n    }\n}\n"
  },
  {
    "path": "demo/src/main/res/layout/activity_my.xml",
    "content": "\n<RelativeLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:tools=\"http://schemas.android.com/tools\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"match_parent\"\n    android:paddingLeft=\"@dimen/activity_horizontal_margin\"\n    android:paddingRight=\"@dimen/activity_horizontal_margin\"\n    android:paddingTop=\"@dimen/activity_vertical_margin\"\n    android:paddingBottom=\"@dimen/activity_vertical_margin\"\n    tools:context=\".MyActivity\">\n\n    <LinearLayout\n        android:id=\"@+id/wrapper\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"wrap_content\">\n    <TextView\n        android:gravity=\"center\"\n        android:layout_weight=\"1\"\n        android:padding=\"30dp\"\n        android:textSize=\"40sp\"\n        android:id=\"@+id/hello_world\"\n        android:text=\"@string/hello_world\"\n        android:layout_centerHorizontal=\"true\"\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\" />\n    </LinearLayout>\n    <ListView\n        android:id=\"@+id/list_items\"\n        android:layout_below=\"@+id/wrapper\"\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"/>\n</RelativeLayout>"
  },
  {
    "path": "demo/src/main/res/layout/example.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ScrollView xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"match_parent\">\n\n    <LinearLayout\n        android:orientation=\"vertical\"\n        android:layout_width=\"match_parent\"\n        android:padding=\"@dimen/activity_horizontal_margin\"\n        android:layout_height=\"match_parent\">\n\n        <LinearLayout\n            android:padding=\"@dimen/activity_horizontal_margin\"\n            android:id=\"@+id/edit_area2\"\n            android:orientation=\"vertical\"\n            android:layout_width=\"match_parent\"\n            android:layout_height=\"wrap_content\">\n\n            <EditText\n                android:hint=\"Username\"\n                android:layout_width=\"match_parent\"\n                android:layout_height=\"wrap_content\" />\n\n            <EditText\n                android:hint=\"Password\"\n                android:layout_width=\"match_parent\"\n                android:layout_height=\"wrap_content\" />\n        </LinearLayout>\n\n        <LinearLayout\n            android:padding=\"@dimen/activity_horizontal_margin\"\n            android:orientation=\"vertical\"\n            android:layout_width=\"wrap_content\"\n            android:layout_height=\"wrap_content\">\n\n            <TextView\n                android:id=\"@+id/notice2\"\n                android:layout_width=\"wrap_content\"\n                android:layout_height=\"wrap_content\" />\n\n            <Button\n                android:id=\"@+id/submit2\"\n                android:text=\"Submit\"\n                android:layout_width=\"wrap_content\"\n                android:layout_height=\"wrap_content\" />\n        </LinearLayout>\n\n        <LinearLayout\n            android:padding=\"@dimen/activity_horizontal_margin\"\n            android:id=\"@+id/edit_area\"\n            android:orientation=\"vertical\"\n            android:layout_width=\"match_parent\"\n            android:layout_height=\"wrap_content\">\n\n            <EditText\n                android:hint=\"Username\"\n                android:layout_width=\"match_parent\"\n                android:layout_height=\"wrap_content\" />\n\n            <EditText\n                android:hint=\"Password\"\n                android:layout_width=\"match_parent\"\n                android:layout_height=\"wrap_content\" />\n        </LinearLayout>\n\n        <LinearLayout\n            android:padding=\"@dimen/activity_horizontal_margin\"\n            android:orientation=\"vertical\"\n            android:layout_width=\"wrap_content\"\n            android:layout_height=\"wrap_content\">\n\n            <TextView\n                android:id=\"@+id/notice\"\n                android:layout_width=\"wrap_content\"\n                android:layout_height=\"wrap_content\" />\n\n            <Button\n                android:id=\"@+id/submit\"\n                android:text=\"Submit\"\n                android:layout_width=\"wrap_content\"\n                android:layout_height=\"wrap_content\" />\n        </LinearLayout>\n\n    </LinearLayout>\n\n</ScrollView>\n"
  },
  {
    "path": "demo/src/main/res/layout/item.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n\n<TextView xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"50dp\"\n    android:id=\"@+id/list_item_text\"\n    android:textSize=\"16sp\"\n    android:gravity=\"left|center_vertical\"\n    android:padding=\"10dp\" />"
  },
  {
    "path": "demo/src/main/res/menu/my.xml",
    "content": "<menu xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:tools=\"http://schemas.android.com/tools\"\n    xmlns:app=\"http://schemas.android.com/apk/res-auto\"\n    tools:context=\".MyActivity\" >\n    <item android:id=\"@+id/action_settings\"\n        android:title=\"@string/action_example\"\n        android:orderInCategory=\"100\"\n        android:showAsAction=\"always\" />\n</menu>\n"
  },
  {
    "path": "demo/src/main/res/values/dimens.xml",
    "content": "<resources>\n    <!-- Default screen margins, per the Android Design guidelines. -->\n    <dimen name=\"activity_horizontal_margin\">16dp</dimen>\n    <dimen name=\"activity_vertical_margin\">16dp</dimen>\n</resources>\n"
  },
  {
    "path": "demo/src/main/res/values/strings.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n\n    <string name=\"app_name\">AndroidAnimations</string>\n    <string name=\"hello_world\">Hello world!</string>\n    <string name=\"action_example\">Example</string>\n\n</resources>\n"
  },
  {
    "path": "demo/src/main/res/values/styles.xml",
    "content": "<resources>\n\n    <!-- Base application theme. -->\n    <style name=\"AppTheme\" parent=\"android:Theme.Holo.Light.DarkActionBar\">\n        <!-- Customize your theme here. -->\n    </style>\n\n</resources>\n"
  },
  {
    "path": "demo/src/main/res/values-w820dp/dimens.xml",
    "content": "<resources>\n    <!-- Example customization of dimensions originally defined in res/values/dimens.xml\n         (such as screen margins) for screens with more than 820dp of available width. This\n         would include 7\" and 10\" devices in landscape (~960dp and ~1280dp respectively). -->\n    <dimen name=\"activity_horizontal_margin\">64dp</dimen>\n</resources>\n"
  },
  {
    "path": "gradle/wrapper/gradle-wrapper.properties",
    "content": "#Sat Aug 22 18:15:38 CST 2020\ndistributionBase=GRADLE_USER_HOME\ndistributionPath=wrapper/dists\nzipStoreBase=GRADLE_USER_HOME\nzipStorePath=wrapper/dists\ndistributionUrl=https\\://services.gradle.org/distributions/gradle-6.1.1-all.zip\n"
  },
  {
    "path": "gradle.properties",
    "content": "# Project-wide Gradle settings.\n\n# IDE (e.g. Android Studio) users:\n# Settings specified in this file will override any Gradle settings\n# configured through the IDE.\n\n# For more details on how to configure your build environment visit\n# http://www.gradle.org/docs/current/userguide/build_environment.html\n\n# Specifies the JVM arguments used for the daemon process.\n# The setting is particularly useful for tweaking memory settings.\n# Default value: -Xmx10248m -XX:MaxPermSize=256m\n# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8\n\n# When configured, Gradle will run in incubating parallel mode.\n# This option should only be used with decoupled projects. More details, visit\n# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects\n# org.gradle.parallel=true\n\nCOMPILE_SDK_VERSION=29\nTARGET_SDK_VERSION=29\nMIN_SDK_VERSION=14\n\nVERSION_NAME=2.4\nVERSION_CODE=32\nGROUP=com.daimajia.androidanimations\n\nPOM_DESCRIPTION=Collect android animations\nPOM_URL=https://github.com/daimajia/AndroidAnimations\nPOM_SCM_URL=https://github.com/daimajia/AndroidAnimations\nPOM_SCM_CONNECTION=scm:https://github.com/daimajia/AndroidAnimations.git\nPOM_SCM_DEV_CONNECTION=scm:https://github.com/daimajia/AndroidAnimations.git\nPOM_LICENCE_NAME=MIT\nPOM_LICENCE_URL=http://opensource.org/licenses/MIT\nPOM_LICENCE_DIST=repo\nPOM_DEVELOPER_ID=daimajia\nPOM_DEVELOPER_NAME=daimajia\n\nandroid.useAndroidX=true\nandroid.enableJetifier=true\n"
  },
  {
    "path": "gradlew",
    "content": "#!/usr/bin/env bash\n\n##############################################################################\n##\n##  Gradle start up script for UN*X\n##\n##############################################################################\n\n# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.\nDEFAULT_JVM_OPTS=\"\"\n\nAPP_NAME=\"Gradle\"\nAPP_BASE_NAME=`basename \"$0\"`\n\n# Use the maximum available, or set MAX_FD != -1 to use that value.\nMAX_FD=\"maximum\"\n\nwarn ( ) {\n    echo \"$*\"\n}\n\ndie ( ) {\n    echo\n    echo \"$*\"\n    echo\n    exit 1\n}\n\n# OS specific support (must be 'true' or 'false').\ncygwin=false\nmsys=false\ndarwin=false\ncase \"`uname`\" in\n  CYGWIN* )\n    cygwin=true\n    ;;\n  Darwin* )\n    darwin=true\n    ;;\n  MINGW* )\n    msys=true\n    ;;\nesac\n\n# For Cygwin, ensure paths are in UNIX format before anything is touched.\nif $cygwin ; then\n    [ -n \"$JAVA_HOME\" ] && JAVA_HOME=`cygpath --unix \"$JAVA_HOME\"`\nfi\n\n# Attempt to set APP_HOME\n# Resolve links: $0 may be a link\nPRG=\"$0\"\n# Need this for relative symlinks.\nwhile [ -h \"$PRG\" ] ; do\n    ls=`ls -ld \"$PRG\"`\n    link=`expr \"$ls\" : '.*-> \\(.*\\)$'`\n    if expr \"$link\" : '/.*' > /dev/null; then\n        PRG=\"$link\"\n    else\n        PRG=`dirname \"$PRG\"`\"/$link\"\n    fi\ndone\nSAVED=\"`pwd`\"\ncd \"`dirname \\\"$PRG\\\"`/\" >&-\nAPP_HOME=\"`pwd -P`\"\ncd \"$SAVED\" >&-\n\nCLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar\n\n# Determine the Java command to use to start the JVM.\nif [ -n \"$JAVA_HOME\" ] ; then\n    if [ -x \"$JAVA_HOME/jre/sh/java\" ] ; then\n        # IBM's JDK on AIX uses strange locations for the executables\n        JAVACMD=\"$JAVA_HOME/jre/sh/java\"\n    else\n        JAVACMD=\"$JAVA_HOME/bin/java\"\n    fi\n    if [ ! -x \"$JAVACMD\" ] ; then\n        die \"ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME\n\nPlease set the JAVA_HOME variable in your environment to match the\nlocation of your Java installation.\"\n    fi\nelse\n    JAVACMD=\"java\"\n    which java >/dev/null 2>&1 || die \"ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.\n\nPlease set the JAVA_HOME variable in your environment to match the\nlocation of your Java installation.\"\nfi\n\n# Increase the maximum file descriptors if we can.\nif [ \"$cygwin\" = \"false\" -a \"$darwin\" = \"false\" ] ; then\n    MAX_FD_LIMIT=`ulimit -H -n`\n    if [ $? -eq 0 ] ; then\n        if [ \"$MAX_FD\" = \"maximum\" -o \"$MAX_FD\" = \"max\" ] ; then\n            MAX_FD=\"$MAX_FD_LIMIT\"\n        fi\n        ulimit -n $MAX_FD\n        if [ $? -ne 0 ] ; then\n            warn \"Could not set maximum file descriptor limit: $MAX_FD\"\n        fi\n    else\n        warn \"Could not query maximum file descriptor limit: $MAX_FD_LIMIT\"\n    fi\nfi\n\n# For Darwin, add options to specify how the application appears in the dock\nif $darwin; then\n    GRADLE_OPTS=\"$GRADLE_OPTS \\\"-Xdock:name=$APP_NAME\\\" \\\"-Xdock:icon=$APP_HOME/media/gradle.icns\\\"\"\nfi\n\n# For Cygwin, switch paths to Windows format before running java\nif $cygwin ; then\n    APP_HOME=`cygpath --path --mixed \"$APP_HOME\"`\n    CLASSPATH=`cygpath --path --mixed \"$CLASSPATH\"`\n\n    # We build the pattern for arguments to be converted via cygpath\n    ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`\n    SEP=\"\"\n    for dir in $ROOTDIRSRAW ; do\n        ROOTDIRS=\"$ROOTDIRS$SEP$dir\"\n        SEP=\"|\"\n    done\n    OURCYGPATTERN=\"(^($ROOTDIRS))\"\n    # Add a user-defined pattern to the cygpath arguments\n    if [ \"$GRADLE_CYGPATTERN\" != \"\" ] ; then\n        OURCYGPATTERN=\"$OURCYGPATTERN|($GRADLE_CYGPATTERN)\"\n    fi\n    # Now convert the arguments - kludge to limit ourselves to /bin/sh\n    i=0\n    for arg in \"$@\" ; do\n        CHECK=`echo \"$arg\"|egrep -c \"$OURCYGPATTERN\" -`\n        CHECK2=`echo \"$arg\"|egrep -c \"^-\"`                                 ### Determine if an option\n\n        if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then                    ### Added a condition\n            eval `echo args$i`=`cygpath --path --ignore --mixed \"$arg\"`\n        else\n            eval `echo args$i`=\"\\\"$arg\\\"\"\n        fi\n        i=$((i+1))\n    done\n    case $i in\n        (0) set -- ;;\n        (1) set -- \"$args0\" ;;\n        (2) set -- \"$args0\" \"$args1\" ;;\n        (3) set -- \"$args0\" \"$args1\" \"$args2\" ;;\n        (4) set -- \"$args0\" \"$args1\" \"$args2\" \"$args3\" ;;\n        (5) set -- \"$args0\" \"$args1\" \"$args2\" \"$args3\" \"$args4\" ;;\n        (6) set -- \"$args0\" \"$args1\" \"$args2\" \"$args3\" \"$args4\" \"$args5\" ;;\n        (7) set -- \"$args0\" \"$args1\" \"$args2\" \"$args3\" \"$args4\" \"$args5\" \"$args6\" ;;\n        (8) set -- \"$args0\" \"$args1\" \"$args2\" \"$args3\" \"$args4\" \"$args5\" \"$args6\" \"$args7\" ;;\n        (9) set -- \"$args0\" \"$args1\" \"$args2\" \"$args3\" \"$args4\" \"$args5\" \"$args6\" \"$args7\" \"$args8\" ;;\n    esac\nfi\n\n# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules\nfunction splitJvmOpts() {\n    JVM_OPTS=(\"$@\")\n}\neval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS\nJVM_OPTS[${#JVM_OPTS[*]}]=\"-Dorg.gradle.appname=$APP_BASE_NAME\"\n\nexec \"$JAVACMD\" \"${JVM_OPTS[@]}\" -classpath \"$CLASSPATH\" org.gradle.wrapper.GradleWrapperMain \"$@\"\n"
  },
  {
    "path": "gradlew.bat",
    "content": "@if \"%DEBUG%\" == \"\" @echo off\r\n@rem ##########################################################################\r\n@rem\r\n@rem  Gradle startup script for Windows\r\n@rem\r\n@rem ##########################################################################\r\n\r\n@rem Set local scope for the variables with windows NT shell\r\nif \"%OS%\"==\"Windows_NT\" setlocal\r\n\r\n@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.\r\nset DEFAULT_JVM_OPTS=\r\n\r\nset DIRNAME=%~dp0\r\nif \"%DIRNAME%\" == \"\" set DIRNAME=.\r\nset APP_BASE_NAME=%~n0\r\nset APP_HOME=%DIRNAME%\r\n\r\n@rem Find java.exe\r\nif defined JAVA_HOME goto findJavaFromJavaHome\r\n\r\nset JAVA_EXE=java.exe\r\n%JAVA_EXE% -version >NUL 2>&1\r\nif \"%ERRORLEVEL%\" == \"0\" goto init\r\n\r\necho.\r\necho ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.\r\necho.\r\necho Please set the JAVA_HOME variable in your environment to match the\r\necho location of your Java installation.\r\n\r\ngoto fail\r\n\r\n:findJavaFromJavaHome\r\nset JAVA_HOME=%JAVA_HOME:\"=%\r\nset JAVA_EXE=%JAVA_HOME%/bin/java.exe\r\n\r\nif exist \"%JAVA_EXE%\" goto init\r\n\r\necho.\r\necho ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%\r\necho.\r\necho Please set the JAVA_HOME variable in your environment to match the\r\necho location of your Java installation.\r\n\r\ngoto fail\r\n\r\n:init\r\n@rem Get command-line arguments, handling Windowz variants\r\n\r\nif not \"%OS%\" == \"Windows_NT\" goto win9xME_args\r\nif \"%@eval[2+2]\" == \"4\" goto 4NT_args\r\n\r\n:win9xME_args\r\n@rem Slurp the command line arguments.\r\nset CMD_LINE_ARGS=\r\nset _SKIP=2\r\n\r\n:win9xME_args_slurp\r\nif \"x%~1\" == \"x\" goto execute\r\n\r\nset CMD_LINE_ARGS=%*\r\ngoto execute\r\n\r\n:4NT_args\r\n@rem Get arguments from the 4NT Shell from JP Software\r\nset CMD_LINE_ARGS=%$\r\n\r\n:execute\r\n@rem Setup the command line\r\n\r\nset CLASSPATH=%APP_HOME%\\gradle\\wrapper\\gradle-wrapper.jar\r\n\r\n@rem Execute Gradle\r\n\"%JAVA_EXE%\" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% \"-Dorg.gradle.appname=%APP_BASE_NAME%\" -classpath \"%CLASSPATH%\" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%\r\n\r\n:end\r\n@rem End local scope for the variables with windows NT shell\r\nif \"%ERRORLEVEL%\"==\"0\" goto mainEnd\r\n\r\n:fail\r\nrem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of\r\nrem the _cmd.exe /c_ return code!\r\nif  not \"\" == \"%GRADLE_EXIT_CONSOLE%\" exit 1\r\nexit /b 1\r\n\r\n:mainEnd\r\nif \"%OS%\"==\"Windows_NT\" endlocal\r\n\r\n:omega\r\n"
  },
  {
    "path": "library/.gitignore",
    "content": "/build\n"
  },
  {
    "path": "library/build.gradle",
    "content": "apply plugin: 'com.android.library'\n\nandroid {\n    compileSdkVersion COMPILE_SDK_VERSION.toInteger()\n\n    defaultConfig {\n        minSdkVersion MIN_SDK_VERSION.toInteger()\n        targetSdkVersion TARGET_SDK_VERSION.toInteger()\n        versionCode VERSION_CODE.toInteger()\n        versionName VERSION_NAME\n    }\n\n    buildTypes {\n        release {\n            minifyEnabled false\n            consumerProguardFiles 'proguard-rules.pro'\n        }\n    }\n}\n\ndependencies {\n    implementation fileTree(dir: 'libs', include: ['*.jar'])\n    implementation 'com.daimajia.easing:library:2.4@aar'\n    implementation 'androidx.core:core:1.3.1'\n}\n\napply from: './gradle-mvn-push.gradle'\n"
  },
  {
    "path": "library/gradle-mvn-push.gradle",
    "content": "/*\n * Copyright 2013 Chris Banes\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\napply plugin: 'maven'\napply plugin: 'signing'\n\ndef isReleaseBuild() {\n    return VERSION_NAME.contains(\"SNAPSHOT\") == false\n}\n\ndef getReleaseRepositoryUrl() {\n    return hasProperty('RELEASE_REPOSITORY_URL') ? RELEASE_REPOSITORY_URL\n            : \"https://oss.sonatype.org/service/local/staging/deploy/maven2/\"\n}\n\ndef getSnapshotRepositoryUrl() {\n    return hasProperty('SNAPSHOT_REPOSITORY_URL') ? SNAPSHOT_REPOSITORY_URL\n            : \"https://oss.sonatype.org/content/repositories/snapshots/\"\n}\n\ndef getRepositoryUsername() {\n    return hasProperty('NEXUS_USERNAME') ? NEXUS_USERNAME : \"\"\n}\n\ndef getRepositoryPassword() {\n    return hasProperty('NEXUS_PASSWORD') ? NEXUS_PASSWORD : \"\"\n}\n\nafterEvaluate { project ->\n    uploadArchives {\n        repositories {\n            mavenDeployer {\n                beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }\n\n                pom.groupId = GROUP\n                pom.artifactId = POM_ARTIFACT_ID\n                pom.version = VERSION_NAME\n\n                repository(url: getReleaseRepositoryUrl()) {\n                    authentication(userName: getRepositoryUsername(), password: getRepositoryPassword())\n                }\n                snapshotRepository(url: getSnapshotRepositoryUrl()) {\n                    authentication(userName: getRepositoryUsername(), password: getRepositoryPassword())\n                }\n\n                pom.project {\n                    name POM_NAME\n                    packaging POM_PACKAGING\n                    description POM_DESCRIPTION\n                    url POM_URL\n\n                    scm {\n                        url POM_SCM_URL\n                        connection POM_SCM_CONNECTION\n                        developerConnection POM_SCM_DEV_CONNECTION\n                    }\n\n                    licenses {\n                        license {\n                            name POM_LICENCE_NAME\n                            url POM_LICENCE_URL\n                            distribution POM_LICENCE_DIST\n                        }\n                    }\n\n                    developers {\n                        developer {\n                            id POM_DEVELOPER_ID\n                            name POM_DEVELOPER_NAME\n                        }\n                    }\n                }\n            }\n        }\n    }\n\n    signing {\n        required { isReleaseBuild() && gradle.taskGraph.hasTask(\"uploadArchives\") }\n        sign configurations.archives\n    }\n\n    task apklib(type: Zip){\n        appendix = extension = 'apklib'\n\n        from 'AndroidManifest.xml'\n        into('res') {\n            from 'res'\n        }\n        into('src') {\n            from 'src'\n        }\n    }\n\n    task jar(type: Jar) {\n        from android.sourceSets.main.java.srcDirs\n    }\n\n    task androidJavadocs(type: Javadoc) {\n        source = android.sourceSets.main.java.srcDirs\n        classpath += project.files(android.getBootClasspath() .join(File.pathSeparator))\n    }\n\n    task androidJavadocsJar(type: Jar, dependsOn: androidJavadocs) {\n        classifier = 'javadoc'\n        from androidJavadocs.destinationDir\n    }\n\n    task androidSourcesJar(type: Jar) {\n        classifier = 'sources'\n        from android.sourceSets.main.java.srcDirs\n    }\n\n    artifacts {\n        archives androidSourcesJar\n        archives androidJavadocsJar\n        archives apklib\n        archives jar\n    }\n}\n"
  },
  {
    "path": "library/gradle.properties",
    "content": "# Project-wide Gradle settings.\n\n# IDE (e.g. Android Studio) users:\n# Settings specified in this file will override any Gradle settings\n# configured through the IDE.\n\n# For more details on how to configure your build environment visit\n# http://www.gradle.org/docs/current/userguide/build_environment.html\n\n# Specifies the JVM arguments used for the daemon process.\n# The setting is particularly useful for tweaking memory settings.\n# Default value: -Xmx10248m -XX:MaxPermSize=256m\n# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8\n\n# When configured, Gradle will run in incubating parallel mode.\n# This option should only be used with decoupled projects. More details, visit\n# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects\n# org.gradle.parallel=true\n\nPOM_NAME=AndroidAnimations Library\nPOM_ARTIFACT_ID=library\nPOM_PACKAGING=aar\n"
  },
  {
    "path": "library/proguard-rules.pro",
    "content": "# Add project specific ProGuard rules here.\n# By default, the flags in this file are appended to flags specified\n# in /Applications/Android Studio.app/sdk/tools/proguard/proguard-android.txt\n# You can edit the include path and order by changing the proguardFiles\n# directive in build.gradle.\n#\n# For more details, see\n#   http://developer.android.com/guide/developing/tools/proguard.html\n\n# Add any project specific keep options here:\n\n# If your project uses WebView with JS, uncomment the following\n# and specify the fully qualified class name to the JavaScript interface\n# class:\n#-keepclassmembers class fqcn.of.javascript.interface.for.webview {\n#   public *;\n#}\n-keep class com.daimajia.androidanimations.** { *; }\n-keep interface com.daimajia.androidanimations.** { *; }"
  },
  {
    "path": "library/src/main/AndroidManifest.xml",
    "content": "<manifest package=\"com.daimajia.androidanimations.library\">\n\n\n</manifest>\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/BaseViewAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library;\n\nimport android.animation.Animator;\nimport android.animation.AnimatorSet;\nimport android.animation.ValueAnimator;\nimport android.view.View;\nimport android.view.animation.Interpolator;\n\nimport androidx.core.view.ViewCompat;\n\npublic abstract class BaseViewAnimator {\n\n    public static final long DURATION = 1000;\n\n    private AnimatorSet mAnimatorSet;\n\n    private long mDuration = DURATION;\n    private int mRepeatTimes = 0;\n    private int mRepeatMode = ValueAnimator.RESTART;\n\n    {\n        mAnimatorSet = new AnimatorSet();\n    }\n\n\n    protected abstract void prepare(View target);\n\n    public BaseViewAnimator setTarget(View target) {\n        reset(target);\n        prepare(target);\n        return this;\n    }\n\n    public void animate() {\n        start();\n    }\n\n    public void restart() {\n        mAnimatorSet = mAnimatorSet.clone();\n        start();\n    }\n\n    /**\n     * reset the view to default status\n     *\n     * @param target\n     */\n    public void reset(View target) {\n        ViewCompat.setAlpha(target, 1);\n        ViewCompat.setScaleX(target, 1);\n        ViewCompat.setScaleY(target, 1);\n        ViewCompat.setTranslationX(target, 0);\n        ViewCompat.setTranslationY(target, 0);\n        ViewCompat.setRotation(target, 0);\n        ViewCompat.setRotationY(target, 0);\n        ViewCompat.setRotationX(target, 0);\n    }\n\n    /**\n     * start to animate\n     */\n    public void start() {\n        for (Animator animator : mAnimatorSet.getChildAnimations()) {\n            if (animator instanceof ValueAnimator) {\n                ((ValueAnimator) animator).setRepeatCount(mRepeatTimes);\n                ((ValueAnimator) animator).setRepeatMode(mRepeatMode);\n            }\n        }\n        mAnimatorSet.setDuration(mDuration);\n        mAnimatorSet.start();\n    }\n\n    public BaseViewAnimator setDuration(long duration) {\n        mDuration = duration;\n        return this;\n    }\n\n    public BaseViewAnimator setStartDelay(long delay) {\n        getAnimatorAgent().setStartDelay(delay);\n        return this;\n    }\n\n    public long getStartDelay() {\n        return mAnimatorSet.getStartDelay();\n    }\n\n    public BaseViewAnimator addAnimatorListener(Animator.AnimatorListener l) {\n        mAnimatorSet.addListener(l);\n        return this;\n    }\n\n    public void cancel() {\n        mAnimatorSet.cancel();\n    }\n\n    public boolean isRunning() {\n        return mAnimatorSet.isRunning();\n    }\n\n    public boolean isStarted() {\n        return mAnimatorSet.isStarted();\n    }\n\n    public void removeAnimatorListener(Animator.AnimatorListener l) {\n        mAnimatorSet.removeListener(l);\n    }\n\n    public void removeAllListener() {\n        mAnimatorSet.removeAllListeners();\n    }\n\n    public BaseViewAnimator setInterpolator(Interpolator interpolator) {\n        mAnimatorSet.setInterpolator(interpolator);\n        return this;\n    }\n\n    public long getDuration() {\n        return mDuration;\n    }\n\n    public AnimatorSet getAnimatorAgent() {\n        return mAnimatorSet;\n    }\n\n    public BaseViewAnimator setRepeatTimes(int repeatTimes) {\n        mRepeatTimes = repeatTimes;\n        return this;\n    }\n\n    public BaseViewAnimator setRepeatMode(int repeatMode) {\n        mRepeatMode = repeatMode;\n        return this;\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/Techniques.java",
    "content": "\n/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library;\n\nimport com.daimajia.androidanimations.library.attention.BounceAnimator;\nimport com.daimajia.androidanimations.library.attention.FlashAnimator;\nimport com.daimajia.androidanimations.library.attention.PulseAnimator;\nimport com.daimajia.androidanimations.library.attention.RubberBandAnimator;\nimport com.daimajia.androidanimations.library.attention.ShakeAnimator;\nimport com.daimajia.androidanimations.library.attention.StandUpAnimator;\nimport com.daimajia.androidanimations.library.attention.SwingAnimator;\nimport com.daimajia.androidanimations.library.attention.TadaAnimator;\nimport com.daimajia.androidanimations.library.attention.WaveAnimator;\nimport com.daimajia.androidanimations.library.attention.WobbleAnimator;\nimport com.daimajia.androidanimations.library.bouncing_entrances.BounceInAnimator;\nimport com.daimajia.androidanimations.library.bouncing_entrances.BounceInDownAnimator;\nimport com.daimajia.androidanimations.library.bouncing_entrances.BounceInLeftAnimator;\nimport com.daimajia.androidanimations.library.bouncing_entrances.BounceInRightAnimator;\nimport com.daimajia.androidanimations.library.bouncing_entrances.BounceInUpAnimator;\nimport com.daimajia.androidanimations.library.fading_entrances.FadeInAnimator;\nimport com.daimajia.androidanimations.library.fading_entrances.FadeInDownAnimator;\nimport com.daimajia.androidanimations.library.fading_entrances.FadeInLeftAnimator;\nimport com.daimajia.androidanimations.library.fading_entrances.FadeInRightAnimator;\nimport com.daimajia.androidanimations.library.fading_entrances.FadeInUpAnimator;\nimport com.daimajia.androidanimations.library.fading_exits.FadeOutAnimator;\nimport com.daimajia.androidanimations.library.fading_exits.FadeOutDownAnimator;\nimport com.daimajia.androidanimations.library.fading_exits.FadeOutLeftAnimator;\nimport com.daimajia.androidanimations.library.fading_exits.FadeOutRightAnimator;\nimport com.daimajia.androidanimations.library.fading_exits.FadeOutUpAnimator;\nimport com.daimajia.androidanimations.library.flippers.FlipInXAnimator;\nimport com.daimajia.androidanimations.library.flippers.FlipInYAnimator;\nimport com.daimajia.androidanimations.library.flippers.FlipOutXAnimator;\nimport com.daimajia.androidanimations.library.flippers.FlipOutYAnimator;\nimport com.daimajia.androidanimations.library.rotating_entrances.RotateInAnimator;\nimport com.daimajia.androidanimations.library.rotating_entrances.RotateInDownLeftAnimator;\nimport com.daimajia.androidanimations.library.rotating_entrances.RotateInDownRightAnimator;\nimport com.daimajia.androidanimations.library.rotating_entrances.RotateInUpLeftAnimator;\nimport com.daimajia.androidanimations.library.rotating_entrances.RotateInUpRightAnimator;\nimport com.daimajia.androidanimations.library.rotating_exits.RotateOutAnimator;\nimport com.daimajia.androidanimations.library.rotating_exits.RotateOutDownLeftAnimator;\nimport com.daimajia.androidanimations.library.rotating_exits.RotateOutDownRightAnimator;\nimport com.daimajia.androidanimations.library.rotating_exits.RotateOutUpLeftAnimator;\nimport com.daimajia.androidanimations.library.rotating_exits.RotateOutUpRightAnimator;\nimport com.daimajia.androidanimations.library.sliders.SlideInDownAnimator;\nimport com.daimajia.androidanimations.library.sliders.SlideInLeftAnimator;\nimport com.daimajia.androidanimations.library.sliders.SlideInRightAnimator;\nimport com.daimajia.androidanimations.library.sliders.SlideInUpAnimator;\nimport com.daimajia.androidanimations.library.sliders.SlideOutDownAnimator;\nimport com.daimajia.androidanimations.library.sliders.SlideOutLeftAnimator;\nimport com.daimajia.androidanimations.library.sliders.SlideOutRightAnimator;\nimport com.daimajia.androidanimations.library.sliders.SlideOutUpAnimator;\nimport com.daimajia.androidanimations.library.specials.HingeAnimator;\nimport com.daimajia.androidanimations.library.specials.RollInAnimator;\nimport com.daimajia.androidanimations.library.specials.RollOutAnimator;\nimport com.daimajia.androidanimations.library.specials.in.DropOutAnimator;\nimport com.daimajia.androidanimations.library.specials.in.LandingAnimator;\nimport com.daimajia.androidanimations.library.specials.out.TakingOffAnimator;\nimport com.daimajia.androidanimations.library.zooming_entrances.ZoomInAnimator;\nimport com.daimajia.androidanimations.library.zooming_entrances.ZoomInDownAnimator;\nimport com.daimajia.androidanimations.library.zooming_entrances.ZoomInLeftAnimator;\nimport com.daimajia.androidanimations.library.zooming_entrances.ZoomInRightAnimator;\nimport com.daimajia.androidanimations.library.zooming_entrances.ZoomInUpAnimator;\nimport com.daimajia.androidanimations.library.zooming_exits.ZoomOutAnimator;\nimport com.daimajia.androidanimations.library.zooming_exits.ZoomOutDownAnimator;\nimport com.daimajia.androidanimations.library.zooming_exits.ZoomOutLeftAnimator;\nimport com.daimajia.androidanimations.library.zooming_exits.ZoomOutRightAnimator;\nimport com.daimajia.androidanimations.library.zooming_exits.ZoomOutUpAnimator;\n\npublic enum Techniques {\n\n    DropOut(DropOutAnimator.class),\n    Landing(LandingAnimator.class),\n    TakingOff(TakingOffAnimator.class),\n\n    Flash(FlashAnimator.class),\n    Pulse(PulseAnimator.class),\n    RubberBand(RubberBandAnimator.class),\n    Shake(ShakeAnimator.class),\n    Swing(SwingAnimator.class),\n    Wobble(WobbleAnimator.class),\n    Bounce(BounceAnimator.class),\n    Tada(TadaAnimator.class),\n    StandUp(StandUpAnimator.class),\n    Wave(WaveAnimator.class),\n\n    Hinge(HingeAnimator.class),\n    RollIn(RollInAnimator.class),\n    RollOut(RollOutAnimator.class),\n\n    BounceIn(BounceInAnimator.class),\n    BounceInDown(BounceInDownAnimator.class),\n    BounceInLeft(BounceInLeftAnimator.class),\n    BounceInRight(BounceInRightAnimator.class),\n    BounceInUp(BounceInUpAnimator.class),\n\n    FadeIn(FadeInAnimator.class),\n    FadeInUp(FadeInUpAnimator.class),\n    FadeInDown(FadeInDownAnimator.class),\n    FadeInLeft(FadeInLeftAnimator.class),\n    FadeInRight(FadeInRightAnimator.class),\n\n    FadeOut(FadeOutAnimator.class),\n    FadeOutDown(FadeOutDownAnimator.class),\n    FadeOutLeft(FadeOutLeftAnimator.class),\n    FadeOutRight(FadeOutRightAnimator.class),\n    FadeOutUp(FadeOutUpAnimator.class),\n\n    FlipInX(FlipInXAnimator.class),\n    FlipOutX(FlipOutXAnimator.class),\n    FlipInY(FlipInYAnimator.class),\n    FlipOutY(FlipOutYAnimator.class),\n    RotateIn(RotateInAnimator.class),\n    RotateInDownLeft(RotateInDownLeftAnimator.class),\n    RotateInDownRight(RotateInDownRightAnimator.class),\n    RotateInUpLeft(RotateInUpLeftAnimator.class),\n    RotateInUpRight(RotateInUpRightAnimator.class),\n\n    RotateOut(RotateOutAnimator.class),\n    RotateOutDownLeft(RotateOutDownLeftAnimator.class),\n    RotateOutDownRight(RotateOutDownRightAnimator.class),\n    RotateOutUpLeft(RotateOutUpLeftAnimator.class),\n    RotateOutUpRight(RotateOutUpRightAnimator.class),\n\n    SlideInLeft(SlideInLeftAnimator.class),\n    SlideInRight(SlideInRightAnimator.class),\n    SlideInUp(SlideInUpAnimator.class),\n    SlideInDown(SlideInDownAnimator.class),\n\n    SlideOutLeft(SlideOutLeftAnimator.class),\n    SlideOutRight(SlideOutRightAnimator.class),\n    SlideOutUp(SlideOutUpAnimator.class),\n    SlideOutDown(SlideOutDownAnimator.class),\n\n    ZoomIn(ZoomInAnimator.class),\n    ZoomInDown(ZoomInDownAnimator.class),\n    ZoomInLeft(ZoomInLeftAnimator.class),\n    ZoomInRight(ZoomInRightAnimator.class),\n    ZoomInUp(ZoomInUpAnimator.class),\n\n    ZoomOut(ZoomOutAnimator.class),\n    ZoomOutDown(ZoomOutDownAnimator.class),\n    ZoomOutLeft(ZoomOutLeftAnimator.class),\n    ZoomOutRight(ZoomOutRightAnimator.class),\n    ZoomOutUp(ZoomOutUpAnimator.class);\n\n\n\n    private Class animatorClazz;\n\n    private Techniques(Class clazz) {\n        animatorClazz = clazz;\n    }\n\n    public BaseViewAnimator getAnimator() {\n        try {\n            return (BaseViewAnimator) animatorClazz.newInstance();\n        } catch (Exception e) {\n            throw new Error(\"Can not init animatorClazz instance\");\n        }\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/YoYo.java",
    "content": "\n/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library;\n\nimport android.animation.Animator;\nimport android.animation.ValueAnimator;\nimport android.view.View;\nimport android.view.animation.Interpolator;\n\nimport androidx.core.view.ViewCompat;\n\nimport java.util.ArrayList;\nimport java.util.List;\n\npublic class YoYo {\n\n    private static final long DURATION = BaseViewAnimator.DURATION;\n    private static final long NO_DELAY = 0;\n    public static final int INFINITE = -1;\n    public static final float CENTER_PIVOT = Float.MAX_VALUE;\n\n    private BaseViewAnimator animator;\n    private long duration;\n    private long delay;\n    private boolean repeat;\n    private int repeatTimes;\n    private int repeatMode;\n    private Interpolator interpolator;\n    private float pivotX, pivotY;\n    private List<Animator.AnimatorListener> callbacks;\n    private View target;\n\n    private YoYo(AnimationComposer animationComposer) {\n        animator = animationComposer.animator;\n        duration = animationComposer.duration;\n        delay = animationComposer.delay;\n        repeat = animationComposer.repeat;\n        repeatTimes = animationComposer.repeatTimes;\n        repeatMode = animationComposer.repeatMode;\n        interpolator = animationComposer.interpolator;\n        pivotX = animationComposer.pivotX;\n        pivotY = animationComposer.pivotY;\n        callbacks = animationComposer.callbacks;\n        target = animationComposer.target;\n    }\n\n    public static AnimationComposer with(Techniques techniques) {\n        return new AnimationComposer(techniques);\n    }\n\n    public static AnimationComposer with(BaseViewAnimator animator) {\n        return new AnimationComposer(animator);\n    }\n\n    public interface AnimatorCallback {\n        public void call(Animator animator);\n    }\n\n    private static class EmptyAnimatorListener implements Animator.AnimatorListener {\n        @Override\n        public void onAnimationStart(Animator animation) {\n        }\n\n        @Override\n        public void onAnimationEnd(Animator animation) {\n        }\n\n        @Override\n        public void onAnimationCancel(Animator animation) {\n        }\n\n        @Override\n        public void onAnimationRepeat(Animator animation) {\n        }\n    }\n\n    public static final class AnimationComposer {\n\n        private List<Animator.AnimatorListener> callbacks = new ArrayList<>();\n\n        private BaseViewAnimator animator;\n        private long duration = DURATION;\n\n        private long delay = NO_DELAY;\n        private boolean repeat = false;\n        private int repeatTimes = 0;\n        private int repeatMode = ValueAnimator.RESTART;\n        private float pivotX = YoYo.CENTER_PIVOT, pivotY = YoYo.CENTER_PIVOT;\n        private Interpolator interpolator;\n        private View target;\n\n        private AnimationComposer(Techniques techniques) {\n            this.animator = techniques.getAnimator();\n        }\n\n        private AnimationComposer(BaseViewAnimator animator) {\n            this.animator = animator;\n        }\n\n        public AnimationComposer duration(long duration) {\n            this.duration = duration;\n            return this;\n        }\n\n        public AnimationComposer delay(long delay) {\n            this.delay = delay;\n            return this;\n        }\n\n        public AnimationComposer interpolate(Interpolator interpolator) {\n            this.interpolator = interpolator;\n            return this;\n        }\n\n        public AnimationComposer pivot(float pivotX, float pivotY) {\n            this.pivotX = pivotX;\n            this.pivotY = pivotY;\n            return this;\n        }\n\n        public AnimationComposer pivotX(float pivotX) {\n            this.pivotX = pivotX;\n            return this;\n        }\n\n        public AnimationComposer pivotY(float pivotY) {\n            this.pivotY = pivotY;\n            return this;\n        }\n\n        public AnimationComposer repeat(int times) {\n            if (times < INFINITE) {\n                throw new RuntimeException(\"Can not be less than -1, -1 is infinite loop\");\n            }\n            repeat = times != 0;\n            repeatTimes = times;\n            return this;\n        }\n\n        public AnimationComposer repeatMode(int mode) {\n            repeatMode = mode;\n            return this;\n        }\n\n        public AnimationComposer withListener(Animator.AnimatorListener listener) {\n            callbacks.add(listener);\n            return this;\n        }\n\n        public AnimationComposer onStart(final AnimatorCallback callback) {\n            callbacks.add(new EmptyAnimatorListener() {\n                @Override\n                public void onAnimationStart(Animator animation) {\n                    callback.call(animation);\n                }\n            });\n            return this;\n        }\n\n        public AnimationComposer onEnd(final AnimatorCallback callback) {\n            callbacks.add(new EmptyAnimatorListener() {\n                @Override\n                public void onAnimationEnd(Animator animation) {\n                    callback.call(animation);\n                }\n            });\n            return this;\n        }\n\n        public AnimationComposer onCancel(final AnimatorCallback callback) {\n            callbacks.add(new EmptyAnimatorListener() {\n                @Override\n                public void onAnimationCancel(Animator animation) {\n                    callback.call(animation);\n                }\n            });\n            return this;\n        }\n\n        public AnimationComposer onRepeat(final AnimatorCallback callback) {\n            callbacks.add(new EmptyAnimatorListener() {\n                @Override\n                public void onAnimationRepeat(Animator animation) {\n                    callback.call(animation);\n                }\n            });\n            return this;\n        }\n\n        public YoYoString playOn(View target) {\n            this.target = target;\n            return new YoYoString(new YoYo(this).play(), this.target);\n        }\n\n    }\n\n    /**\n     * YoYo string, you can use this string to control your YoYo.\n     */\n    public static final class YoYoString {\n\n        private BaseViewAnimator animator;\n        private View target;\n\n        private YoYoString(BaseViewAnimator animator, View target) {\n            this.target = target;\n            this.animator = animator;\n        }\n\n        public boolean isStarted() {\n            return animator.isStarted();\n        }\n\n        public boolean isRunning() {\n            return animator.isRunning();\n        }\n\n        public void stop() {\n            stop(true);\n        }\n\n        public void stop(boolean reset) {\n            animator.cancel();\n\n            if (reset)\n                animator.reset(target);\n        }\n    }\n\n    private BaseViewAnimator play() {\n        animator.setTarget(target);\n\n        if (pivotX == YoYo.CENTER_PIVOT) {\n            ViewCompat.setPivotX(target, target.getMeasuredWidth() / 2.0f);\n        } else {\n            target.setPivotX(pivotX);\n        }\n        if (pivotY == YoYo.CENTER_PIVOT) {\n            ViewCompat.setPivotY(target, target.getMeasuredHeight() / 2.0f);\n        } else {\n            target.setPivotY(pivotY);\n        }\n\n        animator.setDuration(duration)\n                .setRepeatTimes(repeatTimes)\n                .setRepeatMode(repeatMode)\n                .setInterpolator(interpolator)\n                .setStartDelay(delay);\n\n        if (callbacks.size() > 0) {\n            for (Animator.AnimatorListener callback : callbacks) {\n                animator.addAnimatorListener(callback);\n            }\n        }\n        animator.animate();\n        return animator;\n    }\n\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/attention/BounceAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.attention;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class BounceAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"translationY\", 0, 0, -30, 0, -15, 0, 0)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/attention/FlashAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.attention;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class FlashAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"alpha\", 1, 0, 1, 0, 1)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/attention/PulseAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.attention;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class PulseAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"scaleY\", 1, 1.1f, 1),\n                ObjectAnimator.ofFloat(target, \"scaleX\", 1, 1.1f, 1)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/attention/RubberBandAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.attention;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class RubberBandAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"scaleX\", 1, 1.25f, 0.75f, 1.15f, 1),\n                ObjectAnimator.ofFloat(target, \"scaleY\", 1, 0.75f, 1.25f, 0.85f, 1)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/attention/ShakeAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.attention;\n\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class ShakeAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"translationX\", 0, 25, -25, 25, -25, 15, -15, 6, -6, 0)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/attention/StandUpAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.attention;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\n\npublic class StandUpAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        float x = (target.getWidth() - target.getPaddingLeft() - target.getPaddingRight()) / 2\n                + target.getPaddingLeft();\n        float y = target.getHeight() - target.getPaddingBottom();\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"pivotX\", x, x, x, x, x),\n                ObjectAnimator.ofFloat(target, \"pivotY\", y, y, y, y, y),\n                ObjectAnimator.ofFloat(target, \"rotationX\", 55, -30, 15, -15, 0)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/attention/SwingAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.attention;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class SwingAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"rotation\", 0, 10, -10, 6, -6, 3, -3, 0)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/attention/TadaAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.attention;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class TadaAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"scaleX\", 1, 0.9f, 0.9f, 1.1f, 1.1f, 1.1f, 1.1f, 1.1f, 1.1f, 1),\n                ObjectAnimator.ofFloat(target, \"scaleY\", 1, 0.9f, 0.9f, 1.1f, 1.1f, 1.1f, 1.1f, 1.1f, 1.1f, 1),\n                ObjectAnimator.ofFloat(target, \"rotation\", 0, -3, -3, 3, -3, 3, -3, 3, -3, 0)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/attention/WaveAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.attention;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class WaveAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        float x = (target.getWidth() - target.getPaddingLeft() - target.getPaddingRight()) / 2\n                + target.getPaddingLeft();\n        float y = target.getHeight() - target.getPaddingBottom();\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"rotation\", 12, -12, 3, -3, 0),\n                ObjectAnimator.ofFloat(target, \"pivotX\", x, x, x, x, x),\n                ObjectAnimator.ofFloat(target, \"pivotY\", y, y, y, y, y)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/attention/WobbleAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.attention;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class WobbleAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        float width = target.getWidth();\n        float one = (float) (width / 100.0);\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"translationX\", 0 * one, -25 * one, 20 * one, -15 * one, 10 * one, -5 * one, 0 * one, 0),\n                ObjectAnimator.ofFloat(target, \"rotation\", 0, -5, 3, -3, 2, -1, 0)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/bouncing_entrances/BounceInAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.bouncing_entrances;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class BounceInAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"alpha\", 0, 1, 1, 1),\n                ObjectAnimator.ofFloat(target, \"scaleX\", 0.3f, 1.05f, 0.9f, 1),\n                ObjectAnimator.ofFloat(target, \"scaleY\", 0.3f, 1.05f, 0.9f, 1)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/bouncing_entrances/BounceInDownAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.bouncing_entrances;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class BounceInDownAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"alpha\", 0, 1, 1, 1),\n                ObjectAnimator.ofFloat(target, \"translationY\", -target.getHeight(), 30, -10, 0)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/bouncing_entrances/BounceInLeftAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.bouncing_entrances;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class BounceInLeftAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"translationX\", -target.getWidth(), 30, -10, 0),\n                ObjectAnimator.ofFloat(target, \"alpha\", 0, 1, 1, 1)\n        );\n    }\n}\n\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/bouncing_entrances/BounceInRightAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.bouncing_entrances;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class BounceInRightAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"translationX\", target.getMeasuredWidth() + target.getWidth(), -30, 10, 0),\n                ObjectAnimator.ofFloat(target, \"alpha\", 0, 1, 1, 1)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/bouncing_entrances/BounceInUpAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.bouncing_entrances;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class BounceInUpAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"translationY\", target.getMeasuredHeight(), -30, 10, 0),\n                ObjectAnimator.ofFloat(target, \"alpha\", 0, 1, 1, 1)\n        );\n    }\n\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/fading_entrances/FadeInAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.fading_entrances;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class FadeInAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"alpha\", 0, 1)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/fading_entrances/FadeInDownAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.fading_entrances;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class FadeInDownAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"alpha\", 0, 1),\n                ObjectAnimator.ofFloat(target, \"translationY\", -target.getHeight() / 4, 0)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/fading_entrances/FadeInLeftAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.fading_entrances;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class FadeInLeftAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"alpha\", 0, 1),\n                ObjectAnimator.ofFloat(target, \"translationX\", -target.getWidth() / 4, 0)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/fading_entrances/FadeInRightAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.fading_entrances;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class FadeInRightAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"alpha\", 0, 1),\n                ObjectAnimator.ofFloat(target, \"translationX\", target.getWidth() / 4, 0)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/fading_entrances/FadeInUpAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.fading_entrances;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class FadeInUpAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"alpha\", 0, 1),\n                ObjectAnimator.ofFloat(target, \"translationY\", target.getHeight() / 4, 0)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/fading_exits/FadeOutAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.fading_exits;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class FadeOutAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"alpha\", 1, 0)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/fading_exits/FadeOutDownAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.fading_exits;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class FadeOutDownAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"alpha\", 1, 0),\n                ObjectAnimator.ofFloat(target, \"translationY\", 0, target.getHeight() / 4)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/fading_exits/FadeOutLeftAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.fading_exits;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class FadeOutLeftAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"alpha\", 1, 0),\n                ObjectAnimator.ofFloat(target, \"translationX\", 0, -target.getWidth() / 4)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/fading_exits/FadeOutRightAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.fading_exits;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class FadeOutRightAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"alpha\", 1, 0),\n                ObjectAnimator.ofFloat(target, \"translationX\", 0, target.getWidth() / 4)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/fading_exits/FadeOutUpAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.fading_exits;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class FadeOutUpAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"alpha\", 1, 0),\n                ObjectAnimator.ofFloat(target, \"translationY\", 0, -target.getHeight() / 4)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/flippers/FlipInXAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.flippers;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class FlipInXAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"rotationX\", 90, -15, 15, 0),\n                ObjectAnimator.ofFloat(target, \"alpha\", 0.25f, 0.5f, 0.75f, 1)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/flippers/FlipInYAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.flippers;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class FlipInYAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"rotationY\", 90, -15, 15, 0),\n                ObjectAnimator.ofFloat(target, \"alpha\", 0.25f, 0.5f, 0.75f, 1)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/flippers/FlipOutXAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.flippers;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class FlipOutXAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"rotationX\", 0, 90),\n                ObjectAnimator.ofFloat(target, \"alpha\", 1, 0)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/flippers/FlipOutYAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.flippers;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class FlipOutYAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"rotationY\", 0, 90),\n                ObjectAnimator.ofFloat(target, \"alpha\", 1, 0)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/rotating_entrances/RotateInAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.rotating_entrances;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class RotateInAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"rotation\", -200, 0),\n                ObjectAnimator.ofFloat(target, \"alpha\", 0, 1)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/rotating_entrances/RotateInDownLeftAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.rotating_entrances;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class RotateInDownLeftAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        float x = target.getPaddingLeft();\n        float y = target.getHeight() - target.getPaddingBottom();\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"rotation\", -90, 0),\n                ObjectAnimator.ofFloat(target, \"alpha\", 0, 1),\n                ObjectAnimator.ofFloat(target, \"pivotX\", x, x),\n                ObjectAnimator.ofFloat(target, \"pivotY\", y, y)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/rotating_entrances/RotateInDownRightAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.rotating_entrances;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class RotateInDownRightAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        float x = target.getWidth() - target.getPaddingRight();\n        float y = target.getHeight() - target.getPaddingBottom();\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"rotation\", 90, 0),\n                ObjectAnimator.ofFloat(target, \"alpha\", 0, 1),\n                ObjectAnimator.ofFloat(target, \"pivotX\", x, x),\n                ObjectAnimator.ofFloat(target, \"pivotY\", y, y)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/rotating_entrances/RotateInUpLeftAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.rotating_entrances;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class RotateInUpLeftAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        float x = target.getPaddingLeft();\n        float y = target.getHeight() - target.getPaddingBottom();\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"rotation\", 90, 0),\n                ObjectAnimator.ofFloat(target, \"alpha\", 0, 1),\n                ObjectAnimator.ofFloat(target, \"pivotX\", x, x),\n                ObjectAnimator.ofFloat(target, \"pivotY\", y, y)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/rotating_entrances/RotateInUpRightAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.rotating_entrances;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class RotateInUpRightAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        float x = target.getWidth() - target.getPaddingRight();\n        float y = target.getHeight() - target.getPaddingBottom();\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"rotation\", -90, 0),\n                ObjectAnimator.ofFloat(target, \"alpha\", 0, 1),\n                ObjectAnimator.ofFloat(target, \"pivotX\", x, x),\n                ObjectAnimator.ofFloat(target, \"pivotY\", y, y)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/rotating_exits/RotateOutAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.rotating_exits;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class RotateOutAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"alpha\", 1, 0),\n                ObjectAnimator.ofFloat(target, \"rotation\", 0, 200)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/rotating_exits/RotateOutDownLeftAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.rotating_exits;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class RotateOutDownLeftAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        float x = target.getPaddingLeft();\n        float y = target.getHeight() - target.getPaddingBottom();\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"alpha\", 1, 0),\n                ObjectAnimator.ofFloat(target, \"rotation\", 0, 90),\n                ObjectAnimator.ofFloat(target, \"pivotX\", x, x),\n                ObjectAnimator.ofFloat(target, \"pivotY\", y, y)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/rotating_exits/RotateOutDownRightAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.rotating_exits;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class RotateOutDownRightAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        float x = target.getWidth() - target.getPaddingRight();\n        float y = target.getHeight() - target.getPaddingBottom();\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"alpha\", 1, 0),\n                ObjectAnimator.ofFloat(target, \"rotation\", 0, -90),\n                ObjectAnimator.ofFloat(target, \"pivotX\", x, x),\n                ObjectAnimator.ofFloat(target, \"pivotY\", y, y)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/rotating_exits/RotateOutUpLeftAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.rotating_exits;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class RotateOutUpLeftAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        float x = target.getPaddingLeft();\n        float y = target.getHeight() - target.getPaddingBottom();\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"alpha\", 1, 0),\n                ObjectAnimator.ofFloat(target, \"rotation\", 0, -90),\n                ObjectAnimator.ofFloat(target, \"pivotX\", x, x),\n                ObjectAnimator.ofFloat(target, \"pivotY\", y, y)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/rotating_exits/RotateOutUpRightAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.rotating_exits;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class RotateOutUpRightAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        float x = target.getWidth() - target.getPaddingRight();\n        float y = target.getHeight() - target.getPaddingBottom();\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"alpha\", 1, 0),\n                ObjectAnimator.ofFloat(target, \"rotation\", 0, 90),\n                ObjectAnimator.ofFloat(target, \"pivotX\", x, x),\n                ObjectAnimator.ofFloat(target, \"pivotY\", y, y)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/sliders/SlideInDownAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.sliders;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class SlideInDownAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        int distance = target.getTop() + target.getHeight();\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"alpha\", 0, 1),\n                ObjectAnimator.ofFloat(target, \"translationY\", -distance, 0)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/sliders/SlideInLeftAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.sliders;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\nimport android.view.ViewGroup;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class SlideInLeftAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        ViewGroup parent = (ViewGroup) target.getParent();\n        int distance = parent.getWidth() - target.getLeft();\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"alpha\", 0, 1),\n                ObjectAnimator.ofFloat(target, \"translationX\", -distance, 0)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/sliders/SlideInRightAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.sliders;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\nimport android.view.ViewGroup;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class SlideInRightAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        ViewGroup parent = (ViewGroup) target.getParent();\n        int distance = parent.getWidth() - target.getLeft();\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"alpha\", 0, 1),\n                ObjectAnimator.ofFloat(target, \"translationX\", distance, 0)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/sliders/SlideInUpAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.sliders;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\nimport android.view.ViewGroup;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class SlideInUpAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        ViewGroup parent = (ViewGroup) target.getParent();\n        int distance = parent.getHeight() - target.getTop();\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"alpha\", 0, 1),\n                ObjectAnimator.ofFloat(target, \"translationY\", distance, 0)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/sliders/SlideOutDownAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.sliders;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\nimport android.view.ViewGroup;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class SlideOutDownAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        ViewGroup parent = (ViewGroup) target.getParent();\n        int distance = parent.getHeight() - target.getTop();\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"alpha\", 1, 0),\n                ObjectAnimator.ofFloat(target, \"translationY\", 0, distance)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/sliders/SlideOutLeftAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.sliders;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class SlideOutLeftAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"alpha\", 1, 0),\n                ObjectAnimator.ofFloat(target, \"translationX\", 0, -target.getRight())\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/sliders/SlideOutRightAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.sliders;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\nimport android.view.ViewGroup;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class SlideOutRightAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        ViewGroup parent = (ViewGroup) target.getParent();\n        int distance = parent.getWidth() - target.getLeft();\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"alpha\", 1, 0),\n                ObjectAnimator.ofFloat(target, \"translationX\", 0, distance)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/sliders/SlideOutUpAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.sliders;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class SlideOutUpAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"alpha\", 1, 0),\n                ObjectAnimator.ofFloat(target, \"translationY\", 0, -target.getBottom())\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/specials/HingeAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.specials;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\nimport com.daimajia.easing.Glider;\nimport com.daimajia.easing.Skill;\n\npublic class HingeAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        float x = target.getPaddingLeft();\n        float y = target.getPaddingTop();\n        getAnimatorAgent().playTogether(\n                Glider.glide(Skill.SineEaseInOut, 1300, ObjectAnimator.ofFloat(target, \"rotation\", 0, 80, 60, 80, 60, 60)),\n                ObjectAnimator.ofFloat(target, \"translationY\", 0, 0, 0, 0, 0, 700),\n                ObjectAnimator.ofFloat(target, \"alpha\", 1, 1, 1, 1, 1, 0),\n                ObjectAnimator.ofFloat(target, \"pivotX\", x, x, x, x, x, x),\n                ObjectAnimator.ofFloat(target, \"pivotY\", y, y, y, y, y, y)\n        );\n\n        setDuration(1300);\n    }\n}\n\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/specials/RollInAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.specials;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class RollInAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"alpha\", 0, 1),\n                ObjectAnimator.ofFloat(target, \"translationX\", -(target.getWidth() - target.getPaddingLeft() - target.getPaddingRight()), 0),\n                ObjectAnimator.ofFloat(target, \"rotation\", -120, 0)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/specials/RollOutAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.specials;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class RollOutAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"alpha\", 1, 0),\n                ObjectAnimator.ofFloat(target, \"translationX\", 0, target.getWidth()),\n                ObjectAnimator.ofFloat(target, \"rotation\", 0, 120)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/specials/in/DropOutAnimator.java",
    "content": "package com.daimajia.androidanimations.library.specials.in;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\nimport com.daimajia.easing.Glider;\nimport com.daimajia.easing.Skill;\n\npublic class DropOutAnimator extends BaseViewAnimator {\n    @Override\n    protected void prepare(View target) {\n        int distance = target.getTop() + target.getHeight();\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"alpha\", 0, 1),\n                Glider.glide(Skill.BounceEaseOut, getDuration(), ObjectAnimator.ofFloat(target, \"translationY\", -distance, 0))\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/specials/in/LandingAnimator.java",
    "content": "package com.daimajia.androidanimations.library.specials.in;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\nimport com.daimajia.easing.Glider;\nimport com.daimajia.easing.Skill;\n\npublic class LandingAnimator extends BaseViewAnimator {\n    @Override\n    protected void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                Glider.glide(Skill.QuintEaseOut, getDuration(), ObjectAnimator.ofFloat(target, \"scaleX\", 1.5f, 1f)),\n                Glider.glide(Skill.QuintEaseOut, getDuration(), ObjectAnimator.ofFloat(target, \"scaleY\", 1.5f, 1f)),\n                Glider.glide(Skill.QuintEaseOut, getDuration(), ObjectAnimator.ofFloat(target, \"alpha\", 0, 1f))\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/specials/out/TakingOffAnimator.java",
    "content": "package com.daimajia.androidanimations.library.specials.out;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\nimport com.daimajia.easing.Glider;\nimport com.daimajia.easing.Skill;\n\npublic class TakingOffAnimator extends BaseViewAnimator {\n    @Override\n    protected void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                Glider.glide(Skill.QuintEaseOut, getDuration(), ObjectAnimator.ofFloat(target, \"scaleX\", 1f, 1.5f)),\n                Glider.glide(Skill.QuintEaseOut, getDuration(), ObjectAnimator.ofFloat(target, \"scaleY\", 1f, 1.5f)),\n                Glider.glide(Skill.QuintEaseOut, getDuration(), ObjectAnimator.ofFloat(target, \"alpha\", 1, 0))\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/zooming_entrances/ZoomInAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.zooming_entrances;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class ZoomInAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"scaleX\", 0.45f, 1),\n                ObjectAnimator.ofFloat(target, \"scaleY\", 0.45f, 1),\n                ObjectAnimator.ofFloat(target, \"alpha\", 0, 1)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/zooming_entrances/ZoomInDownAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.zooming_entrances;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class ZoomInDownAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"scaleX\", 0.1f, 0.475f, 1),\n                ObjectAnimator.ofFloat(target, \"scaleY\", 0.1f, 0.475f, 1),\n                ObjectAnimator.ofFloat(target, \"translationY\", -target.getBottom(), 60, 0),\n                ObjectAnimator.ofFloat(target, \"alpha\", 0, 1, 1)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/zooming_entrances/ZoomInLeftAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.zooming_entrances;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class ZoomInLeftAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"scaleX\", 0.1f, 0.475f, 1),\n                ObjectAnimator.ofFloat(target, \"scaleY\", 0.1f, 0.475f, 1),\n                ObjectAnimator.ofFloat(target, \"translationX\", -target.getRight(), 48, 0),\n                ObjectAnimator.ofFloat(target, \"alpha\", 0, 1, 1)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/zooming_entrances/ZoomInRightAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.zooming_entrances;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class ZoomInRightAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"scaleX\", 0.1f, 0.475f, 1),\n                ObjectAnimator.ofFloat(target, \"scaleY\", 0.1f, 0.475f, 1),\n                ObjectAnimator.ofFloat(target, \"translationX\", target.getWidth() + target.getPaddingRight(), -48, 0),\n                ObjectAnimator.ofFloat(target, \"alpha\", 0, 1, 1)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/zooming_entrances/ZoomInUpAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.zooming_entrances;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\nimport android.view.ViewGroup;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class ZoomInUpAnimator extends BaseViewAnimator {\n    @Override\n    public void prepare(View target) {\n        ViewGroup parent = (ViewGroup) target.getParent();\n        int distance = parent.getHeight() - target.getTop();\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"alpha\", 0, 1, 1),\n                ObjectAnimator.ofFloat(target, \"scaleX\", 0.1f, 0.475f, 1),\n                ObjectAnimator.ofFloat(target, \"scaleY\", 0.1f, 0.475f, 1),\n                ObjectAnimator.ofFloat(target, \"translationY\", distance, -60, 0)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/zooming_exits/ZoomOutAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.zooming_exits;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class ZoomOutAnimator extends BaseViewAnimator {\n    @Override\n    protected void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"alpha\", 1, 0, 0),\n                ObjectAnimator.ofFloat(target, \"scaleX\", 1, 0.3f, 0),\n                ObjectAnimator.ofFloat(target, \"scaleY\", 1, 0.3f, 0)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/zooming_exits/ZoomOutDownAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.zooming_exits;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\nimport android.view.ViewGroup;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class ZoomOutDownAnimator extends BaseViewAnimator {\n    @Override\n    protected void prepare(View target) {\n        ViewGroup parent = (ViewGroup) target.getParent();\n        int distance = parent.getHeight() - target.getTop();\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"alpha\", 1, 1, 0),\n                ObjectAnimator.ofFloat(target, \"scaleX\", 1, 0.475f, 0.1f),\n                ObjectAnimator.ofFloat(target, \"scaleY\", 1, 0.475f, 0.1f),\n                ObjectAnimator.ofFloat(target, \"translationY\", 0, -60, distance)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/zooming_exits/ZoomOutLeftAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.zooming_exits;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class ZoomOutLeftAnimator extends BaseViewAnimator {\n    @Override\n    protected void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"alpha\", 1, 1, 0),\n                ObjectAnimator.ofFloat(target, \"scaleX\", 1, 0.475f, 0.1f),\n                ObjectAnimator.ofFloat(target, \"scaleY\", 1, 0.475f, 0.1f),\n                ObjectAnimator.ofFloat(target, \"translationX\", 0, 42, -target.getRight())\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/zooming_exits/ZoomOutRightAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.zooming_exits;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\nimport android.view.ViewGroup;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class ZoomOutRightAnimator extends BaseViewAnimator {\n    @Override\n    protected void prepare(View target) {\n        ViewGroup parent = (ViewGroup) target.getParent();\n        int distance = parent.getWidth() - parent.getLeft();\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"alpha\", 1, 1, 0),\n                ObjectAnimator.ofFloat(target, \"scaleX\", 1, 0.475f, 0.1f),\n                ObjectAnimator.ofFloat(target, \"scaleY\", 1, 0.475f, 0.1f),\n                ObjectAnimator.ofFloat(target, \"translationX\", 0, -42, distance)\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/java/com/daimajia/androidanimations/library/zooming_exits/ZoomOutUpAnimator.java",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 daimajia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage com.daimajia.androidanimations.library.zooming_exits;\n\nimport android.animation.ObjectAnimator;\nimport android.view.View;\n\nimport com.daimajia.androidanimations.library.BaseViewAnimator;\n\npublic class ZoomOutUpAnimator extends BaseViewAnimator {\n    @Override\n    protected void prepare(View target) {\n        getAnimatorAgent().playTogether(\n                ObjectAnimator.ofFloat(target, \"alpha\", 1, 1, 0),\n                ObjectAnimator.ofFloat(target, \"scaleX\", 1, 0.475f, 0.1f),\n                ObjectAnimator.ofFloat(target, \"scaleY\", 1, 0.475f, 0.1f),\n                ObjectAnimator.ofFloat(target, \"translationY\", 0, 60, -target.getBottom())\n        );\n    }\n}\n"
  },
  {
    "path": "library/src/main/res/values/strings.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n\n    <!-- hack to prevent missing R.txt, it's pretty wired.-->\n    <string name=\"android_animations_lib_name\">AndroidAnimations</string>\n\n</resources>\n"
  },
  {
    "path": "settings.gradle",
    "content": "include ':library', 'demo'\n"
  }
]