Skip to content

Commit

Permalink
Suppress Instantiatable error
Browse files Browse the repository at this point in the history
Suggested here: cordova-plugin-camera-preview/cordova-plugin-camera-preview#637 (comment)

Error: [18:59:57]: ▸ /home/runner/work/UPI-Viewer/UPI-Viewer/app/src/main/AndroidManifest.xml:50: Error: Login must extend android.app.Activity [Instantiatable]
  • Loading branch information
sounddrill31 committed Sep 18, 2024
1 parent 4dc0ba5 commit 03a3176
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@
<activity
android:name=".Login"
android:exported="true"
android:parentActivityName=".MainActivity" >
android:parentActivityName=".MainActivity"
tools:ignore="Instantiatable" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".MainActivity" />
Expand Down

0 comments on commit 03a3176

Please sign in to comment.