@@ -20,14 +20,11 @@ android {
20
20
applicationId " com.eventyay.attendee"
21
21
minSdkVersion 21
22
22
targetSdkVersion 28
23
- versionCode 9
24
- versionName " 0.3 .0"
23
+ versionCode 10
24
+ versionName " 0.4 .0"
25
25
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
26
26
vectorDrawables. useSupportLibrary = true
27
27
multiDexEnabled true
28
- manifestPlaceholders = [
29
- STRIPE_API_TOKEN : STRIPE_API_TOKEN
30
- ]
31
28
javaCompileOptions {
32
29
annotationProcessorOptions {
33
30
arguments = [" room.schemaLocation" : " $projectDir /schemas" . toString()]
@@ -40,11 +37,17 @@ android {
40
37
minifyEnabled true
41
38
proguardFiles getDefaultProguardFile(' proguard-android.txt' ), ' proguard-rules.pro'
42
39
buildConfigField " String" , " DEFAULT_BASE_URL" , ' "https://api.eventyay.com/v1/"'
40
+ buildConfigField " String" , " FRONTEND_URL" , ' "https://eventyay.com/"'
43
41
buildConfigField " String" , " MAPBOX_KEY" , ' "' + MAPBOX_KEY + ' "'
42
+ buildConfigField " String" , " STRIPE_API_KEY" , ' "' + STRIPE_API_TOKEN + ' "'
43
+ resValue " string" , " FRONTEND_HOST" , " eventyay.com"
44
44
}
45
45
debug {
46
46
buildConfigField " String" , " DEFAULT_BASE_URL" , ' "https://open-event-api-dev.herokuapp.com/v1/"'
47
+ buildConfigField " String" , " FRONTEND_URL" , ' "https://fossasia.github.io/open-event-frontend/"'
47
48
buildConfigField " String" , " MAPBOX_KEY" , ' "' + MAPBOX_KEY + ' "'
49
+ buildConfigField " String" , " STRIPE_API_KEY" , ' "' + STRIPE_API_TOKEN + ' "'
50
+ resValue " string" , " FRONTEND_HOST" , " fossasia.github.io/open-event-frontend"
48
51
}
49
52
}
50
53
@@ -96,8 +99,8 @@ repositories {
96
99
97
100
dependencies {
98
101
def lifecycle_version = " 2.2.0-alpha01"
99
- def koin_version = " 2.0.0-GA6 "
100
- def roomVersion = " 2.1.0-beta01 "
102
+ def koin_version = " 2.0.1 "
103
+ def roomVersion = " 2.1.0-rc01 "
101
104
def ktx_version = " 1.0.0"
102
105
def ktx2_version = " 2.0.0"
103
106
def nav_version = " 2.1.0-alpha04"
@@ -109,7 +112,7 @@ dependencies {
109
112
implementation ' androidx.constraintlayout:constraintlayout:2.0.0-beta1'
110
113
implementation ' androidx.cardview:cardview:1.0.0'
111
114
implementation ' androidx.recyclerview:recyclerview:1.1.0-alpha05'
112
- implementation ' com.google.android.material:material:1.1.0-alpha06 '
115
+ implementation ' com.google.android.material:material:1.1.0-alpha07 '
113
116
implementation " androidx.browser:browser:1.0.0"
114
117
implementation ' androidx.exifinterface:exifinterface:1.0.0'
115
118
implementation " androidx.lifecycle:lifecycle-extensions:${ lifecycle_version} "
@@ -141,12 +144,12 @@ dependencies {
141
144
142
145
// Timber
143
146
implementation ' com.jakewharton.timber:timber:4.7.1'
144
- implementation ' com.jakewharton.threetenabp:threetenabp:1.2.0 '
147
+ implementation ' com.jakewharton.threetenabp:threetenabp:1.2.1 '
145
148
146
- implementation " com.fasterxml.jackson.module:jackson-module-kotlin:2.9.9 "
149
+ implementation " com.fasterxml.jackson.module:jackson-module-kotlin:2.9.6 "
147
150
implementation ' com.github.jasminb:jsonapi-converter:0.9'
148
- implementation ' com.squareup.okhttp3:logging-interceptor:3.14.1 '
149
- implementation ' com.squareup.retrofit2:retrofit:2.5 .0'
151
+ implementation ' com.squareup.okhttp3:logging-interceptor:3.14.2 '
152
+ implementation ' com.squareup.retrofit2:retrofit:2.6 .0'
150
153
implementation ' com.squareup.retrofit2:converter-jackson:2.5.0'
151
154
152
155
// Cards Shimmer Animation
@@ -155,14 +158,14 @@ dependencies {
155
158
// RxJava
156
159
implementation ' io.reactivex.rxjava2:rxandroid:2.1.1'
157
160
implementation ' io.reactivex.rxjava2:rxkotlin:2.3.0'
158
- implementation ' io.reactivex.rxjava2:rxjava:2.2.8 '
161
+ implementation ' io.reactivex.rxjava2:rxjava:2.2.9 '
159
162
implementation ' com.squareup.retrofit2:adapter-rxjava2:2.4.0'
160
163
161
164
// Picasso
162
165
implementation ' com.squareup.picasso:picasso:2.71828'
163
166
164
167
// Stripe
165
- implementation ' com.stripe:stripe-android:9.0 .1'
168
+ implementation ' com.stripe:stripe-android:9.1 .1'
166
169
167
170
// QR Code
168
171
implementation ' com.journeyapps:zxing-android-embedded:3.6.0'
@@ -185,13 +188,13 @@ dependencies {
185
188
testImplementation ' com.github.iamareebjamal:stetho-noop:1.2.1'
186
189
187
190
// LeakCanary
188
- debugImplementation ' com.squareup.leakcanary:leakcanary-android:2.0-alpha-1 '
191
+ debugImplementation ' com.squareup.leakcanary:leakcanary-android:2.0-alpha-2 '
189
192
190
193
testImplementation ' junit:junit:4.12'
191
194
testImplementation " io.mockk:mockk:1.9.3"
192
195
testImplementation ' org.threeten:threetenbp:1.4.0'
193
196
testImplementation " org.koin:koin-test:$koin_version "
194
197
testImplementation ' androidx.arch.core:core-testing:2.0.1'
195
- androidTestImplementation ' androidx.test:runner:1.1.1 '
196
- androidTestImplementation ' androidx.test.espresso:espresso-core:3.1.1 '
198
+ androidTestImplementation ' androidx.test:runner:1.2.0 '
199
+ androidTestImplementation ' androidx.test.espresso:espresso-core:3.2.0 '
197
200
}
0 commit comments