91 lines
2.9 KiB
Groovy
91 lines
2.9 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
id 'com.google.gms.google-services'
|
|
}
|
|
|
|
|
|
android {
|
|
namespace 'ir.ham3da.darya'
|
|
|
|
signingConfigs {
|
|
darya_sign_confing {
|
|
storeFile file('D:/Android/Android_B4a/keystore_android_studio/android_studio_darya.jks')
|
|
keyAlias 'darya'
|
|
}
|
|
}
|
|
|
|
setCompileSdkVersion(35)
|
|
setBuildToolsVersion('35.0.0')
|
|
defaultConfig {
|
|
applicationId "ir.ham3da.darya"
|
|
minSdkVersion 23
|
|
setTargetSdkVersion(35)
|
|
versionCode 56
|
|
versionName "3.2.2"
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildTypes {
|
|
|
|
debug {
|
|
// minifyEnabled true
|
|
}
|
|
release {
|
|
minifyEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_11
|
|
targetCompatibility JavaVersion.VERSION_11
|
|
}
|
|
buildFeatures {
|
|
viewBinding true
|
|
compose true
|
|
buildConfig true
|
|
}
|
|
|
|
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
implementation "androidx.appcompat:appcompat:1.7.1"
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
implementation 'com.google.android.material:material:1.12.0'
|
|
implementation 'androidx.recyclerview:recyclerview:1.4.0'
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.2.1'
|
|
implementation 'androidx.annotation:annotation:1.9.1'
|
|
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
|
|
implementation 'androidx.viewpager2:viewpager2:1.1.0'
|
|
|
|
|
|
implementation platform('com.google.firebase:firebase-bom:34.1.0')
|
|
implementation 'com.google.firebase:firebase-messaging'
|
|
implementation 'com.google.firebase:firebase-analytics'
|
|
|
|
// implementation 'com.mindorks.android:prdownloader:0.6.0'
|
|
implementation 'com.github.amitshekhariitbhu:PRDownloader:1.0.2'
|
|
|
|
|
|
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.9.2'
|
|
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.2'
|
|
|
|
implementation 'com.github.bumptech.glide:glide:4.16.0'
|
|
implementation "androidx.exifinterface:exifinterface:1.4.1"
|
|
annotationProcessor 'com.github.bumptech.glide:compiler:4.16.0'
|
|
|
|
//implementation group: 'commons-io', name: 'commons-io', version: '20030203.000550'
|
|
testImplementation 'junit:junit:4.13.2'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.3.0'
|
|
androidTestImplementation 'androidx.test:runner:1.7.0'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.7.0'
|
|
implementation 'com.github.koji-1009:ChronoDialogPreference:2.1.0'
|
|
|
|
|
|
implementation 'com.android.volley:volley:1.2.1'
|
|
implementation 'androidx.preference:preference:1.2.1'
|
|
implementation(platform('org.jetbrains.kotlin:kotlin-bom:1.9.0'))
|
|
|
|
} |