├── bin ├── NFCulT.apk ├── classes.dex ├── resources.ap_ ├── classes │ └── org │ │ └── bughardy │ │ └── nfcult │ │ ├── R.class │ │ ├── R$id.class │ │ ├── R$attr.class │ │ ├── R$dimen.class │ │ ├── R$layout.class │ │ ├── R$menu.class │ │ ├── R$string.class │ │ ├── R$style.class │ │ ├── R$drawable.class │ │ ├── BuildConfig.class │ │ ├── MainActivity.class │ │ ├── MainActivity$1.class │ │ ├── MainActivity$PlaceholderFragment.class │ │ ├── MainActivity$SectionsPagerAdapter.class │ │ ├── MainActivity$PlaceholderFragment$1.class │ │ ├── MainActivity$PlaceholderFragment$10.class │ │ ├── MainActivity$PlaceholderFragment$11.class │ │ ├── MainActivity$PlaceholderFragment$12.class │ │ ├── MainActivity$PlaceholderFragment$13.class │ │ ├── MainActivity$PlaceholderFragment$14.class │ │ ├── MainActivity$PlaceholderFragment$15.class │ │ ├── MainActivity$PlaceholderFragment$16.class │ │ ├── MainActivity$PlaceholderFragment$17.class │ │ ├── MainActivity$PlaceholderFragment$18.class │ │ ├── MainActivity$PlaceholderFragment$19.class │ │ ├── MainActivity$PlaceholderFragment$2.class │ │ ├── MainActivity$PlaceholderFragment$20.class │ │ ├── MainActivity$PlaceholderFragment$21.class │ │ ├── MainActivity$PlaceholderFragment$22.class │ │ ├── MainActivity$PlaceholderFragment$23.class │ │ ├── MainActivity$PlaceholderFragment$24.class │ │ ├── MainActivity$PlaceholderFragment$25.class │ │ ├── MainActivity$PlaceholderFragment$26.class │ │ ├── MainActivity$PlaceholderFragment$27.class │ │ ├── MainActivity$PlaceholderFragment$28.class │ │ ├── MainActivity$PlaceholderFragment$29.class │ │ ├── MainActivity$PlaceholderFragment$3.class │ │ ├── MainActivity$PlaceholderFragment$4.class │ │ ├── MainActivity$PlaceholderFragment$5.class │ │ ├── MainActivity$PlaceholderFragment$6.class │ │ ├── MainActivity$PlaceholderFragment$7.class │ │ ├── MainActivity$PlaceholderFragment$8.class │ │ ├── MainActivity$PlaceholderFragment$9.class │ │ ├── MainActivity$PlaceholderFragment$10$1.class │ │ ├── MainActivity$PlaceholderFragment$10$2.class │ │ ├── MainActivity$PlaceholderFragment$10$3.class │ │ ├── MainActivity$PlaceholderFragment$10$4.class │ │ ├── MainActivity$PlaceholderFragment$11$1.class │ │ ├── MainActivity$PlaceholderFragment$12$1.class │ │ ├── MainActivity$PlaceholderFragment$13$1.class │ │ ├── MainActivity$PlaceholderFragment$14$1.class │ │ ├── MainActivity$PlaceholderFragment$15$1.class │ │ ├── MainActivity$PlaceholderFragment$16$1.class │ │ ├── MainActivity$PlaceholderFragment$17$1.class │ │ ├── MainActivity$PlaceholderFragment$18$1.class │ │ ├── MainActivity$PlaceholderFragment$19$1.class │ │ ├── MainActivity$PlaceholderFragment$20$1.class │ │ ├── MainActivity$PlaceholderFragment$21$1.class │ │ ├── MainActivity$PlaceholderFragment$22$1.class │ │ ├── MainActivity$PlaceholderFragment$23$1.class │ │ ├── MainActivity$PlaceholderFragment$24$1.class │ │ ├── MainActivity$PlaceholderFragment$25$1.class │ │ ├── MainActivity$PlaceholderFragment$26$1.class │ │ ├── MainActivity$PlaceholderFragment$27$1.class │ │ ├── MainActivity$PlaceholderFragment$28$1.class │ │ ├── MainActivity$PlaceholderFragment$28$2.class │ │ ├── MainActivity$PlaceholderFragment$28$3.class │ │ ├── MainActivity$PlaceholderFragment$28$4.class │ │ ├── MainActivity$PlaceholderFragment$29$1.class │ │ ├── MainActivity$PlaceholderFragment$29$2.class │ │ ├── MainActivity$PlaceholderFragment$4$1.class │ │ ├── MainActivity$PlaceholderFragment$5$1.class │ │ ├── MainActivity$PlaceholderFragment$5$2.class │ │ ├── MainActivity$PlaceholderFragment$6$1.class │ │ ├── MainActivity$PlaceholderFragment$7$1$1.class │ │ ├── MainActivity$PlaceholderFragment$7$1.class │ │ ├── MainActivity$PlaceholderFragment$8$1.class │ │ └── MainActivity$PlaceholderFragment$7$1$1$1.class ├── res │ └── crunch │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ └── drawable-xxhdpi │ │ └── ic_launcher.png ├── jarlist.cache ├── dexedLibs │ ├── android-support-v13-103730ba94ba079d9984388f4b72cde5.jar │ └── android-support-v13-71a9efc5e59d91df86c7399e34ea9ca9.jar └── AndroidManifest.xml ├── ic_launcher-web.png ├── libs ├── android-support-v13.jar └── android-support-v4.jar ├── res ├── drawable-hdpi │ └── ic_launcher.png ├── drawable-ldpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── drawable-xxhdpi │ └── ic_launcher.png ├── menu │ └── main.xml ├── values │ ├── dimens.xml │ ├── styles.xml │ └── strings.xml ├── layout │ ├── activity_main.xml │ ├── fragment_main.xml │ ├── fragment_four.xml │ ├── fragment_one.xml │ ├── fragment_two.xml │ ├── fragment_three.xml │ ├── custom_dialog.xml │ ├── fragment_five.xml │ └── fragment_edit_dump.xml ├── values-v11 │ └── styles.xml ├── values-w820dp │ └── dimens.xml └── values-v14 │ └── styles.xml ├── lint.xml ├── gen └── org │ └── bughardy │ └── nfcult │ ├── BuildConfig.java │ └── R.java ├── .settings └── org.eclipse.jdt.core.prefs ├── .classpath ├── project.properties ├── proguard-project.txt ├── .project ├── AndroidManifest.xml ├── README.md └── src └── org └── bughardy └── nfcult └── MainActivity.java /bin/NFCulT.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/NFCulT.apk -------------------------------------------------------------------------------- /bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes.dex -------------------------------------------------------------------------------- /bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/resources.ap_ -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/ic_launcher-web.png -------------------------------------------------------------------------------- /libs/android-support-v13.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/libs/android-support-v13.jar -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/libs/android-support-v4.jar -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/R.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/R$id.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/R$attr.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/R$dimen.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/R$layout.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/R$menu.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/R$string.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/R$style.class -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/res/crunch/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/R$drawable.class -------------------------------------------------------------------------------- /bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/BuildConfig.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$1.class -------------------------------------------------------------------------------- /lint.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$SectionsPagerAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$SectionsPagerAdapter.class -------------------------------------------------------------------------------- /bin/dexedLibs/android-support-v13-103730ba94ba079d9984388f4b72cde5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/dexedLibs/android-support-v13-103730ba94ba079d9984388f4b72cde5.jar -------------------------------------------------------------------------------- /bin/dexedLibs/android-support-v13-71a9efc5e59d91df86c7399e34ea9ca9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/dexedLibs/android-support-v13-71a9efc5e59d91df86c7399e34ea9ca9.jar -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$1.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$10.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$10.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$11.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$11.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$12.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$12.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$13.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$13.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$14.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$14.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$15.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$15.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$16.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$16.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$17.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$17.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$18.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$18.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$19.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$19.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$2.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$20.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$20.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$21.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$21.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$22.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$22.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$23.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$23.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$24.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$24.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$25.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$25.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$26.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$26.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$27.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$27.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$28.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$28.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$29.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$29.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$3.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$4.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$5.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$6.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$7.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$8.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$8.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$9.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$10$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$10$1.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$10$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$10$2.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$10$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$10$3.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$10$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$10$4.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$11$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$11$1.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$12$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$12$1.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$13$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$13$1.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$14$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$14$1.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$15$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$15$1.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$16$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$16$1.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$17$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$17$1.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$18$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$18$1.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$19$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$19$1.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$20$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$20$1.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$21$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$21$1.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$22$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$22$1.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$23$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$23$1.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$24$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$24$1.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$25$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$25$1.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$26$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$26$1.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$27$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$27$1.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$28$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$28$1.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$28$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$28$2.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$28$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$28$3.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$28$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$28$4.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$29$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$29$1.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$29$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$29$2.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$4$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$4$1.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$5$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$5$1.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$5$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$5$2.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$6$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$6$1.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$7$1$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$7$1$1.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$7$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$7$1.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$8$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$8$1.class -------------------------------------------------------------------------------- /bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$7$1$1$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securenetwork/NFCulT/HEAD/bin/classes/org/bughardy/nfcult/MainActivity$PlaceholderFragment$7$1$1$1.class -------------------------------------------------------------------------------- /res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | -------------------------------------------------------------------------------- /gen/org/bughardy/nfcult/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package org.bughardy.nfcult; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | -------------------------------------------------------------------------------- /res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 64dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /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 edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-20 15 | -------------------------------------------------------------------------------- /res/layout/fragment_main.xml: -------------------------------------------------------------------------------- 1 | 10 | 11 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | NFCulT 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 | -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | NFCulT 5 | LOCK Attack 6 | TIME Attack 7 | REPLAY Attack 8 | Credits 9 | Settings 10 | 11 | NFCulT 12 | 13 |

Developed with such love by bughardy

14 |
Version: 2.0.1
15 | 16 |

Developer: bughardy

17 |

More info at: https://www.github.com/securenetwork/NFCulT

18 | ]]> 19 |
20 |
21 | -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 17 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 17 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /res/layout/fragment_four.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 16 | 17 | 24 | 25 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /res/layout/fragment_one.xml: -------------------------------------------------------------------------------- 1 | 11 | 12 | 21 | 22 |