CleverTap / clevertap-android-sdk

CleverTap Android SDK

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Some components are not exported

KaustubhPatange opened this issue · comments

Referencing lines https://github.com/CleverTap/clevertap-android-sdk/blob/master/clevertap-core/src/main/AndroidManifest.xml#L7-L15

<activity
    android:name="com.clevertap.android.sdk.InAppNotificationActivity"
    android:configChanges="keyboardHidden"
    android:theme="@android:style/Theme.Translucent.NoTitleBar" />

<activity
    android:name="com.clevertap.android.sdk.inbox.CTInboxActivity"
    android:configChanges="keyboardHidden"
    android:theme="@style/Theme.AppCompat.DayNight.DarkActionBar" />

Is there any reason why these components are not safely exported? It might cause issues with Android 12 devices when showing notifications.

Thanks for clearing up.