|
|
|
|
@ -3,8 +3,10 @@ apply plugin: 'kotlin-android' |
|
|
|
|
apply plugin: 'kotlin-android-extensions' |
|
|
|
|
apply plugin: 'kotlin-kapt' |
|
|
|
|
apply plugin: 'realm-android' |
|
|
|
|
apply plugin: 'com.google.gms.google-services' // Crashlytics |
|
|
|
|
// Crashlytics |
|
|
|
|
apply plugin: 'com.google.gms.google-services' |
|
|
|
|
apply plugin: 'com.google.firebase.crashlytics' |
|
|
|
|
////////////// |
|
|
|
|
|
|
|
|
|
repositories { |
|
|
|
|
maven { url 'https://jitpack.io' } // required for MPAndroidChart |
|
|
|
|
@ -33,7 +35,7 @@ android { |
|
|
|
|
applicationId "net.pokeranalytics.android" |
|
|
|
|
minSdkVersion 23 |
|
|
|
|
targetSdkVersion 29 |
|
|
|
|
versionCode 113 |
|
|
|
|
versionCode 114 |
|
|
|
|
versionName "5.1" |
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" |
|
|
|
|
} |
|
|
|
|
@ -118,15 +120,13 @@ dependencies { |
|
|
|
|
// Billing / Subscriptions |
|
|
|
|
implementation 'com.android.billingclient:billing:3.0.1' |
|
|
|
|
|
|
|
|
|
// Import the Firebase BoM |
|
|
|
|
implementation platform('com.google.firebase:firebase-bom:25.12.0') |
|
|
|
|
// Add the dependency for the Firebase SDK for Google Analytics |
|
|
|
|
// When using the BoM, don't specify versions in Firebase dependencies |
|
|
|
|
// Import the BoM for the Firebase platform |
|
|
|
|
implementation platform('com.google.firebase:firebase-bom:26.1.0') |
|
|
|
|
// Declare the dependencies for the Crashlytics and Analytics libraries |
|
|
|
|
// When using the BoM, you don't specify versions in Firebase library dependencies |
|
|
|
|
implementation 'com.google.firebase:firebase-crashlytics-ktx' |
|
|
|
|
implementation 'com.google.firebase:firebase-analytics-ktx' |
|
|
|
|
|
|
|
|
|
// Add the Firebase Crashlytics SDK. |
|
|
|
|
implementation 'com.google.firebase:firebase-crashlytics' |
|
|
|
|
|
|
|
|
|
// Logs |
|
|
|
|
implementation 'com.jakewharton.timber:timber:4.7.1' |
|
|
|
|
|
|
|
|
|
|