75 lines
2.0 KiB
Groovy
75 lines
2.0 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
}
|
|
|
|
android {
|
|
namespace 'com.ssb.simplitend'
|
|
compileSdk 33
|
|
|
|
defaultConfig {
|
|
applicationId "com.ssb.simplitend"
|
|
minSdk 23
|
|
targetSdk 33
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
buildFeatures{
|
|
viewBinding true
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
// Navigation component
|
|
def nav_version = "2.5.3"
|
|
|
|
// Java language implementation
|
|
implementation "androidx.navigation:navigation-fragment:$nav_version"
|
|
implementation "androidx.navigation:navigation-ui:$nav_version"
|
|
|
|
// circle indicator for viewpager
|
|
implementation 'me.relex:circleindicator:2.1.6'
|
|
|
|
// Glide
|
|
implementation 'com.github.bumptech.glide:glide:4.15.1'
|
|
|
|
// lottie
|
|
def lottieVersion = "3.4.0"
|
|
implementation "com.airbnb.android:lottie:$lottieVersion"
|
|
|
|
// dynamic text size
|
|
implementation 'com.intuit.ssp:ssp-android:1.1.0'
|
|
|
|
// dynamic layout size
|
|
implementation 'com.intuit.sdp:sdp-android:1.1.0'
|
|
|
|
// spinners
|
|
implementation "com.github.skydoves:powerspinner:1.2.7"
|
|
|
|
// cicle image view
|
|
implementation 'de.hdodenhof:circleimageview:3.1.0'
|
|
|
|
implementation 'com.github.stfalcon-studio:Chatkit:0.4.1'
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.6.0'
|
|
implementation 'com.google.android.material:material:1.8.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
|
testImplementation 'junit:junit:4.13.2'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
|
|
} |