1plugins { 2 id 'com.android.application' 3} 4 5android { 6 compileSdkPreview "android-Tiramisu" 7 8 defaultConfig { 9 applicationId "com.google.android.sample.testsliceapp" 10 minSdkPreview "Tiramisu" 11 targetSdkPreview "Tiramisu" 12 versionCode 1 13 versionName "1.0" 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 compileOptions { 25 sourceCompatibility JavaVersion.VERSION_1_8 26 targetCompatibility JavaVersion.VERSION_1_8 27 } 28} 29 30dependencies { 31 32 implementation 'androidx.appcompat:appcompat:1.4.1' 33 implementation 'com.google.android.material:material:1.5.0' 34 implementation 'androidx.constraintlayout:constraintlayout:2.1.3' 35 implementation 'androidx.legacy:legacy-support-v4:1.0.0' 36 testImplementation 'junit:junit:4.+' 37 androidTestImplementation 'androidx.test.ext:junit:1.1.3' 38 androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' 39 implementation 'com.squareup.okhttp3:okhttp:3.10.0' 40}