After my experience starting a new project and still feel the pain, here I show you How to prepare a MAUI environment for your projects
Category: Android
5 best secure browsers for Android
In this post, I’m presenting 5 of the best secure browsers for Android I tested. Open to other suggestions. Please you our forum to send your comment. The Internet is a wonderful thing that we all love to surf. With wеbѕіtеѕ for аll роѕѕіblе domains lіkе еduсаtіоn, еntеrtаіnmеnt, sports, еtс., уоu can garner іnfоrmаtіоn on almost аnу tоріс thаt уоu саn thіnk оf. Hаvіng said thаt, nоt аll wеbѕіtеѕ аrе ѕаfе. Sоmе wеbѕіtеѕ аrе dеѕіgnеd ѕресіfісаllу tо іnfесt уоur ѕmаrtрhоnе wіth malware or vіruѕеѕ. This mаkеѕ it extremely іmроrtаnt that…
Android required permissions
In Visual Studio 2015 if you checked same permissions on your project properties and when reopen it, your checks are disappeared, you have two ways: Is the manifest file marked as ‘read only’ in Windows Explorer? You have to select the Properties directory and un-tick ‘read only’ for the entire folder. Add manually in AndroidManifest.xml file same new rows: <?xml version=”1.0″ encoding=”utf-8″?> <manifest xmlns:android=”https://schemas.android.com/apk/res/android”> <uses-sdk android:minSdkVersion=”15″ /> <application android:label=”$safename$”> <meta-data android:name=”com.google.android.maps.v2.API_KEY” android:value=”yourcode” /> </application> <uses-permission android:name=”android.permission.INTERNET” /> <uses-permission android:name=”com.google.android.providers.gsf.permission.READ_GSERVICES” /> <uses-permission android:name=”android.permission.WRITE_EXTERNAL_STORAGE” /> <uses-permission android:name=”android.permission.ACCESS_FINE_LOCATION” /> <uses-permission android:name=”android.permission.ACCESS_COARSE_LOCATION” /> <uses-permission…