Skip to content

Commit

Permalink
⚡ For TripKit-UI initial public version
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelReyes committed Oct 27, 2022
1 parent d6870ff commit 11e329c
Showing 1 changed file with 44 additions and 44 deletions.
88 changes: 44 additions & 44 deletions TripKitSamples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,54 +3,54 @@ apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'

android {
compileSdkVersion versions.compileSdkVersion

buildFeatures {
dataBinding true
}

defaultConfig {
applicationId "skedgo.tripkit.samples"
minSdkVersion versions.proMinSdkVersion
targetSdkVersion versions.targetSdkVersion
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

signingConfigs {
debug {
storeFile file("keystores/debug.keystore")
compileSdkVersion versions.compileSdkVersion

buildFeatures {
dataBinding true
}

defaultConfig {
applicationId "skedgo.tripkit.samples"
minSdkVersion versions.proMinSdkVersion
targetSdkVersion versions.targetSdkVersion
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

signingConfigs {
debug {
storeFile file("keystores/debug.keystore")
}

release {
storeFile file("keystores/debug.keystore")
}
}

release {
storeFile file("keystores/debug.keystore")
lintOptions { abortOnError false }
compileOptions {
coreLibraryDesugaringEnabled true
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}

lintOptions { abortOnError false }
compileOptions {
coreLibraryDesugaringEnabled true
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}

dependencies {
coreLibraryDesugaring libs.desugar

testImplementation libs.junit
implementation libs.kotlin
implementation "com.google.android.gms:play-services-maps:15.0.1"

implementation 'com.trello:rxlifecycle:1.0'
implementation libs.jodaTimeAndroid
implementation libs.rxjava2
implementation libs.rxAndroid2
implementation libs.appCompat
implementation 'com.google.android.material:material:1.0.0'

implementation libs.bindingCollectionAdapterRecyclerView
implementation project(':TripKitAndroid')
implementation project(':rxlifecyclecomponents')
coreLibraryDesugaring libs.desugar

testImplementation libs.junit
implementation libs.kotlin
implementation "com.google.android.gms:play-services-maps:15.0.1"

implementation 'com.trello:rxlifecycle:1.0'
implementation libs.jodaTimeAndroid
implementation libs.rxjava2
implementation libs.rxAndroid2
implementation libs.appCompat
implementation 'com.google.android.material:material:1.0.0'

implementation libs.bindingCollectionAdapterRecyclerView
implementation project(':TripKitAndroid')
implementation project(':rxlifecyclecomponents')
}

0 comments on commit 11e329c

Please sign in to comment.