Jump to content

Build3999

Members
  • Content Count

    3
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Build3999

  1. To disable Android +15 default edge-to-edge behavior, you can add the android:windowOptOutEdgeToEdgeEnforcement="true" attribute to your app's theme. This will prevent your app's content from extending into the system bars (status bar and navigation bar). https://developer.android.com/develop/ui/views/layout/edge-to-edge Example: Add the following to your project's styles-??.xml file: <style name="AppTheme" parent="@android:style/Theme.Material.Light.NoActionBar"> .... <item name="android:windowOptOutEdgeToEdgeEnforcement">true</item> </style> As Google mentions, this solution is temporary. Delphi Athens 12.3 already provides this solution in its styles-v35.xml file.
  2. Build3999

    Android SDK versions for Android-32 bit

    @duzzell getCredentialAsync is part of Android Credential API, which is used to retrieve the user's available credentials and this error occurs if: There are missing *.jar/class component dependencies. Google Play Services are not present on the target device or are too old. The CredentialProvider or com.google.android.gms.version configuration is missing from the AndroidManifest.xml It is recommended to compile with API SDK >= 33, although it is compatible with previous targets. Regarding the SDK: By default, all paths in SDK Manager are the same for both Android 32-bit and Android 64-bit configurations. In the "API SDK Location" field, you will find the path to the Android API SDK (Android-32, Android-33, Android-34, etc.).
  3. Greetings to All!. I've built (TSignInWithGoogle) a basic component to integrate Google Sign-in into your Android app using Credential Manager, adhering to Google's most recent guidelines. I'll leave it here for anyone who might find it useful!. Here the link: https://github.com/MEStackCodes/SignInWithGoogleDelphi
×