├── .classpath ├── .gitignore ├── .project ├── AndroidManifest.xml ├── LICENSE.md ├── project.properties ├── readme.md ├── res ├── drawable-hdpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── layout │ └── activity_main.xml ├── values-sw600dp │ └── dimens.xml ├── values-sw720dp-land │ └── dimens.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml └── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── screenshot.png └── src └── nl └── paulus └── nfctagwriter └── MainActivity.java /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balloob/Android-NFC-Tag-Writer/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balloob/Android-NFC-Tag-Writer/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balloob/Android-NFC-Tag-Writer/HEAD/.project -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balloob/Android-NFC-Tag-Writer/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balloob/Android-NFC-Tag-Writer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balloob/Android-NFC-Tag-Writer/HEAD/project.properties -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balloob/Android-NFC-Tag-Writer/HEAD/readme.md -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balloob/Android-NFC-Tag-Writer/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balloob/Android-NFC-Tag-Writer/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balloob/Android-NFC-Tag-Writer/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balloob/Android-NFC-Tag-Writer/HEAD/res/layout/activity_main.xml -------------------------------------------------------------------------------- /res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balloob/Android-NFC-Tag-Writer/HEAD/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balloob/Android-NFC-Tag-Writer/HEAD/res/values-sw720dp-land/dimens.xml -------------------------------------------------------------------------------- /res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balloob/Android-NFC-Tag-Writer/HEAD/res/values-v11/styles.xml -------------------------------------------------------------------------------- /res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balloob/Android-NFC-Tag-Writer/HEAD/res/values-v14/styles.xml -------------------------------------------------------------------------------- /res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balloob/Android-NFC-Tag-Writer/HEAD/res/values/dimens.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balloob/Android-NFC-Tag-Writer/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balloob/Android-NFC-Tag-Writer/HEAD/res/values/styles.xml -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balloob/Android-NFC-Tag-Writer/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/nl/paulus/nfctagwriter/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balloob/Android-NFC-Tag-Writer/HEAD/src/nl/paulus/nfctagwriter/MainActivity.java --------------------------------------------------------------------------------