mirror of
https://github.com/aljazceru/notedeck.git
synced 2025-12-18 09:04:21 +01:00
29 lines
531 B
Groovy
29 lines
531 B
Groovy
plugins {
|
|
id "com.android.application"
|
|
}
|
|
|
|
android {
|
|
namespace "com.damus.notedeck"
|
|
compileSdk 31
|
|
|
|
defaultConfig {
|
|
minSdk 19
|
|
targetSdk 34
|
|
versionCode 1
|
|
versionName "1"
|
|
}
|
|
|
|
buildTypes {
|
|
debug
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation "com.google.android.material:material:1.5.0"
|
|
implementation "androidx.games:games-activity:4.0.0"
|
|
}
|