12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- plugins {
- id 'com.android.application'
- id 'org.jetbrains.kotlin.android'
- }
- android {
- namespace 'com.sharix.sportsmanfriend'
- compileSdk 33
- defaultConfig {
- applicationId "com.sharix.sportsmanfriend"
- 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'
- }
- }
- buildFeatures {
- viewBinding true
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- }
- dependencies {
- implementation 'com.github.rahatarmanahmed:circularprogressview:2.5.0'
- implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
- implementation 'com.google.android.gms:play-services-location:21.0.1'
- implementation 'org.osmdroid:osmdroid-android:6.1.14'
- implementation 'com.github.MKergall:osmbonuspack:6.9.0'
- implementation 'androidx.appcompat:appcompat:1.6.1'
- implementation 'com.google.android.material:material:1.9.0'
- implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
- implementation 'androidx.test.espresso:espresso-core:3.5.1'
- implementation 'androidx.test.ext:junit:1.1.5'
- //Base implementation
- implementation 'androidx.core:core-ktx:1.10.1'
- implementation 'androidx.appcompat:appcompat:1.6.1'
- implementation 'com.google.android.material:material:1.9.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'
- //Splash Screen
- implementation("androidx.core:core-splashscreen:1.0.1")
- // Navigation Component
- implementation 'androidx.navigation:navigation-fragment-ktx:2.6.0'
- implementation 'androidx.navigation:navigation-ui-ktx:2.6.0'
- // Room components
- // Lifecycle components
- implementation "androidx.lifecycle:lifecycle-extensions:2.2.0"
- implementation "androidx.lifecycle:lifecycle-common-java8:2.6.1"
- implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1"
- // Kotlin components
- //implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.21"
- api "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1"
- api "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1"
- //Swipe and refresh
- implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.2.0-alpha01"
- //XMPP libs
- implementation "org.igniterealtime.smack:smack-android:4.4.0"
- // Optional for XMPPTCPConnection
- implementation "org.igniterealtime.smack:smack-tcp:4.4.0"
- // Optional for XMPP-IM (RFC 6121) support (Roster, Threaded Chats, …)
- implementation "org.igniterealtime.smack:smack-im:4.4.0"
- // Optional for XMPP extensions support
- implementation "org.igniterealtime.smack:smack-extensions:4.4.0"
- //circular
- implementation 'com.github.rahatarmanahmed:circularprogressview:2.5.0'
- //Coil for convert url to image
- implementation "io.coil-kt:coil:2.4.0"
- //Preference
- implementation 'androidx.preference:preference:1.2.0'
- implementation 'com.squareup.okhttp3:okhttp:4.11.0'
- }
- configurations {
- all*.exclude group: 'xpp3', module: 'xpp3'
- }
|