1
0
Fork 0
VendroidEnhanced/app/build.gradle

45 lines
1 KiB
Groovy

plugins {
id 'com.android.application'
id 'org.jetbrains.kotlin.android'
}
android {
namespace 'com.nin0dev.vendroid'
compileSdk 34
defaultConfig {
applicationId "com.nin0dev.vendroid"
minSdk 21
targetSdk 34
versionCode 5
versionName "1.2"
}
buildTypes {
debug {
applicationIdSuffix ".debug"
}
release {
minifyEnabled false
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
}
dependencies {
implementation 'androidx.annotation:annotation:1.8.0'
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.28'
implementation 'com.google.android.material:material:1.11.0'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.activity:activity:1.9.0'
implementation 'com.android.volley:volley:1.2.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
}