I´m doing a wrap for https://github.com/EdwardvanRaak/MaterialBarcodeScanner
The lib is using a Builder to build the component properties. So far no problem.
I need to pass a Activity at some place.
There is also a entry for the manifest i need to add
i tried it with
or
but i always get this error
de.amberhome.appcompat.example1 is the packagename of the AppCompat example i use to create an example
Any hints are highly welcome ;-)
The lib is using a Builder to build the component properties. So far no problem.
I need to pass a Activity at some place.
There is also a entry for the manifest i need to add
i tried it with
B4X:
AddManifestText(<activity
android:theme="@style/AppTheme.NoActionBar"
android:name=".com.edwardvanraak.materialbarcodescanner.MaterialBarcodeScannerActivity"
android:label="@string/library_name" >
</activity>)
B4X:
AddManifestText(<activity
android:theme="@style/AppTheme.NoActionBar"
android:name=".MaterialBarcodeScannerActivity"
android:label="@string/library_name" >
</activity>)
but i always get this error
android.content.ActivityNotFoundException: Unable to find explicit activity class {de.amberhome.appcompat.example1/com.edwardvanraak.materialbarcodescanner.MaterialBarcodeScannerActivity}; have you declared this activity in your AndroidManifest.xml?
de.amberhome.appcompat.example1 is the packagename of the AppCompat example i use to create an example
Any hints are highly welcome ;-)