Hi,
I have to update my extension with android:required="false", in the @UsesActivities I added required:"false" as You can see below:
@UsesActivities(
	activities = {
		@ActivityElement(
			intentFilters = {
				@IntentFilterElement(
					actionElements = {	
						@ActionElement(
							name = "android.nfc.action.TAG_DISCOVERED"
						)
					}, 
					categoryElements = {
						@CategoryElement(
							name = "android.intent.category.DEFAULT"
						)
					}
				)
			}	
			,launchMode="singleTask"
			,name=".Screen1"
			,required="false"
		)
       }
)
but when I try to compile I have this error:
[javac] C:\appinventor-sources\appinventor\components\src\com\google\appinventor\components\runtime\MifareInfo.java:98: error: cannot find symbol
[javac]                     ,required="false"
[javac]                      ^
[javac]   symbol:   method required()
[javac]   location: @interface ActivityElement
Could You help me to solve
Thank You
Best regards
Marco