123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- plugins {
- id 'com.android.application'
- }
- android {
- signingConfigs {
- debug {
- storeFile file('C:\\UTIC-2021\\key-store\\hanteinfo.jks')
- storePassword 'hanteinfo'
- keyAlias 'hanteinfo'
- keyPassword 'hanteinfo'
- }
- }
- compileSdkVersion 30
- buildToolsVersion "30.0.3"
- defaultConfig {
- applicationId "com.tsi.navi"
- minSdkVersion 24
- targetSdkVersion 30
- // versionCode 13
- // versionName "1.3"
- versionCode 16
- versionName "1.6"
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- signingConfig signingConfigs.debug
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- buildFeatures {
- viewBinding true
- /*dataBinding true*/
- }
- }
- apply plugin: 'com.android.application'
- apply plugin: 'com.google.gms.google-services'
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- // websocket
- implementation 'tech.gusavila92:java-android-websocket-client:1.2.2'
- // SQLite
- implementation "androidx.sqlite:sqlite:2.1.0" // Java language implementation
- implementation "androidx.sqlite:sqlite-framework:2.1.0" // Implementation of the AndroidX SQLite interfaces via the Android framework APIs.
- // WebSocket
- implementation 'org.java-websocket:Java-WebSocket:1.5.2'
- // Moshi
- implementation 'com.squareup.moshi:moshi:1.12.0'
- // material design
- implementation 'com.google.android.material:material:1.5.0-alpha02'
- // json
- implementation 'com.fasterxml.jackson.core:jackson-core:2.9.7'
- implementation 'com.fasterxml.jackson.core:jackson-annotations:2.9.7'
- implementation 'com.fasterxml.jackson.core:jackson-databind:2.9.7'
- // noinspection AnnotationProcessorOnCompilePath
- compileOnly 'org.projectlombok:lombok:1.18.20'
- annotationProcessor 'org.projectlombok:lombok:1.18.20'
- // recyclerview
- implementation "androidx.recyclerview:recyclerview:1.2.1"
- implementation "androidx.recyclerview:recyclerview-selection:1.1.0"
- implementation 'com.squareup.retrofit2:retrofit:2.9.0' // http
- implementation 'com.squareup.retrofit2:converter-gson:2.9.0' // json
- implementation 'com.squareup.okhttp3:logging-interceptor:5.0.0-alpha.2' // logging
- implementation 'androidx.appcompat:appcompat:1.3.1'
- implementation 'androidx.constraintlayout:constraintlayout:2.1.0'
- implementation 'androidx.annotation:annotation:1.2.0'
- /*
- implementation 'androidx.activity:activity-ktx:1.3.1'
- implementation 'androidx.fragment:fragment-ktx:1.4.0-alpha07'
- implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.3.1'
- implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.1'
- */
- // Google location
- implementation 'com.google.android.gms:play-services-location:18.0.0'
- // Naver Maps
- implementation 'com.naver.maps:map-sdk:3.12.0'
- compile 'org.slf4j:slf4j-nop:1.7.25'
- }
|