Skip to main content

Adapters removal

Unity: All versions | Appodeal SDK: 3.0.0 | Distribution: Manual | OS: Windows


If you are using Windows OS with the manual plugin distribution of Appodeal Unity plugin 3.0.0, and the networks adapters cannot be removed through Appodeal SDK Manager, follow the steps:

  1. Go to Appodeal → Editor → NetworksManager and find AppodealDependencyUtils.cs file.

  2. Replace the line:

    contentString = Regex.Replace(contentString, searchText, replaceText);

    with:

    contentString = Regex.Replace(contentString.Replace(“\r”, “”), searchText, replaceText);