- Home /
How to remove Unity Ads Plugin?
Hello! I followed a tutorial on Unity website on how to put ads in your game. In that tutorial I imported Unity Ads from the Asset Store. But that resulted in the following error: Assets/Scripts/AdsController.cs(8,21): error CS0433: The imported type `UnityEngine.Advertisements.Advertisement' is defined multiple times
I found out that Unity 5.2 and above have Ads already implemented in the engine, so now I have to remove this Unity Ads plugin to get rid of this error, but I don't know how to do it.
So, my question is how do I remove Unity Ads Plugin?
Thank you!
Answer by HomelessShrimps · Feb 12, 2016 at 01:51 PM
I found out solutions that might work for some people:
NOTE: Make backups of your project before trying these solutions
There is a Package Uninstaller in the Asset Store (didn't work for me). https://www.assetstore.unity3d.com/en/#!/content/35439
Reimport Unity Ads to a test project and note down which folders and files get imported (you get a hierarchy list when you import) and delete them in your project (This seemed to have worked for some people, but it messed up my project).
What else I learned: Reinstalling Unity doesn't fix the problem.
What worked for me: I took my latest backup of my project and worked on from there. This time didn't make the mistake of importing Unity Ads, because it's built in the engine now. (I'm using Unity 5.2.3)
Answer by highpockets · Jun 19, 2019 at 08:11 AM
I tried uninstalling the UnityAds package in unity and although it wasn't present in the editor, when I built to Xcode there were errors related to UnityAds, so I finally had to manually remove every UnityAds folder and any references to UnityAds inside the Xcode project folder and now everything works like a charm
Your answer
Follow this Question
Related Questions
how to rotate and transform an Game object using same button in unity ? 0 Answers
The spaceship acceleration script is good ? And how to use it with engine ? 0 Answers
Correctly move rigidbody at constant speed 1 Answer
How to change material's alpha of a GameObject ? 1 Answer
how to allow the key to only open 1 door rather than all of them? 0 Answers