Skip to content
Snippets Groups Projects
Commit b6c97372 authored by Fodor Patrik's avatar Fodor Patrik :ghost:
Browse files

Firebase and material 3 dependencies

parent fa0378a8
No related branches found
No related tags found
No related merge requests found
plugins { plugins {
id 'com.android.application' id 'com.android.application'
id 'com.google.gms.google-services'
id 'org.jetbrains.kotlin.android' id 'org.jetbrains.kotlin.android'
id 'kotlin-kapt'
} }
android { android {
...@@ -49,13 +51,35 @@ dependencies { ...@@ -49,13 +51,35 @@ dependencies {
implementation 'androidx.core:core-ktx:1.7.0' implementation 'androidx.core:core-ktx:1.7.0'
implementation "androidx.compose.ui:ui:$compose_version" implementation "androidx.compose.ui:ui:$compose_version"
implementation "androidx.compose.material:material:$compose_version"
implementation "androidx.compose.ui:ui-tooling-preview:$compose_version" implementation "androidx.compose.ui:ui-tooling-preview:$compose_version"
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.3.1' implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.4.1'
implementation 'androidx.activity:activity-compose:1.3.1' implementation 'androidx.activity:activity-compose:1.4.0'
testImplementation 'junit:junit:4.13.2' testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3' androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
androidTestImplementation "androidx.compose.ui:ui-test-junit4:$compose_version" androidTestImplementation "androidx.compose.ui:ui-test-junit4:$compose_version"
debugImplementation "androidx.compose.ui:ui-tooling:$compose_version" debugImplementation "androidx.compose.ui:ui-tooling:$compose_version"
debugImplementation "androidx.compose.ui:ui-test-manifest:$compose_version"
implementation 'androidx.compose.material3:material3:1.0.0-alpha11'
implementation 'com.google.android.material:material:1.6.0'
implementation "androidx.compose.material:material-icons-extended:$compose_version"
def nav_version = "2.4.2"
implementation "androidx.navigation:navigation-compose:$nav_version"
implementation 'com.google.firebase:firebase-bom:30.0.1'
implementation 'com.google.firebase:firebase-analytics-ktx'
implementation 'com.google.firebase:firebase-auth-ktx'
implementation 'com.firebaseui:firebase-ui-auth:8.0.1'
implementation 'com.google.android.gms:play-services-auth:20.2.0'
implementation 'com.google.firebase:firebase-firestore-ktx'
implementation "com.google.accompanist:accompanist-placeholder-material:$accompanist_version"
implementation "com.google.accompanist:accompanist-systemuicontroller:$accompanist_version"
implementation "com.google.accompanist:accompanist-permissions:$accompanist_version"
implementation("androidx.datastore:datastore-preferences:1.0.0")
implementation("androidx.datastore:datastore-preferences-rxjava2:1.0.0")
implementation("androidx.datastore:datastore-preferences-rxjava3:1.0.0")
} }
\ No newline at end of file
{
"project_info": {
"project_number": "662802770735",
"project_id": "szobatarsch",
"storage_bucket": "szobatarsch.appspot.com"
},
"client": [
{
"client_info": {
"mobilesdk_app_id": "1:662802770735:android:e155835b0c8d0e768a0fda",
"android_client_info": {
"package_name": "hu.bme.kszk.szobatarsch"
}
},
"oauth_client": [
{
"client_id": "662802770735-hdine6c5o0nt242hdfj17bbg62rtgdcg.apps.googleusercontent.com",
"client_type": 3
}
],
"api_key": [
{
"current_key": "AIzaSyAAq0MBErqn5Md3GVuq3MxAch-Tfa1Bb2Y"
}
],
"services": {
"appinvite_service": {
"other_platform_oauth_client": [
{
"client_id": "662802770735-hdine6c5o0nt242hdfj17bbg62rtgdcg.apps.googleusercontent.com",
"client_type": 3
}
]
}
}
}
],
"configuration_version": "1"
}
\ No newline at end of file
buildscript { buildscript {
ext { ext {
compose_version = '1.0.1' compose_version = '1.1.1'
accompanist_version = "0.21.3-beta"
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:7.0.4"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.21"
classpath 'com.google.gms:google-services:4.3.10'
} }
}// Top-level build file where you can add configuration options common to all sub-projects/modules. }// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins { plugins {
id 'com.android.application' version '7.1.3' apply false id 'com.android.application' version '7.2.0' apply false
id 'com.android.library' version '7.1.3' apply false id 'com.android.library' version '7.2.0' apply false
id 'org.jetbrains.kotlin.android' version '1.5.21' apply false id 'org.jetbrains.kotlin.android' version '1.6.10' apply false
} }
task clean(type: Delete) { task clean(type: Delete) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment