2022-11-25 04:46:14 -05:00
|
|
|
plugins {
|
|
|
|
id 'com.android.application'
|
2024-03-25 19:42:45 -04:00
|
|
|
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"
|
2024-03-24 10:51:15 -04:00
|
|
|
minSdk 21
|
2024-03-20 07:35:28 -04:00
|
|
|
targetSdk 34
|
2024-04-30 07:49:24 -04:00
|
|
|
versionCode 4
|
|
|
|
versionName "1.1"
|
2022-11-25 04:46:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
2022-12-18 16:00:56 -05:00
|
|
|
debug {
|
2024-05-02 07:50:51 -04:00
|
|
|
applicationIdSuffix ".debug"
|
2022-12-18 16:00:56 -05:00
|
|
|
}
|
|
|
|
|
2022-11-25 04:46:14 -05:00
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
compileOptions {
|
2024-03-25 19:42:45 -04:00
|
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
|
|
targetCompatibility JavaVersion.VERSION_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 16:29:55 -04:00
|
|
|
implementation 'com.google.android.material:material:1.11.0'
|
2024-04-27 14:02:15 -04:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
2024-04-27 16:35:45 -04:00
|
|
|
implementation 'androidx.activity:activity:1.9.0'
|
|
|
|
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
|
|
|
}
|
|
|
|
|