1
0
Fork 0
VendroidEnhanced/app/build.gradle

44 lines
1 KiB
Groovy
Raw Normal View History

2022-11-25 04:46:14 -05:00
plugins {
id 'com.android.application'
id 'org.jetbrains.kotlin.android'
2022-11-25 04:46:14 -05:00
}
android {
2024-03-24 16:29:55 -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 16:29:55 -04:00
applicationId "com.nin0dev.vendroid"
minSdk 21
2024-03-20 07:35:28 -04:00
targetSdk 34
2024-06-25 17:51:09 -04:00
versionCode 5
versionName "1.2"
2022-11-25 04:46:14 -05:00
}
buildTypes {
debug {
2024-05-02 07:50:51 -04:00
applicationIdSuffix ".debug"
}
2022-11-25 04:46:14 -05:00
release {
minifyEnabled false
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
2022-11-25 04:46:14 -05:00
}
}
dependencies {
implementation 'androidx.annotation:annotation:1.8.1'
2024-03-20 07:35:28 -04:00
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.28'
implementation 'com.google.android.material:material:1.12.0'
2024-04-27 14:02:15 -04:00
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.activity:activity:1.9.1'
2024-04-27 16:35:45 -04:00
implementation 'com.android.volley:volley:1.2.1'
2024-04-27 14:02:15 -04:00
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
2022-11-25 04:46:14 -05:00
}