build.gradle (1242B)
1 apply plugin: 'com.android.application' 2 3 android { 4 compileSdkVersion 36 5 6 defaultConfig { 7 applicationId "net.mfashby.plectrum" 8 minSdkVersion 21 9 targetSdkVersion 36 10 versionCode 27 11 versionName "3.6" 12 13 vectorDrawables.useSupportLibrary = true 14 15 testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" 16 } 17 18 buildTypes { 19 release { 20 minifyEnabled false 21 proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' 22 } 23 } 24 25 26 compileOptions { 27 encoding = 'UTF-8' 28 sourceCompatibility JavaVersion.VERSION_1_8 29 targetCompatibility JavaVersion.VERSION_1_8 30 } 31 packagingOptions { 32 jniLibs { 33 excludes += ['META-INF/*'] 34 } 35 resources { 36 excludes += ['META-INF/*'] 37 } 38 } 39 40 namespace 'com.github.cythara' 41 lint { 42 disable 'GoogleAppIndexingWarning', 'IconLocation' 43 } 44 } 45 46 dependencies { 47 // Support libraries 48 implementation 'androidx.appcompat:appcompat:1.1.0' 49 50 // Other 51 implementation 'com.jaredrummler:material-spinner:1.3.1' 52 implementation 'io.github.ShawnLin013:number-picker:2.4.13' 53 }