What should the Gradle:module:app look like to compile to an Android 2.3.3/Gingerbread? -


here gradle file.

    apply plugin: 'com.android.application'  android {     compilesdkversion 10     buildtoolsversion '24.0.1'     defaultconfig {         applicationid "com.loadrunner"         minsdkversion 10         targetsdkversion 10     }     buildtypes {         release {             minifyenabled false             proguardfiles getdefaultproguardfile('proguard-android.txt'), 'proguard-rules.txt'         }     }     productflavors {     } }  dependencies {     compile 'com.android.support:appcompat-v7:24.1.1' } 

i see alot of errors on compiling dealing library levels , go down code detail rabbit hole. problem in cases seems library levels , correct sdk levels. have tried many hours @ others specific problems , have found nothing solve library problem. there simple can beside turning machine off? app worked @ 1 version till needed add more functionality , catch. items showing no parent references used not show in error.

the gradle error this:

error:(3) error retrieving parent item: no resource found matches given name 'android:widget.material.spinner.underlined'.

flipping version numbers around me seems not answer. simple truth.

i appreciate , thank you.


Comments