Hi there! So I'm currently have an issue with an error message in Unity regarding the icon for push notifications. Here is the error:
OBSOLETE - Providing Android resources in Assets/Plugins/Android/res is deprecated, please move your resources to an Android Library. See "Building Plugins for Android" section of the Manual.
UnityEditor.HostView:OnGUI()
I want to avoid learning how to create plugins for the most part so I can focus on this game itself, but if it's necessary, I'll do it.
The lines in the AndroidManifest file I feel are peritnent are these. I can't post the whole thing because of the character limit in the forums:
<application
android:icon="@drawable/app_icon"
android:label="@string/app_name" >
<activity android:name="com.unity3d.player.UnityPlayerActivity" android:launchMode="singleTask" android:label="@string/app_name" android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen" android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
Thanks in advance for all of your help!