42 lines
952 B
Groovy
42 lines
952 B
Groovy
plugins {
|
|
alias(libs.plugins.android.application)
|
|
}
|
|
|
|
android {
|
|
namespace 'com.anabasis.vkchatmanager'
|
|
compileSdk {
|
|
version = release(36)
|
|
}
|
|
|
|
defaultConfig {
|
|
applicationId "com.anabasis.vkchatmanager"
|
|
minSdk 26
|
|
targetSdk 36
|
|
versionCode 4
|
|
versionName "1.1.2"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation libs.recyclerview
|
|
implementation libs.viewpager2
|
|
implementation libs.material
|
|
implementation libs.swiperefreshlayout
|
|
implementation libs.okhttp
|
|
implementation libs.json
|
|
}
|