├── CatchNotesIntegration ├── .classpath ├── .gitignore ├── .project ├── AndroidManifest.xml ├── build.xml ├── default.properties ├── local.properties ├── local.properties.sample ├── proguard.cfg ├── project.properties ├── res │ ├── drawable │ │ ├── icon.png │ │ └── market_icon.png │ ├── layout │ │ └── main.xml │ └── values │ │ ├── CatchIntent.xml │ │ └── strings.xml └── src │ └── com │ └── catchnotes │ ├── integration │ └── IntentIntegrator.java │ ├── intent │ └── CatchIntent.java │ └── samples │ └── integration │ └── IntentTestActivity.java ├── LICENSE.txt └── README.markdown /CatchNotesIntegration/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /CatchNotesIntegration/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /libs 3 | /assets 4 | /gen 5 | -------------------------------------------------------------------------------- /CatchNotesIntegration/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | Intents 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.ResourceManagerBuilder 15 | 16 | 17 | 18 | 19 | com.android.ide.eclipse.adt.PreCompilerBuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | org.eclipse.jdt.core.javanature 31 | com.android.ide.eclipse.adt.AndroidNature 32 | 33 | 34 | -------------------------------------------------------------------------------- /CatchNotesIntegration/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 14 | 15 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /CatchNotesIntegration/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 29 | 30 | 31 | 40 | 41 | 42 | 43 | 47 | 48 | 49 | 51 | 63 | 64 | 82 | 83 | 84 | 85 | 86 | -------------------------------------------------------------------------------- /CatchNotesIntegration/default.properties: -------------------------------------------------------------------------------- 1 | # Project target. 2 | target=android-3 3 | -------------------------------------------------------------------------------- /CatchNotesIntegration/local.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 *NOT* be checked in Version Control Systems, 5 | # as it contains information specific to your local configuration. 6 | 7 | # location of the SDK. This is only used by Ant 8 | # For customization when using a Version Control System, please read the 9 | # header note. 10 | sdk.dir=/Applications/android-sdk-mac_x86 11 | -------------------------------------------------------------------------------- /CatchNotesIntegration/local.properties.sample: -------------------------------------------------------------------------------- 1 | # Location of the Android SDK. 2 | # 3 | # Replace this with the path specific to your build machine. 4 | # 5 | # This is only necessary if you want to use ant to build the APK 6 | # from the command line. 7 | 8 | sdk.dir=/Developer/Android/android-sdk-mac_86 9 | -------------------------------------------------------------------------------- /CatchNotesIntegration/proguard.cfg: -------------------------------------------------------------------------------- 1 | -optimizationpasses 5 2 | -dontusemixedcaseclassnames 3 | -dontskipnonpubliclibraryclasses 4 | -dontpreverify 5 | -verbose 6 | -optimizations !code/simplification/arithmetic,!field/*,!class/merging/* 7 | 8 | -keep public class * extends android.app.Activity 9 | -keep public class * extends android.app.Application 10 | -keep public class * extends android.app.Service 11 | -keep public class * extends android.content.BroadcastReceiver 12 | -keep public class * extends android.content.ContentProvider 13 | -keep public class * extends android.app.backup.BackupAgentHelper 14 | -keep public class * extends android.preference.Preference 15 | -keep public class com.android.vending.licensing.ILicensingService 16 | 17 | -keepclasseswithmembernames class * { 18 | native ; 19 | } 20 | 21 | -keepclasseswithmembers class * { 22 | public (android.content.Context, android.util.AttributeSet); 23 | } 24 | 25 | -keepclasseswithmembers class * { 26 | public (android.content.Context, android.util.AttributeSet, int); 27 | } 28 | 29 | -keepclassmembers class * extends android.app.Activity { 30 | public void *(android.view.View); 31 | } 32 | 33 | -keepclassmembers enum * { 34 | public static **[] values(); 35 | public static ** valueOf(java.lang.String); 36 | } 37 | 38 | -keep class * implements android.os.Parcelable { 39 | public static final android.os.Parcelable$Creator *; 40 | } 41 | -------------------------------------------------------------------------------- /CatchNotesIntegration/project.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 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=android-4 12 | -------------------------------------------------------------------------------- /CatchNotesIntegration/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/android-intent/b365b0f5cb7890e71fe151036fc79bd47445b0dd/CatchNotesIntegration/res/drawable/icon.png -------------------------------------------------------------------------------- /CatchNotesIntegration/res/drawable/market_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/android-intent/b365b0f5cb7890e71fe151036fc79bd47445b0dd/CatchNotesIntegration/res/drawable/market_icon.png -------------------------------------------------------------------------------- /CatchNotesIntegration/res/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 12 | 13 | 20 | 21 |