Skip to content

Commit

Permalink
[Chore/#51] gradle 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
ss99x2002 committed Jul 11, 2023
1 parent e479f7f commit 9748075
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
9 changes: 9 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ plugins {
id 'kotlin-kapt'
id 'kotlin-parcelize'
id 'dagger.hilt.android.plugin'
id 'com.google.gms.google-services'
}

Properties properties = new Properties()
Expand Down Expand Up @@ -103,4 +104,12 @@ dependencies {

//viewpager2
implementation "androidx.viewpager2:viewpager2:1.0.0"

// FCM
// import the firebase bom
implementation platform('com.google.firebase:firebase-bom:32.1.1')
// When using the BoM, don't specify versions in Firebase dependencies
implementation 'com.google.firebase:firebase-analytics-ktx'
// Import Firebase Cloud Messaging SDK
implementation 'com.google.firebase:firebase-messaging'
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package com.sopt.umbba_android.util.fcm

class MyFirebaseMessagingService {
}
11 changes: 11 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,20 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.google.gms:google-services:4.3.15'
}
}

plugins {
id 'com.android.application' version '8.0.2' apply false
id 'com.android.library' version '8.0.2' apply false
id 'org.jetbrains.kotlin.android' version '1.8.20' apply false
id 'com.google.dagger.hilt.android' version '2.42' apply false
id 'com.google.gms.google-services' version '4.3.15' apply false
}

ext {
Expand Down

0 comments on commit 9748075

Please sign in to comment.