skip to Main Content

When I am using my Galaxy Note 5 the android SDK comes a problem you should change your SDK version, Now the question is Which SDK version is best for all android phone in android studio for flutter apps?

2

Answers


  1. you can change the sdk version to 20 or 21 and it should work as it worked for me

    Login or Signup to reply.
  2. Your Samsung Galaxy Note 5 probably have Android 7.0 Nougat, whose SDK version is 24.

    Here are my SDK & Gradle configurations. (It complies with the latest Google Play Store policies).

    build.gradle:

    minSdkVersion 24
    targetSdk 35
    compileSdk 35
    

    settings.gradle:

    id "com.android.application" version "8.5.0" apply false
    id 'com.google.gms.google-services' version '4.4.1' apply false
    id "org.jetbrains.kotlin.android" version "1.9.23" apply false
    

    gradle-wrapper.properties:

    distributionUrl=https://services.gradle.org/distributions/gradle-8.7-all.zip
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search