2022-11-25 04:46:14 -05:00
|
|
|
plugins {
|
|
|
|
id 'com.android.application'
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2024-03-20 07:25:58 -04:00
|
|
|
namespace 'dev.vencord.vendroid'
|
2024-03-20 07:35:28 -04:00
|
|
|
compileSdk 34
|
2022-11-25 04:46:14 -05:00
|
|
|
|
|
|
|
defaultConfig {
|
2024-03-20 07:25:58 -04:00
|
|
|
applicationId "dev.vencord.vendroid"
|
2022-11-25 04:46:14 -05:00
|
|
|
minSdk 21
|
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 {
|
2022-12-18 16:00:56 -05:00
|
|
|
debug {
|
|
|
|
applicationIdSuffix ".dbg"
|
|
|
|
}
|
|
|
|
|
2022-11-25 04:46:14 -05:00
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_11
|
|
|
|
targetCompatibility JavaVersion.VERSION_11
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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'
|
2022-11-25 04:46:14 -05:00
|
|
|
}
|
|
|
|
|