mirror of
https://github.com/xoureldeen/Vectras-VM-Android.git
synced 2026-04-28 06:19:49 +00:00
126 lines
No EOL
4.3 KiB
Groovy
126 lines
No EOL
4.3 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
id 'com.google.gms.google-services'
|
|
id 'com.google.firebase.crashlytics'
|
|
}
|
|
|
|
android {
|
|
namespace 'com.vectras.vm'
|
|
compileSdk = 36
|
|
|
|
defaultConfig {
|
|
applicationId "com.vectras.vm"
|
|
minSdk minApi
|
|
targetSdk targetApi
|
|
versionCode 89
|
|
versionName "3.8.5"
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
multiDexEnabled true
|
|
|
|
resValue "string", "app_version", versionName
|
|
resValue "integer", "app_version_code", versionCode.toString()
|
|
}
|
|
|
|
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
|
|
resValues = true
|
|
}
|
|
|
|
splits {
|
|
abi {
|
|
enable false
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_21
|
|
targetCompatibility JavaVersion.VERSION_21
|
|
}
|
|
|
|
buildToolsVersion '36.1.0'
|
|
ndkVersion '21'
|
|
|
|
lint {
|
|
abortOnError false
|
|
checkReleaseBuilds false
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation 'androidx.appcompat:appcompat:1.7.1'
|
|
implementation 'com.google.android.material:material:1.14.0-alpha09'
|
|
implementation "androidx.annotation:annotation:1.9.1"
|
|
implementation "androidx.core:core-ktx:1.17.0"
|
|
implementation "androidx.drawerlayout:drawerlayout:1.2.0"
|
|
implementation "androidx.preference:preference-ktx:1.2.1"
|
|
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.2.0"
|
|
implementation "androidx.viewpager:viewpager:1.1.0"
|
|
implementation platform('com.google.firebase:firebase-bom:34.10.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.4.0")
|
|
implementation("com.google.firebase:firebase-crashlytics")
|
|
// implementation 'com.google.android.gms:play-services-ads:24.6.0'
|
|
implementation 'com.google.firebase:firebase-messaging:25.0.1'
|
|
implementation 'com.google.guava:guava:33.5.0-jre'
|
|
implementation 'com.google.code.gson:gson:2.13.2'
|
|
implementation 'com.squareup.okhttp3:okhttp:5.3.2'
|
|
implementation "androidx.window:window:1.5.1"
|
|
implementation "commons-io:commons-io:2.21.0"
|
|
implementation 'com.airbnb.android:lottie:6.7.1'
|
|
implementation 'org.apache.commons:commons-compress:1.28.0'
|
|
// implementation 'com.google.firebase:firebase-crashlytics-buildtools:3.0.6'
|
|
implementation 'androidx.activity:activity-ktx:1.12.4'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.2.1'
|
|
implementation 'androidx.preference:preference-ktx:1.2.1'
|
|
implementation "androidx.documentfile:documentfile:1.1.0"
|
|
implementation 'androidx.core:core-ktx:1.17.0'
|
|
compileOnly project(':shell-loader:stub')
|
|
implementation project(":terminal-view")
|
|
|
|
// Retrofit
|
|
implementation 'com.squareup.retrofit2:retrofit:3.0.0'
|
|
implementation 'com.squareup.retrofit2:converter-gson:3.0.0'
|
|
|
|
// Glide
|
|
implementation 'com.github.bumptech.glide:glide:5.0.5'
|
|
annotationProcessor 'com.github.bumptech.glide:compiler:5.0.5'
|
|
|
|
// Test dependencies
|
|
testImplementation 'junit:junit:4.13.2'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.3.0'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.7.0'
|
|
} |