MXCzkEVM / moonchain-wallet

Moonchain wallet official repo, Your trusted self custodial wallet.
Other
1 stars 1 forks source link

Update SDK Version to Include Privacy Manifest Compliance #102

Open reasje opened 1 week ago

reasje commented 1 week ago

Image

cc: @sheenhx

reasje commented 1 week ago

Dev log: The SDK mentioned in the report is the FaceBook SDK, It's used in appinio_social packge for sharing to Facebook stories, Posts etc ... According to here It is fixed in this version.

To update the dependencies I tried : cd ios rm Podfile.lock rm -rf Pods pod install --repo-update

reasje commented 1 week ago

Dev log: After the update I was not able to run it on IOS because recently I have updated my Mac and to the 18.1 version of IOS and therefore xcode trying to run the app runs into long list of errors and warnings. Looks like with current Flutter version we are not able to support ios 18 .

reasje commented 1 week ago

Dev log : I was able to update pods cache on github action with these steps:

      - name: Check flutter found
        id: check_flutter
        shell: bash
        run: |
          if flutter --version; then
              echo "installed=true" >> "$GITHUB_OUTPUT"
          else
              echo "installed=false" >> "$GITHUB_OUTPUT"
          fi

      - name: Setup flutter
        if: steps.check_flutter.outputs.installed == 'false'
        uses: subosito/flutter-action@v2
        with:
          channel: "stable"
          flutter-version: '3.7.12'
          cache: true

      # Step to clear CocoaPods cache and reinstall pods
      - name: Reinstall CocoaPods
        run: |
          flutter pub get
          cd ios          
          echo "Current Directory:"
          pwd
          echo "Contents of Current Directory:"
          ls -la
          pod install --repo-update