diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..7d287a2 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,3 @@ +## 1.0.12 + +* App added to Firebase \ No newline at end of file diff --git a/app/build.gradle b/app/build.gradle index 8198138..443dad0 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,5 +1,6 @@ plugins { id 'com.android.application' + id 'com.google.gms.google-services' } android { @@ -10,7 +11,7 @@ android { minSdk 26 targetSdk 32 versionCode 14 - versionName "1.0.11" + versionName "1.0.12" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } @@ -54,4 +55,7 @@ dependencies { testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test.ext:junit:1.1.3' androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' + + implementation platform('com.google.firebase:firebase-bom:30.2.0') + implementation 'com.google.firebase:firebase-analytics' } \ No newline at end of file diff --git a/app/google-services.json b/app/google-services.json new file mode 100644 index 0000000..a1a1a15 --- /dev/null +++ b/app/google-services.json @@ -0,0 +1,68 @@ +{ + "project_info": { + "project_number": "170332936097", + "project_id": "minima-minima", + "storage_bucket": "minima-minima.appspot.com" + }, + "client": [ + { + "client_info": { + "mobilesdk_app_id": "1:170332936097:android:f18772fa2375ab89489de0", + "android_client_info": { + "package_name": "com.minima.android" + } + }, + "oauth_client": [ + { + "client_id": "170332936097-6ed4gl76p9j27rifk35lolh96rhasmku.apps.googleusercontent.com", + "client_type": 3 + } + ], + "api_key": [ + { + "current_key": "AIzaSyBfAyB3Ra4SEJ2phc1Gb-FYGaVZ5ZTDLug" + } + ], + "services": { + "appinvite_service": { + "other_platform_oauth_client": [ + { + "client_id": "170332936097-6ed4gl76p9j27rifk35lolh96rhasmku.apps.googleusercontent.com", + "client_type": 3 + } + ] + } + } + }, + { + "client_info": { + "mobilesdk_app_id": "1:170332936097:android:9f0d01282f6612ce489de0", + "android_client_info": { + "package_name": "global.org.minima" + } + }, + "oauth_client": [ + { + "client_id": "170332936097-6ed4gl76p9j27rifk35lolh96rhasmku.apps.googleusercontent.com", + "client_type": 3 + } + ], + "api_key": [ + { + "current_key": "AIzaSyBfAyB3Ra4SEJ2phc1Gb-FYGaVZ5ZTDLug" + } + ], + "services": { + "appinvite_service": { + "other_platform_oauth_client": [ + { + "client_id": "170332936097-6ed4gl76p9j27rifk35lolh96rhasmku.apps.googleusercontent.com", + "client_type": 3 + } + ] + } + } + } + ], + "configuration_version": "1" +} \ No newline at end of file diff --git a/build.gradle b/build.gradle index 4e04c69..99f9b3a 100644 --- a/build.gradle +++ b/build.gradle @@ -1,4 +1,14 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. +buildscript { + repositories { + google() + + } + dependencies { + classpath 'com.google.gms:google-services:4.3.13' + } +} + plugins { id 'com.android.application' version '7.2.0' apply false id 'com.android.library' version '7.2.0' apply false