Skip to content

Commit a82b65f

Browse files
committed
New sample app which illustrates key aspects of NFC card emulation
1 parent a330781 commit a82b65f

143 files changed

Lines changed: 2851 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src"/>
4+
<classpathentry kind="src" path="res"/>
5+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/net.rim.ejde.BlackBerryVMInstallType/BlackBerry JRE 7.0.0"/>
6+
<classpathentry kind="output" path="bin"/>
7+
</classpath>

NFC/NfcTransactionHandler/.project

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>NfcTransactionHandler</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>net.rim.ejde.internal.builder.BlackBerryPreprocessBuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>net.rim.ejde.internal.builder.BlackBerryResourcesBuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
<buildCommand>
19+
<name>org.eclipse.jdt.core.javabuilder</name>
20+
<arguments>
21+
</arguments>
22+
</buildCommand>
23+
</buildSpec>
24+
<natures>
25+
<nature>net.rim.ejde.BlackBerryPreProcessNature</nature>
26+
<nature>net.rim.ejde.BlackBerryProjectCoreNature</nature>
27+
<nature>org.eclipse.jdt.core.javanature</nature>
28+
</natures>
29+
</projectDescription>
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#Wed Oct 26 08:55:53 BST 2011
2+
eclipse.preferences.version=1
3+
outputfolder=build
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#Wed Oct 26 09:26:47 BST 2011
2+
eclipse.preferences.version=1
3+
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=disabled
4+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.2
5+
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
6+
org.eclipse.jdt.core.compiler.compliance=1.4
7+
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
8+
org.eclipse.jdt.core.compiler.debug.localVariable=generate
9+
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
10+
org.eclipse.jdt.core.compiler.problem.assertIdentifier=ignore
11+
org.eclipse.jdt.core.compiler.problem.enumIdentifier=ignore
12+
org.eclipse.jdt.core.compiler.source=1.3
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<!-- This file has been generated by the BlackBerry Plugin for Eclipse v3.6.1. -->
2+
3+
<Properties ModelVersion="1.1.2">
4+
<General Title="" Version="1.0.0" Vendor="Martin Woolley" Description=""/>
5+
<Application Type="BlackBerry Application" MainMIDletName="" MainArgs="" HomeScreenPosition="0" StartupTier="7" IsSystemModule="false" IsAutostartup="false"/>
6+
<Resources hasTitleResource="false" TitleResourceBundleName="" TitleResourceBundleRelativePath="" TitleResourceBundleClassName="" TitleResourceBundleKey="" DescriptionId="">
7+
<Icons>
8+
<Icon CanonicalFileName="res/img/icon2.png" IsFocus="false"/>
9+
</Icons>
10+
</Resources>
11+
<KeywordResources KeywordResourceBundleName="" KeywordResourceBundleRelativePath="" KeywordResourceBundleClassName="" KeywordResourceBundleKey=""/>
12+
<Compile OutputCompilerMessages="false" ConvertImages="true" CreateWarningForNoExportedRoutine="true" CompressResources="false" AliasList="">
13+
<PreprocessorDefines/>
14+
</Compile>
15+
<Packaging PreBuildStep="" PostBuildStep="" CleanStep="" OutputFileName="NfcTransactionHandler" OutputFolder="deliverables" GenerateALXFile="true">
16+
<AlxFiles/>
17+
</Packaging>
18+
<HiddenProperties>
19+
<ClassProtection/>
20+
<PackageProtection/>
21+
</HiddenProperties>
22+
<AlternateEntryPoints>
23+
<AlternateEntryPoint Title="nfc_handler" MainMIDletName="" ArgumentsForMain="auto" HomeScreenPosition="0" StartupTier="7" IsSystemModule="true" IsAutostartup="true" hasTitleResource="false" TitleResourceBundleKey="" TitleResourceBundleName="" TitleResourceBundleClassName="" TitleResourceBundleRelativePath="">
24+
<Icons/>
25+
<KeywordResources KeywordResourceBundleName="" KeywordResourceBundleRelativePath="" KeywordResourceBundleClassName="" KeywordResourceBundleKey=""/>
26+
</AlternateEntryPoint>
27+
</AlternateEntryPoints>
28+
</Properties>
Lines changed: 47 additions & 0 deletions
70.5 KB
Binary file not shown.
3.29 KB
3.38 KB
645 Bytes

0 commit comments

Comments
 (0)