├── .gitattribute ├── .gitignore ├── AndroidManifest.xml ├── proguard.cfg ├── project.properties ├── res ├── drawable-hdpi │ └── ic_launcher.png ├── drawable-ldpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── layout │ ├── proxy.xml │ ├── relay.xml │ ├── save_dialog.xml │ ├── save_tab.xml │ └── selector.xml ├── menu │ ├── data_context_menu.xml │ ├── menu.xml │ └── saved_context_menu.xml ├── values │ └── strings.xml └── xml │ └── preferences.xml └── src └── org └── eleetas └── nfc └── nfcproxy ├── DBHelper.java ├── ExportDialogFragment.java ├── NFCPrefs.java ├── NFCProxyActivity.java ├── NFCRelayActivity.java ├── NFCVars.java ├── SaveDialogFragment.java ├── SelectorActivity.java ├── SettingsActivity.java ├── SettingsActivityCompat.java └── utils ├── BasicTagTechnologyWrapper.java ├── CryptoHelper.java ├── IOUtils.java ├── LogHelper.java ├── TagHelper.java └── TextHelper.java /.gitattribute: -------------------------------------------------------------------------------- 1 | # Set default behaviour, in case users don't have core.autocrlf set. 2 | * text=auto 3 | 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | gen/ 3 | /.classpath 4 | /.project 5 | -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 19 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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-15 12 | -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfcproxy/NFCProxy/8beea18bddc0d31e530a892457296a77efd7a435/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfcproxy/NFCProxy/8beea18bddc0d31e530a892457296a77efd7a435/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfcproxy/NFCProxy/8beea18bddc0d31e530a892457296a77efd7a435/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/layout/proxy.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 12 | 13 | 18 | 19 | 23 | 24 | 25 | 29 | 30 | 34 | 35 | 38 | 39 | 40 | 46 | 47 | 48 | 49 | 50 | 55 | 56 | 64 | 65 | 66 | 70 | 71 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | -------------------------------------------------------------------------------- /res/layout/relay.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 12 | 13 | 17 | 18 | 22 | 23 | 24 | 28 | 29 | 34 | 35 | 42 | 43 | 104 | 105 | 106 | 107 | 108 | -------------------------------------------------------------------------------- /res/layout/save_dialog.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 11 | 12 | 17 | 18 | 23 | 24 | 25 | 30 | 31 | 36 | 37 | -------------------------------------------------------------------------------- /res/layout/save_tab.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /res/layout/selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 |