Android Question problem with nfc library for reading 15693 rfid tags

seskindell

Active Member
Licensed User
Longtime User
Getting an error message in the androidmanifest:

Parsing code. 0.01
Compiling code. 0.02
Compiling layouts code. 0.00
Generating R file. Error
AndroidManifest.xml:32: error: Error: No resource found that matches the given name (at 'resource' with value '@xml/tech_filter').
 

seskindell

Active Member
Licensed User
Longtime User
Hi Erel,
Here it is:

'This code will be applied to the manifest file during compilation.
'You do not need to modify it in most cases.
'See this link for for more information: http://www.b4x.com/forum/showthread.php?p=78136
AddManifestText(
<uses-sdk android:minSdkVersion="10" />
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")

AddActivityText(Main, <intent-filter>
<action android:name="android.nfc.action.TECH_DISCOVERED"/>
</intent-filter>)
AddActivityText(Main,<meta-data
android:name="android.nfc.action.TECH_DISCOVERED"
android:resource="@xml/tech_filter" />)
'End of default text.
 
Upvote 0
Top