gitextract_bkj5e1u7/ ├── .idea/ │ ├── .name │ ├── compiler.xml │ ├── copyright/ │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── misc.xml │ ├── modules.xml │ ├── scopes/ │ │ └── scope_settings.xml │ ├── vcs.xml │ └── workspace.xml ├── AndroidManifest.xml ├── README.md ├── ant.properties ├── bezierCurve.iml ├── build.xml ├── local.properties ├── out/ │ └── production/ │ └── bezierCurve/ │ ├── bezierCurve.apk │ └── bezierCurve.unaligned.apk ├── proguard-project.txt ├── project.properties ├── res/ │ ├── layout/ │ │ └── main.xml │ └── values/ │ └── strings.xml └── src/ └── com/ └── example/ └── bezierCurve/ ├── MyActivity.java ├── Pager.java └── PagerFactory.java