├── .classpath ├── .gitignore ├── .project ├── AndroidManifest.xml ├── README.md ├── project.properties ├── res ├── drawable-hdpi │ └── icon.png ├── drawable-ldpi │ └── icon.png ├── drawable-mdpi │ └── icon.png ├── layout │ └── main.xml └── values │ └── strings.xml └── src └── com └── gieseckedevrient └── android └── hellosmartcard └── MainActivity.java /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seek-for-android/hello-smartcard-app/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /assets 2 | /bin 3 | /gen 4 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seek-for-android/hello-smartcard-app/HEAD/.project -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seek-for-android/hello-smartcard-app/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seek-for-android/hello-smartcard-app/HEAD/README.md -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seek-for-android/hello-smartcard-app/HEAD/project.properties -------------------------------------------------------------------------------- /res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seek-for-android/hello-smartcard-app/HEAD/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seek-for-android/hello-smartcard-app/HEAD/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seek-for-android/hello-smartcard-app/HEAD/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seek-for-android/hello-smartcard-app/HEAD/res/layout/main.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seek-for-android/hello-smartcard-app/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /src/com/gieseckedevrient/android/hellosmartcard/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seek-for-android/hello-smartcard-app/HEAD/src/com/gieseckedevrient/android/hellosmartcard/MainActivity.java --------------------------------------------------------------------------------