Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Replacing the $safeprojectname$ with the projectname not working

When we uninstall this Xamarin.Form app from android device we are getting following error message , it is not replacing the $safeprojectname$ with the projectname. Can somebody suggest how to resolve this issue.

enter image description here

like image 250
sameer Avatar asked Jun 19 '16 08:06

sameer


1 Answers

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

Ex:

<?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>
like image 98
Sapan Ghafuri Avatar answered Jan 03 '23 16:01

Sapan Ghafuri