Skip to content

Commit 48cf2b3

Browse files
author
Pavel
committed
fixed
1 parent a8afa06 commit 48cf2b3

File tree

1 file changed

+5
-10
lines changed

1 file changed

+5
-10
lines changed

app/build.gradle

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,12 @@ android {
1515
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1616
}
1717

18-
signingConfigs{
19-
release{
18+
signingConfigs {
19+
release {
2020
keyAlias "key"
2121
keyPassword "12344321"
2222
storePassword "12344321"
23+
storeFile file('C:/Users/Taqtile/StudioProjects/keyStorePublic.jks')
2324
}
2425
}
2526

@@ -47,31 +48,25 @@ def dbflow_version = "4.0.3"
4748
def support_version = "27.1.0"
4849

4950
dependencies {
50-
implementation fileTree(dir: 'libs', include: ['*.jar'])
51-
implementation"org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
52-
51+
implementation fileTree(include: ['*.jar'], dir: 'libs')
52+
implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
5353
implementation "com.android.support:appcompat-v7:${support_version}"
5454
implementation "com.android.support:design:${support_version}"
5555
implementation "com.android.support:recyclerview-v7:${support_version}"
5656
implementation "com.android.support:cardview-v7:${support_version}"
5757
implementation "com.android.support:support-v4:${support_version}"
58-
5958
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
60-
6159
kapt "com.github.Raizlabs.DBFlow:dbflow-processor:${dbflow_version}"
6260
implementation "com.github.Raizlabs.DBFlow:dbflow-core:${dbflow_version}"
6361
implementation "com.github.Raizlabs.DBFlow:dbflow:${dbflow_version}"
6462
implementation "com.github.Raizlabs.DBFlow:dbflow-kotlinextensions:${dbflow_version}"
65-
6663
implementation('com.crashlytics.sdk.android:answers:1.4.1@aar') {
6764
transitive = true
6865
}
6966
implementation('com.crashlytics.sdk.android:crashlytics:2.9.1@aar') {
7067
transitive = true
7168
}
72-
7369
implementation 'com.squareup.picasso:picasso:2.5.2'
74-
7570
testImplementation 'junit:junit:4.12'
7671
androidTestImplementation 'com.android.support.test:runner:1.0.1'
7772
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'

0 commit comments

Comments
 (0)