Posts

Showing posts from August, 2024

Unable to connect wifi debugging some times? for android phones

 Wireless debugging on Android can sometimes be inconsistent due to various factors. Here are a few common reasons why you're experiencing connection issues: C:\Users\amauj\AppData\Local\Android\Sdk\platform-tools\ .\adb kill-server  .\adb start-server .\adb connect 192.168.0.102:40123

WARNING: CocoaPods requires your terminal to be using UTF-8 encoding. FOR MACBOOK m series, m1,m2,m3

 WARNING: CocoaPods requires your terminal to be using UTF-8 encoding. Consider adding the following to ~/.profile: export LANG=en_US.UTF-8 here is the solution  1. **Edit Locale Configuration**:    Open the locale configuration file:    ```sh    sudo nano /etc/locale.conf    ```    Add the following lines to set the locale:    ```sh    LANG=en_US.UTF-8    LC_COLLATE=en_US.UTF-8    LC_CTYPE=en_US.UTF-8    LC_MESSAGES=en_US.UTF-8    LC_MONETARY=en_US.UTF-8    LC_NUMERIC=en_US.UTF-8    LC_TIME=en_US.UTF-8    LC_ALL=en_US.UTF-8    ```    Save and exit the file (Ctrl + O, Enter, Ctrl + X). 2. **Generate Locale**:    Ensure the `en_US.UTF-8` locale is generated:    ```sh    sudo locale-gen en_US.UTF-8    sudo dpkg-reconfigure locales    ``` 3. **Add Locale to...