'how can I create a custom footer in TCPDF and apply it to the last PDF page in laravel?
Basically the title. I came across other questions that are similar to this one, and everyone is defining the Footer() function but I don't know exactly where
Solution 1:[1]
I sew you have 5 activities and only the first activity has the following attribute.
android:exported="true"
Just try adding this attribute to the rest of the activities in your Manifest.
<activity
android:name=".activities.MainActivity"
android:label="@string/title_activity_main"
android:exported="true"
android:screenOrientation="portrait" />
<activity
android:name=".activities.InboxActivity"
android:exported="true"
android:screenOrientation="portrait" />
<activity
android:name="ly.warp.sdk.activities.WarpViewActivity"
android:label=""
android:exported="true"
android:screenOrientation="portrait" />
<activity
android:name="ly.warp.sdk.dexter.PermissionsActivity"
android:launchMode="singleInstance"
android:screenOrientation="portrait"
android:exported="true"
android:theme="@android:style/Theme.Light.NoTitleBar" />
Solution 2:[2]
After so many hours of trial and error i found the source of the problem. It was some receivers from huawei push kit library that didn't have the exported property. I updated it to the newest version and my project built just fine.
Latest version of the Huawei PushKit
implementation 'com.huawei.hms:push:6.1.0.300'
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Tonnie |
| Solution 2 | panostr |
