Replacing $ safeprojectname $ with a broken project name

When we remove this Xamarin.Form application from the Android device, we get the following error message, it does not replace $ safeprojectname $ with the project name. Can someone suggest how to solve this problem.

enter image description here

+6
source share
1 answer

This value of $ safeprojectname $ is located under the name AppName.Droid => Properties => AndroidManifest.xml. You can change it manually.

Example:

<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" android:installLocation="auto" package="SilCoyGetInstance.SilCoyGetInstance"> <uses-sdk android:minSdkVersion="15" /> <application android:label="TheNameYouWant"></application> </manifest> 
+3
source

All Articles