Arquivos de Categoria: How to
Register your URL scheme URL scheme registration specifies which URLs to redirect to your app. Register your scheme in Xcode from the Info tab of your project settings. Update the URL Types section to declare all of the URL schemes your app supports, as shown in the following illustration. The identifier you supply with your […]
For the Projects Created After Flutter 2.8 Update To change Android minSdkVersion in Flutter for the project created after the 2.8 update, you have to make changes in the local.properties file and then reference the new variable from the local.properties file inside the build.gradle file. Here are the steps: Source: https://www.flutterbeads.com/change-android-minsdkversion-in-flutter/
If your database server has remote access blocked to avoid external attacks, like mine, you can access the database using desktop clients. You need to use phpMyAdmin on the server to manage it. But there’s a workaround to connect to a remote database: using ssh tunnel! Steps to connect to the database using ssh: 1 […]