Vectras-VM-Android/app/build.gradle
2024-11-06 02:01:50 +02:00

118 lines
No EOL
4 KiB
Groovy

plugins {
id 'com.android.application'
}
android {
namespace 'com.vectras.vm'
compileSdk compileApi
buildToolsVersion toolsVersion
defaultConfig {
applicationId "com.vectras.vm"
minSdk minApi
targetSdk targetApi
versionCode 20
versionName "v2.9.4"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}
signingConfigs {
debug {
storeFile file('../vectras.jks')
keyAlias 'vectras'
storePassword '856856'
keyPassword '856856'
}
release {
storeFile file('../vectras.jks')
keyAlias 'vectras'
storePassword '856856'
keyPassword '856856'
}
}
buildTypes {
release {
signingConfig signingConfigs.release
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
debug {
signingConfig signingConfigs.debug
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
buildFeatures {
viewBinding true
buildConfig true
aidl true
}
splits {
abi {
enable false
}
}
lintOptions {
checkReleaseBuilds false
abortOnError false
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.12.0'
implementation "androidx.annotation:annotation:1.7.1"
implementation "androidx.core:core:1.13.1"
implementation "androidx.drawerlayout:drawerlayout:1.2.0"
implementation "androidx.preference:preference:1.2.1"
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
implementation "androidx.viewpager:viewpager:1.0.0"
implementation platform('com.google.firebase:firebase-bom:33.0.0')
implementation 'com.google.firebase:firebase-analytics'
implementation("com.google.firebase:firebase-auth")
implementation("com.google.firebase:firebase-database")
implementation 'com.google.firebase:firebase-storage'
implementation("com.google.android.gms:play-services-auth:21.1.1")
implementation("com.google.firebase:firebase-crashlytics")
implementation 'com.google.android.gms:play-services-ads:23.1.0'
implementation 'com.github.bumptech.glide:glide:4.16.0'
implementation 'com.google.guava:guava:33.1.0-jre'
implementation 'com.google.code.gson:gson:2.11.0'
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
implementation "androidx.window:window:1.0.0-alpha09"
implementation "commons-io:commons-io:2.5"
implementation 'org.zeroturnaround:zt-zip:1.16'
implementation 'com.airbnb.android:lottie:6.3.0'
implementation 'org.apache.commons:commons-compress:1.25.0'
implementation 'com.google.firebase:firebase-crashlytics-buildtools:2.9.9'
implementation 'androidx.activity:activity:1.9.2'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.0.20"
implementation 'androidx.preference:preference:1.2.1'
compileOnly project(':shell-loader:stub')
implementation project(":terminal-view")
// Retrofit
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
// Glide
implementation 'com.github.bumptech.glide:glide:4.15.1'
annotationProcessor 'com.github.bumptech.glide:compiler:4.15.1'
// Test dependencies
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
}