Skip to content

Commit

Permalink
fixed obsolete reference to Hello world applet
Browse files Browse the repository at this point in the history
fixes #163
regression from 1caff4f
  • Loading branch information
frankmorgner committed May 18, 2020
1 parent feeb732 commit 920bc70
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 8 deletions.
1 change: 0 additions & 1 deletion ACardEmulator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ APDUs are then returned to the smart card reader.
With the built-in Java Card runtime of [jCardSim](http:https://www.jcardsim.org/) the
app includes the following Applets:

- [Hello World Applet](https://github.com/licel/jcardsim/blob/master/src/main/java/com/licel/jcardsim/samples/HelloWorldApplet.java) (application identifier ``F000000001``)
- [OpenPGP Applet](https://developers.yubico.com/ykneo-openpgp/) (application identifier ``D2760001240102000000000000010000``)
- [OATH Applet](https://developers.yubico.com/ykneo-oath/) (application identifier ``A000000527210101``)
- [ISO Applet](http:https://www.pwendland.net/IsoApplet/) (application identifier ``F276A288BCFBA69D34F31001``)
Expand Down
2 changes: 1 addition & 1 deletion ACardEmulator/app/src/main/external/jcardsim
Submodule jcardsim updated 169 files
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,6 @@ public void onCreate(Bundle savedInstanceState) {
// guidelines.
bindPreferenceSummaryToValue(findPreference("emulator"));

bindPreferenceSummaryToValue(findPreference("activate_helloworld"));
bindPreferenceSummaryToValue(findPreference("activate_pivapplet"));
bindPreferenceSummaryToValue(findPreference("activate_openpgp"));
bindPreferenceSummaryToValue(findPreference("activate_oath"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ public static void createEmulator(Context context) {
Integer.parseInt(SP.getString("port", Integer.toString(VICCEmulator.DEFAULT_PORT))));
} else {
emulator = new JCEmulator(context,
SP.getBoolean("activate_helloworld", false),
SP.getBoolean("activate_openpgp", false),
SP.getBoolean("activate_oath", false),
SP.getBoolean("activate_isoapplet", false),
Expand Down Expand Up @@ -132,4 +131,4 @@ public static String[] getRegisteredAids(Context context) {
public static void deactivate() {
emulator.deactivate();
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ public class JCEmulator implements Emulator {

public JCEmulator(
Context context,
boolean activate_helloworld,
boolean activate_openpgp,
boolean activate_oath,
boolean activate_isoapplet,
Expand Down Expand Up @@ -122,4 +121,4 @@ public byte[] process(byte[] commandAPDU) {
public void deactivate() {
simulator.reset();
}
}
}
1 change: 0 additions & 1 deletion ACardEmulator/doc/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ device instead of the phone.
With the built-in Java Card runtime of jCardSim_ the app includes the following
Applets:

- `Hello World Applet`_ (application identifier ``F000000001``)
- `OpenPGP Applet`_ (application identifier ``D2760001240102000000000000010000``)
- `OATH Applet`_ (application identifier ``A000000527210101``)
- `ISO Applet`_ (application identifier ``F276A288BCFBA69D34F31001``)
Expand Down

0 comments on commit 920bc70

Please sign in to comment.