@@ -16,25 +16,28 @@ android {
1616 }
1717
1818 signingConfigs {
19+ debug {
20+ keyAlias ' PublicKey'
21+ keyPassword ' 12344321'
22+ storeFile file(' ../keyStorePublic.jks' )
23+ storePassword ' 12344321'
24+ }
1925 release {
2026 keyAlias ' PublicKey'
2127 keyPassword ' 12344321'
22- storeFile file(' C:/Users/Taqtile/StudioProjects /keyStorePublic.jks' )
28+ storeFile file(' .. /keyStorePublic.jks' )
2329 storePassword ' 12344321'
2430 }
2531 }
2632
2733 buildTypes {
2834 debug {
29- // Disable fabric build ID generation for debug builds
3035 ext. enableCrashlytics = false
36+ signingConfig signingConfigs. debug
3137 }
3238 release {
3339// shrinkResources true
3440// minifyEnabled true
35- // crashlytics {
36- // ext.betaDistributionApkFilePath = 'C:/Users/Taqtile/.jenkins/workspace/Notes/app/build/app-release.apk'
37- // }
3841 ext. enableCrashlytics = true
3942 proguardFiles getDefaultProguardFile(' proguard-android.txt' ), ' proguard-rules.pro'
4043 signingConfig signingConfigs. release
@@ -47,17 +50,17 @@ repositories {
4750}
4851
4952def dbflow_version = " 4.0.3"
50- def support_version = " 27.1.0 "
53+ def support_version = " 27.1.1 "
5154
5255dependencies {
5356 implementation fileTree(include : [' *.jar' ], dir : ' libs' )
54- implementation " org.jetbrains.kotlin:kotlin-stdlib-jre7 :$kotlin_version "
57+ implementation " org.jetbrains.kotlin:kotlin-stdlib-jdk7 :$kotlin_version "
5558 implementation " com.android.support:appcompat-v7:${ support_version} "
5659 implementation " com.android.support:design:${ support_version} "
5760 implementation " com.android.support:recyclerview-v7:${ support_version} "
5861 implementation " com.android.support:cardview-v7:${ support_version} "
5962 implementation " com.android.support:support-v4:${ support_version} "
60- implementation ' com.android.support.constraint:constraint-layout:1.0.2 '
63+ implementation ' com.android.support.constraint:constraint-layout:1.1.1 '
6164 kapt " com.github.Raizlabs.DBFlow:dbflow-processor:${ dbflow_version} "
6265 implementation " com.github.Raizlabs.DBFlow:dbflow-core:${ dbflow_version} "
6366 implementation " com.github.Raizlabs.DBFlow:dbflow:${ dbflow_version} "
@@ -68,8 +71,8 @@ dependencies {
6871 implementation(' com.crashlytics.sdk.android:crashlytics:2.9.1@aar' ) {
6972 transitive = true
7073 }
71- implementation ' com.squareup.picasso:picasso:2.5.2 '
74+ implementation ' com.squareup.picasso:picasso:2.71828 '
7275 testImplementation ' junit:junit:4.12'
73- androidTestImplementation ' com.android.support.test:runner:1.0.1 '
74- androidTestImplementation ' com.android.support.test.espresso:espresso-core:3.0.1 '
76+ androidTestImplementation ' com.android.support.test:runner:1.0.2 '
77+ androidTestImplementation ' com.android.support.test.espresso:espresso-core:3.0.2 '
7578}
0 commit comments