Created
March 2, 2022 01:02
-
-
Save heitorpaceli/34d3f8d93110b1a780ba5831cb9e44c8 to your computer and use it in GitHub Desktop.
tiramisuBuildGradle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
plugins { | |
id 'com.android.application' | |
id 'kotlin-android' | |
} | |
android { | |
compileSdkPreview "android-Tiramisu" | |
defaultConfig { | |
applicationId "com.paceli.sampleperapplanguage" | |
minSdkPreview "Tiramisu" | |
targetSdkPreview "Tiramisu" | |
versionCode 1 | |
versionName "1.0" | |
} | |
compileOptions { | |
sourceCompatibility JavaVersion.VERSION_1_8 | |
targetCompatibility JavaVersion.VERSION_1_8 | |
} | |
kotlinOptions { | |
jvmTarget = '1.8' | |
} | |
} | |
dependencies { | |
implementation 'androidx.core:core-ktx:1.7.0' | |
implementation 'androidx.appcompat:appcompat:1.4.1' | |
implementation 'com.google.android.material:material:1.5.0' | |
implementation 'androidx.constraintlayout:constraintlayout:2.1.3' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment