0 votes
105 views
in android by (0 points)
closed by
How would you specify in your build.gradle file that your app required at least API level 21 to run, but that it can be tested on API level 28?
 A
      defaultConfig {
        ...
        minApiVersion 21
        targetApiVersion 28
      }
 B
      defaultConfig {
        ...
        targetSdkVersion 21
        testSdkVersion 28
      }
 C
      defaultConfig {
        ...
        minSdkVersion 21
        testApiVersion 28
      }
 D
      defaultConfig {
        ...
      minSdkVersion 21
        targetSdkVersion 28
      }
closed

1 Answer

0 votes
by (0 points)
 
Best answer
d

2.8k questions

2.8k answers

0 comments

76 users

Welcome to MCQ Village Q&A, where you can ask questions and receive answers from other members of the community.
...