├── CHANGES.markdown ├── Example ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── default.properties ├── libs │ └── commons-codec-1.4.jar ├── res │ ├── drawable-hdpi │ │ └── icon.png │ ├── drawable-ldpi │ │ └── icon.png │ ├── drawable-mdpi │ │ └── icon.png │ ├── layout │ │ ├── main.xml │ │ ├── new_note.xml │ │ └── sign_in.xml │ └── values │ │ └── strings.xml └── src │ └── com │ ├── android │ └── http │ │ └── multipart │ │ ├── ByteArrayPartSource.java │ │ ├── FilePart.java │ │ ├── FilePartSource.java │ │ ├── MultipartEntity.java │ │ ├── Part.java │ │ ├── PartBase.java │ │ ├── PartSource.java │ │ └── StringPart.java │ ├── catchnotes │ └── api │ │ ├── CatchAPI.java │ │ ├── CatchAccount.java │ │ ├── CatchMedia.java │ │ ├── CatchNote.java │ │ ├── CatchNoteRef.java │ │ ├── CatchNotesXmlParser.java │ │ └── VersionedCatchHttpClient.java │ └── example │ └── CatchApiDemo │ └── Dashboard.java ├── LICENSE.txt ├── README.markdown └── android-lib ├── libs └── commons-codec-1.4.jar └── src └── com ├── android └── http │ └── multipart │ ├── ByteArrayPartSource.java │ ├── FilePart.java │ ├── FilePartSource.java │ ├── MultipartEntity.java │ ├── Part.java │ ├── PartBase.java │ ├── PartSource.java │ └── StringPart.java └── catchnotes └── api ├── CatchAPI.java ├── CatchAccount.java ├── CatchMedia.java ├── CatchNote.java ├── CatchNoteRef.java ├── CatchNotesXmlParser.java └── VersionedCatchHttpClient.java /CHANGES.markdown: -------------------------------------------------------------------------------- 1 | ### What's new in 1.0.0. 2 | * Initial release of API-v2 code. 3 | -------------------------------------------------------------------------------- /Example/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Example/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | CatchApiDemo 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /Example/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu May 05 10:45:08 CDT 2011 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 4 | org.eclipse.jdt.core.compiler.compliance=1.5 5 | org.eclipse.jdt.core.compiler.source=1.5 6 | -------------------------------------------------------------------------------- /Example/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /Example/default.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "build.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=android-8 12 | -------------------------------------------------------------------------------- /Example/libs/commons-codec-1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/android-api/9fab8967757a64078fffa811ebb939364e5b3617/Example/libs/commons-codec-1.4.jar -------------------------------------------------------------------------------- /Example/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/android-api/9fab8967757a64078fffa811ebb939364e5b3617/Example/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /Example/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/android-api/9fab8967757a64078fffa811ebb939364e5b3617/Example/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /Example/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/android-api/9fab8967757a64078fffa811ebb939364e5b3617/Example/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /Example/res/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 13 |