mirror of
https://github.com/hmalik144/Farmr.git
synced 2026-01-31 02:41:49 +00:00
- migrated to AndroidX - migrated to Kotlin - Content resolver unit test added - Upgraded android version to 31
37 lines
1.3 KiB
Groovy
37 lines
1.3 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'org.jetbrains.kotlin.android'
|
|
|
|
android {
|
|
compileSdkVersion 31
|
|
defaultConfig {
|
|
applicationId "com.appttude.h_mal.farmr"
|
|
minSdkVersion 21
|
|
targetSdkVersion 31
|
|
versionCode 1
|
|
versionName "1.0"
|
|
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
|
|
vectorDrawables.useSupportLibrary = true
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
implementation 'androidx.vectordrawable:vectordrawable:1.0.0'
|
|
implementation 'androidx.core:core-ktx:1.1.0'
|
|
testImplementation 'junit:junit:4.12'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0'
|
|
implementation 'androidx.appcompat:appcompat:1.0.0'
|
|
implementation 'com.google.android.material:material:1.0.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
|
implementation 'com.ajts.androidmads.SQLite2Excel:library:1.0.2'
|
|
testImplementation 'junit:junit:4.12'
|
|
androidTestImplementation 'androidx.test:core-ktx:1.4.0'
|
|
androidTestImplementation 'androidx.test:rules:1.4.0'
|
|
}
|