Files
proxidize-android/app/build.gradle
2023-02-26 21:21:04 +03:00

97 lines
3.2 KiB
Groovy

plugins {
id 'com.android.application'
id 'org.jetbrains.kotlin.android'
id 'com.google.gms.google-services'
id 'kotlin-kapt'
id 'dagger.hilt.android.plugin'
}
android {
compileSdk 33
defaultConfig {
applicationId "com.proxidize.legacy.android"
minSdk 23
targetSdk 33
versionCode 13
versionName "2.1.5"
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
}
kotlinOptions {
jvmTarget = '1.8'
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation files('libs/connlib.aar')
implementation 'androidx.core:core-ktx:1.8.0'
implementation 'androidx.appcompat:appcompat:1.5.0'
implementation 'com.google.android.material:material:1.6.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.navigation:navigation-fragment-ktx:2.5.1'
implementation 'androidx.navigation:navigation-ui-ktx:2.5.1'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
implementation 'com.google.firebase:firebase-analytics:21.1.0'
//data store for liecence
implementation "androidx.datastore:datastore-preferences:1.0.0"
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1'
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.6.0-alpha01"
implementation "androidx.fragment:fragment-ktx:1.5.2"
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.6.0-alpha01"
implementation 'com.google.android.material:material:1.6.1'
// implementation of NANO_HTTPD server
implementation "org.nanohttpd:nanohttpd:2.3.1"
//WORK MANAGER
// implementation "android.arch.work:work-runtime:1.0.1"
implementation 'androidx.work:work-runtime:2.7.1'
implementation "androidx.concurrent:concurrent-futures:1.1.0"
implementation 'androidx.work:work-runtime-ktx:2.7.1'
implementation 'androidx.hilt:hilt-work:1.0.0'
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.6.0-alpha01"
//
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1'
kapt "androidx.hilt:hilt-compiler:1.0.0"
//hilt
implementation 'com.google.dagger:hilt-android:2.41'
kapt 'com.google.dagger:hilt-android-compiler:2.41'
kapt "androidx.hilt:hilt-compiler:1.0.0"
//http request
implementation "com.squareup.okhttp3:okhttp:5.0.0-alpha.2"
implementation "com.squareup.okhttp3:logging-interceptor:5.0.0-alpha.2"
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation('com.squareup.retrofit2:converter-gson:2.9.0')
implementation "androidx.activity:activity-ktx:1.6.0-beta01"
implementation("com.github.haroldadmin:NetworkResponseAdapter:4.1.0")
}