apply plugin: 'com.android.library' android { compileSdkVersion 29 buildToolsVersion "30.0.1" defaultConfig { minSdkVersion 23 targetSdkVersion 29 versionCode 1 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" consumerProguardFiles "consumer-rules.pro" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } } dependencies { implementation fileTree(dir: "libs", include: ["*.jar"]) // NOTE: Keep RobotCore version in sync with FtcRobotController modules version implementation 'org.firstinspires.ftc:RobotCore:6.0.1' implementation 'androidx.appcompat:appcompat:1.1.0' testImplementation 'junit:junit:4.12' androidTestImplementation 'androidx.test.ext:junit:1.1.1' androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' } repositories { maven { url = "https://dl.bintray.com/first-tech-challenge/ftcsdk/" } flatDir { dirs '../libs' } }