1
0
Fork 0
VendroidEnhanced/app/build.gradle

46 lines
1.1 KiB
Groovy
Raw Normal View History

2022-11-25 04:46:14 -05:00
plugins {
id 'com.android.application'
2024-03-24 07:30:23 -04:00
id 'org.jetbrains.kotlin.android'
2022-11-25 04:46:14 -05:00
}
android {
2024-03-24 07:30:23 -04:00
namespace 'com.nin0dev.vendroid'
2024-03-20 07:35:28 -04:00
compileSdk 34
2022-11-25 04:46:14 -05:00
defaultConfig {
2024-03-24 07:30:23 -04:00
applicationId "com.nin0dev.vendroid"
minSdk 24
2024-03-20 07:35:28 -04:00
targetSdk 34
2022-12-11 02:39:43 -05:00
versionCode 3
2022-11-25 04:46:14 -05:00
versionName "1.0"
}
buildTypes {
debug {
applicationIdSuffix ".dbg"
}
2022-11-25 04:46:14 -05:00
release {
minifyEnabled false
}
}
compileOptions {
2024-03-24 07:30:23 -04:00
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = '17'
2022-11-25 04:46:14 -05:00
}
}
dependencies {
2024-03-20 07:35:28 -04:00
implementation 'androidx.annotation:annotation:1.7.1'
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.28'
2024-03-24 07:30:23 -04:00
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.10.0'
implementation 'androidx.activity:activity:1.8.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.core:core-ktx:+'
2022-11-25 04:46:14 -05:00
}