Samsung Galaxy Store suspending apps because of “Blocked by Play Protect” popup

I have multiple apps published in Samsung Galaxy Store and all those apps were also published in Google Play Store. All my apps in Samsung Galaxy store and Google Play Store were using different APKs since I was using Galaxy Store specific features in APKs published in Samsung Galaxy Store. Recently the issue started with app reviews when app review team started suspending my apps from the Galaxy Store because those apps were giving “Blocked by Play Protect” popup when installing from Galaxy Store. Some APKs were using same key for signing and some were using different keys so keeping the same signing key on both stores did not help. After looking for a couple days and trying different things, I finally found the solution which was also suggsted by the Galaxy Store app review team as well as some other developers to go and file an appeal using “Play[…]

Generate free Let’s Encrypt SSL certificate online

Let’s Encrypt is a free, automated, and open certificate authority brought to the people by the nonprofit Internet Security Research Group (ISRG) which provides people the digital certificates they need in order to enable HTTPS (SSL/TLS) for websites, for free, which otherwise requires considerable investment if it was to be bought from the paid SSL providers. The only downside being the need of renewing the certificate every 90 days. Though majority of hosting providers now offer it as part of their hosting services, some hosting providers like GoDaddy still have not provided any in-built support in their hosting solution instead offering its own paid SSL certificates. If we are using shared hosting, then we can manually install Let’s Encrypt certificates on GoDaddy websites. Let’s Encrypt provides client tools which can be installed on the web servers to automate installation and renewal of SSL certificates but in case of shared hosting,[…]

Admob Data safety Question

Developers are now required to answer a question by Dec 7, 2023 which was earlier marked optional but would now be required an answer after the due date. As we know Admob collects data about users for displaying personalized ads to the users. The ads are displayed using the Google Mobile Ads Sdk and the Sdk does not provide a way for users to request deletion of data as confirmed by the Mobile Ads Sdk team in the following discussion https://groups.google.com/g/google-admob-ads-sdk/c/mgOAGuIX2aY

ASP.NET Site Move HTTP to HTTPS, Refresh Google Indexing

When a site is moved from HTTP to HTTPS which is already indexed by Google, we must add a new property for the HTTPS URL in Goolge search console. When Google tries to index the site and it finds HTTP URL indexed for the same page, it will mark the HTTPS pages as canonical. We should use “301 Moved Permanently” to tell Google that HTTP URLs are moved to HTTPS and Google should prefer HTTPS over HTTP. Here is a sample code to be used in an ASP.NET web application for 301 moved status

Redirect HTTP URLs to HTTPS in Windows Hosting

After configuring SSL for a website, we need to make sure all existing HTTP URLs are automatically redirected to the HTTPS. For this we need to add a redirect rule in our web.config file. Open your web.config file and add following code snippet under system.webServer tag (copy it before the closing system.webServer tag) Save web.config file and upload it to the server tp replace existing one.

Install Free SSL from Let’s Encrypt to Godaddy Shared Windows Hosting – Plesk

Many web hosting providers support and automatically enable Let’s Encrypt and redirect http to https by default. GoDaddy does not yet support it but we can manually install and configure our sites on GoDaddy shared hosting to support SSL. This is done in two steps. In the first step, we need to generate certificates from a certificate authority (CA) and then in the second step, we need to download generated certificates and upload it to the GoDaddy servers and configure it there. Support for third-party SSLs on GoDaddy While generating SSL certificates for our domain, we will also need to verify domain ownership to CA. In order to verify domain ownership using HTTP verification, we will need to create appropriate files with specific text strings under “httpdocs/.well-known/pki-validation/” directory on our web server. We also need to make sure that those appropriate files are accessible in the directory. We will first[…]

SadTalker ERROR: No matching distribution found for torch==1.12.1+cu113

If you have Python 3.11 installed on your system, you will get this error when running the webui.bat file for setting up the SadTalker since it does not yet support Python 3.11. The solution is to install previous version of Python (in my case I did Python 3.8 as specified in the dependecies section of cog.yaml which downloaded with the SadTalker code). We will use conda to create a virtual environment just for SadTalker and then use it from there. The first step is to make sure we have Anaconda installed on our system. If not then download and install it from here. Make sure to follow the steps here for downloading the SadTalker files. Launch Anaconda Powershell and run following command to create a new environment for older version of python. Now activate the environment Make sure to validate that it is using desired version of python by checking[…]