Informatix Expert Licensed User Longtime User Jan 29, 2016 #1 Is there an easy way to set the package name as a value of a meta-data in the manifest ? Example: AddApplicationText( <meta-data android:name="com.google.android.gms.nearby.connection.SERVICE_ID" android:value= the package name /> )
Is there an easy way to set the package name as a value of a meta-data in the manifest ? Example: AddApplicationText( <meta-data android:name="com.google.android.gms.nearby.connection.SERVICE_ID" android:value= the package name /> )
P Pendrush Well-Known Member Licensed User Longtime User Jan 29, 2016 #2 Try this AddApplicationText( <meta-data android:name="com.google.android.gms.nearby.connection.SERVICE_ID" android:value=$PACKAGE$ /> ) Not tested lately, but worked fine long time ago in B4x v2.x Upvote 0
Try this AddApplicationText( <meta-data android:name="com.google.android.gms.nearby.connection.SERVICE_ID" android:value=$PACKAGE$ /> ) Not tested lately, but worked fine long time ago in B4x v2.x
Informatix Expert Licensed User Longtime User Jan 29, 2016 #3 Pendrush said: Try this AddApplicationText( <meta-data android:name="com.google.android.gms.nearby.connection.SERVICE_ID" android:value=$PACKAGE$ /> ) Not tested lately, but worked fine long time ago in B4x v2.x Click to expand... Fantastic! Works fine with quotes around. Thank you. Upvote 0
Pendrush said: Try this AddApplicationText( <meta-data android:name="com.google.android.gms.nearby.connection.SERVICE_ID" android:value=$PACKAGE$ /> ) Not tested lately, but worked fine long time ago in B4x v2.x Click to expand... Fantastic! Works fine with quotes around. Thank you.