1apply plugin: 'com.android.application'
2
3android {
4    compileSdkVersion = 'android-T'
5    defaultConfig {
6        applicationId "com.android.bluetooth.leaudio"
7        minSdkVersion "T"
8        targetSdkVersion "T"
9        versionCode 1
10        versionName "1.0"
11        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
12    }
13    buildTypes {
14        release {
15            minifyEnabled false
16            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
17        }
18    }
19    compileOptions {
20        sourceCompatibility = '1.8'
21        targetCompatibility = '1.8'
22    }
23    buildToolsVersion = '29.0.3'
24}
25
26dependencies {
27    implementation fileTree(dir: 'libs', include: ['*.jar'])
28    implementation 'androidx.appcompat:appcompat:1.2.0'
29    implementation 'androidx.constraintlayout:constraintlayout:2.0.2'
30    implementation 'com.google.android.material:material:1.2.1'
31    implementation 'androidx.legacy:legacy-support-v4:1.0.0'
32    implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
33    testImplementation 'junit:junit:4.12'
34    androidTestImplementation 'androidx.test:runner:1.3.0'
35    androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
36}
37