From 65d3c1b256a9846e78d5ea5af6cda2029a9e284b Mon Sep 17 00:00:00 2001
From: priagungs <priagungsatyagama@gmail.com>
Date: Sat, 23 Feb 2019 15:16:22 +0700
Subject: [PATCH] finished push notif service

---
 android/app/build.gradle                      |   3 +-
 android/app/src/main/AndroidManifest.xml      |  28 ++++-
 .../main/java/com/chatman/AuthActivity.java   |   1 +
 .../main/java/com/chatman/BotFragment.java    |   6 +-
 .../main/java/com/chatman/MainActivity.java   |  17 ++-
 .../com/chatman/helper/PreferencesHelper.java |   9 ++
 .../service/PushNotificationService.java      |  98 ++++++++++++++++++
 .../res/drawable-anydpi-v24/ic_update.xml     |  13 +++
 .../src/main/res/drawable-hdpi/ic_update.png  | Bin 0 -> 460 bytes
 .../src/main/res/drawable-mdpi/ic_update.png  | Bin 0 -> 326 bytes
 .../src/main/res/drawable-xhdpi/ic_update.png | Bin 0 -> 595 bytes
 .../main/res/drawable-xxhdpi/ic_update.png    | Bin 0 -> 805 bytes
 .../app/src/main/res/layout/fragment_bot.xml  |   7 ++
 .../src/main/res/layout/fragment_chat_bot.xml |   1 +
 .../app/src/main/res/values-v21/strings.xml   |   4 +
 android/app/src/main/res/values/strings.xml   |  16 +++
 android/build.gradle                          |   2 +-
 17 files changed, 197 insertions(+), 8 deletions(-)
 create mode 100644 android/app/src/main/java/com/chatman/service/PushNotificationService.java
 create mode 100644 android/app/src/main/res/drawable-anydpi-v24/ic_update.xml
 create mode 100644 android/app/src/main/res/drawable-hdpi/ic_update.png
 create mode 100644 android/app/src/main/res/drawable-mdpi/ic_update.png
 create mode 100644 android/app/src/main/res/drawable-xhdpi/ic_update.png
 create mode 100644 android/app/src/main/res/drawable-xxhdpi/ic_update.png
 create mode 100644 android/app/src/main/res/values-v21/strings.xml

diff --git a/android/app/build.gradle b/android/app/build.gradle
index 451b939..9c38f4f 100644
--- a/android/app/build.gradle
+++ b/android/app/build.gradle
@@ -27,8 +27,9 @@ dependencies {
     testImplementation 'junit:junit:4.12'
     androidTestImplementation 'com.android.support.test:runner:1.0.2'
     androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
-    implementation 'com.google.firebase:firebase-core:16.0.6'
+    implementation 'com.google.firebase:firebase-core:16.0.7'
     implementation 'com.google.firebase:firebase-database:16.0.6'
+    implementation 'com.google.firebase:firebase-messaging:17.4.0'
     implementation 'com.github.bumptech.glide:glide:4.9.0'
     annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'
     implementation 'de.hdodenhof:circleimageview:3.0.0'
diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml
index a6afddc..25becf5 100644
--- a/android/app/src/main/AndroidManifest.xml
+++ b/android/app/src/main/AndroidManifest.xml
@@ -9,21 +9,41 @@
         android:roundIcon="@mipmap/ic_launcher_round"
         android:supportsRtl="true"
         android:theme="@style/AppTheme">
+        <!-- <service -->
+        <!-- android:name=".service.PushNotificationService" -->
+        <!-- android:enabled="true" -->
+        <!-- android:exported="true"/> -->
+        <!--
+ Set custom default icon. This is used when no icon is set for incoming notification messages.
+     See README(https://goo.gl/l4GJaQ) for more.
+        -->
+        <!-- <meta-data -->
+        <!-- android:name="com.google.firebase.messaging.default_notification_icon" -->
+        <!-- android:resource="@drawable/logo" /> -->
+        <!-- &lt;!&ndash; Set color used with incoming notification messages. This is used when no color is set for the incoming -->
+        <!-- notification message. See README(https://goo.gl/6BKBk7) for more. &ndash;&gt; -->
+        <!-- <meta-data -->
+        <!-- android:name="com.google.firebase.messaging.default_notification_color" -->
+        <!-- android:resource="@color/colorAccent" /> -->
+        <service android:name=".service.PushNotificationService">
+            <intent-filter>
+                <action android:name="com.google.firebase.MESSAGING_EVENT" />
+            </intent-filter>
+        </service>
+
         <activity
             android:name=".MainActivity"
             android:label="@string/app_name"
-            android:theme="@style/AppTheme.NoActionBar">
-        </activity>
-
+            android:theme="@style/AppTheme.NoActionBar" />
         <activity
             android:name=".AuthActivity"
             android:theme="@style/AppTheme.NoActionBar">
             <intent-filter>
                 <action android:name="android.intent.action.MAIN" />
+
                 <category android:name="android.intent.category.LAUNCHER" />
             </intent-filter>
         </activity>
-
     </application>
 
 </manifest>
\ No newline at end of file
diff --git a/android/app/src/main/java/com/chatman/AuthActivity.java b/android/app/src/main/java/com/chatman/AuthActivity.java
index 894c3d9..00fe30d 100644
--- a/android/app/src/main/java/com/chatman/AuthActivity.java
+++ b/android/app/src/main/java/com/chatman/AuthActivity.java
@@ -22,6 +22,7 @@ import com.chatman.helper.PreferencesHelper;
 import com.chatman.model.User;
 import com.google.android.gms.tasks.OnCompleteListener;
 import com.google.android.gms.tasks.Task;
+import com.google.firebase.FirebaseApp;
 import com.google.firebase.database.DataSnapshot;
 import com.google.firebase.database.DatabaseError;
 import com.google.firebase.database.ValueEventListener;
diff --git a/android/app/src/main/java/com/chatman/BotFragment.java b/android/app/src/main/java/com/chatman/BotFragment.java
index 254883a..335c477 100644
--- a/android/app/src/main/java/com/chatman/BotFragment.java
+++ b/android/app/src/main/java/com/chatman/BotFragment.java
@@ -1,12 +1,15 @@
 package com.chatman;
 
 import android.content.Context;
+import android.content.Intent;
 import android.net.Uri;
 import android.os.Bundle;
 import android.support.v4.app.Fragment;
 import android.view.LayoutInflater;
 import android.view.View;
 import android.view.ViewGroup;
+import android.widget.Button;
+import android.widget.TextView;
 
 
 /**
@@ -41,7 +44,8 @@ public class BotFragment extends Fragment {
                              Bundle savedInstanceState) {
 
         // Inflate the layout for this fragment
-        return inflater.inflate(R.layout.fragment_bot, container, false);
+        View view = inflater.inflate(R.layout.fragment_bot, container, false);
+        return view;
     }
 
     public void onButtonPressed(Uri uri) {
diff --git a/android/app/src/main/java/com/chatman/MainActivity.java b/android/app/src/main/java/com/chatman/MainActivity.java
index a3bbfaa..8b39b3b 100644
--- a/android/app/src/main/java/com/chatman/MainActivity.java
+++ b/android/app/src/main/java/com/chatman/MainActivity.java
@@ -1,17 +1,24 @@
 package com.chatman;
 
+import android.app.NotificationChannel;
+import android.app.NotificationManager;
+import android.app.PendingIntent;
 import android.content.Context;
 import android.content.Intent;
 import android.content.SharedPreferences;
+import android.media.RingtoneManager;
 import android.net.Uri;
+import android.os.Build;
 import android.os.Bundle;
 import android.support.annotation.NonNull;
 import android.support.design.widget.BottomNavigationView;
 import android.support.design.widget.FloatingActionButton;
 import android.support.design.widget.Snackbar;
 import android.support.v4.app.Fragment;
+import android.support.v4.app.NotificationCompat;
 import android.support.v7.widget.LinearLayoutManager;
 import android.support.v7.widget.RecyclerView;
+import android.util.Log;
 import android.view.View;
 import android.support.design.widget.NavigationView;
 import android.support.v4.view.GravityCompat;
@@ -25,8 +32,14 @@ import android.widget.ImageView;
 
 import com.bumptech.glide.Glide;
 import com.chatman.adapter.ChatListAdapter;
+import com.chatman.helper.FirebaseHelper;
 import com.chatman.helper.PreferencesHelper;
 import com.chatman.model.ChatList;
+import com.google.android.gms.tasks.OnCompleteListener;
+import com.google.android.gms.tasks.Task;
+import com.google.firebase.FirebaseApp;
+import com.google.firebase.iid.FirebaseInstanceId;
+import com.google.firebase.iid.InstanceIdResult;
 
 import java.util.ArrayList;
 import java.util.Date;
@@ -53,7 +66,6 @@ public class MainActivity extends AppCompatActivity implements
                 case R.id.navigation_bot:
                     loadFragment(new BotFragment()); break;
             }
-
             return true;
         }
     };
@@ -69,6 +81,9 @@ public class MainActivity extends AppCompatActivity implements
         setSupportActionBar(toolbar);
         context = this;
 
+        FirebaseHelper.dbUser.child(PreferencesHelper.getUserFirebaseKey(this)).child("key").setValue(PreferencesHelper.getToken(this));
+
+
         // Bottom Navigation Bar
         bottomNavbar = findViewById(R.id.navigation);
         bottomNavbar.setOnNavigationItemSelectedListener(mOnNavigationItemSelectedListener);
diff --git a/android/app/src/main/java/com/chatman/helper/PreferencesHelper.java b/android/app/src/main/java/com/chatman/helper/PreferencesHelper.java
index cb40a73..ad06087 100644
--- a/android/app/src/main/java/com/chatman/helper/PreferencesHelper.java
+++ b/android/app/src/main/java/com/chatman/helper/PreferencesHelper.java
@@ -9,6 +9,7 @@ public class PreferencesHelper {
     public static final String USER_FIREBASE_KEY = "user_firebase_key";
     public static final String USER_NAME = "user_name";
     public static final String HAS_LOGIN = "has_login";
+    public static final String TOKEN= "token";
 
     private static void setBooleanPreferences(Context context, String key, boolean value) {
         SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(context);
@@ -71,4 +72,12 @@ public class PreferencesHelper {
         return getBooleanPreferences(context, HAS_LOGIN);
     }
 
+    public static void setToken(Context context, String string) {
+        setStringPreferences(context, TOKEN, string);
+    }
+
+    public static String getToken(Context context) {
+        return getStringPreferences(context, TOKEN);
+    }
+
 }
diff --git a/android/app/src/main/java/com/chatman/service/PushNotificationService.java b/android/app/src/main/java/com/chatman/service/PushNotificationService.java
new file mode 100644
index 0000000..4d73cbf
--- /dev/null
+++ b/android/app/src/main/java/com/chatman/service/PushNotificationService.java
@@ -0,0 +1,98 @@
+package com.chatman.service;
+
+import android.app.Notification;
+import android.app.NotificationChannel;
+import android.app.NotificationManager;
+import android.app.PendingIntent;
+import android.app.Service;
+import android.content.Context;
+import android.content.Intent;
+import android.graphics.Color;
+import android.media.RingtoneManager;
+import android.net.Uri;
+import android.os.Build;
+import android.os.IBinder;
+import android.support.v4.app.NotificationCompat;
+import android.util.Log;
+
+import com.chatman.MainActivity;
+import com.chatman.R;
+import com.chatman.helper.FirebaseHelper;
+import com.chatman.helper.PreferencesHelper;
+import com.google.firebase.FirebaseApp;
+import com.google.firebase.messaging.FirebaseMessagingService;
+import com.google.firebase.messaging.RemoteMessage;
+
+public class PushNotificationService extends FirebaseMessagingService {
+
+    private static final String TAG = PushNotificationService.class.getSimpleName();
+    private static final int NOTIFICATION_ID = 0;
+
+    @Override
+    public void onMessageReceived(RemoteMessage remoteMessage) {
+        super.onMessageReceived(remoteMessage);
+        Log.d(TAG, "onMessageReceived: " + remoteMessage.getData());
+        Log.d(TAG, "onMessageReceived: notification body " + remoteMessage.getNotification().getBody());
+        sendNotification(remoteMessage.getNotification().getBody(), remoteMessage.getNotification().getTitle());
+    }
+
+    @Override
+    public void onNewToken(String s) {
+        super.onNewToken(s);
+        PreferencesHelper.setToken(this, s);
+        Log.d(TAG, "onNewToken: " + s);
+        Log.d(TAG, "onNewToken: " + PreferencesHelper.getUserFirebaseKey(this));
+    }
+
+    private void sendNotification(String messageBody, String title) {
+
+        NotificationManager mNotifyManager =
+                (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
+
+        // Notification channels are only available in OREO and higher.
+        // So, add a check on SDK version.
+        if (android.os.Build.VERSION.SDK_INT >=
+                android.os.Build.VERSION_CODES.O) {
+
+            // Create the NotificationChannel with all the parameters.
+            NotificationChannel notificationChannel = new NotificationChannel
+                    (getString(R.string.default_notification_channel_id),
+                            getString(R.string.default_notification_channel_name),
+                            NotificationManager.IMPORTANCE_HIGH);
+
+            notificationChannel.enableLights(true);
+            notificationChannel.setLightColor(Color.RED);
+            notificationChannel.enableVibration(true);
+            notificationChannel.setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION), null);
+            notificationChannel.setDescription
+                    (getString(R.string.notification_channel_description));
+            mNotifyManager.createNotificationChannel(notificationChannel);
+        }
+
+        NotificationCompat.Builder notifyBuilder = getNotificationBuilder(title, messageBody);
+
+        mNotifyManager.notify(NOTIFICATION_ID, notifyBuilder.build());
+    }
+
+    private NotificationCompat.Builder getNotificationBuilder(String title, String text) {
+
+        // Set up the pending intent that is delivered when the notification
+        // is clicked.
+        Intent notificationIntent = new Intent(this, MainActivity.class);
+        PendingIntent notificationPendingIntent = PendingIntent.getActivity
+                (this, NOTIFICATION_ID, notificationIntent,
+                        PendingIntent.FLAG_UPDATE_CURRENT);
+
+        // Build the notification with all of the parameters.
+        NotificationCompat.Builder notifyBuilder = new NotificationCompat
+                .Builder(this, getString(R.string.default_notification_channel_id))
+                .setContentTitle(title)
+                .setContentText(text)
+                .setSmallIcon(R.drawable.ic_launcher_foreground)
+                .setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION))
+                .setAutoCancel(true).setContentIntent(notificationPendingIntent)
+                .setPriority(NotificationCompat.PRIORITY_HIGH)
+                .setDefaults(NotificationCompat.DEFAULT_ALL);
+        return notifyBuilder;
+    }
+}
diff --git a/android/app/src/main/res/drawable-anydpi-v24/ic_update.xml b/android/app/src/main/res/drawable-anydpi-v24/ic_update.xml
new file mode 100644
index 0000000..b582d07
--- /dev/null
+++ b/android/app/src/main/res/drawable-anydpi-v24/ic_update.xml
@@ -0,0 +1,13 @@
+<vector xmlns:android="http://schemas.android.com/apk/res/android"
+    android:width="24dp"
+    android:height="24dp"
+    android:viewportWidth="26.086956"
+    android:viewportHeight="26.086956"
+    android:tint="#FFFFFF">
+  <group android:translateX="1.0434783"
+      android:translateY="1.0434783">
+      <path
+          android:fillColor="#FF000000"
+          android:pathData="M6,18c0,0.55 0.45,1 1,1h1v3.5c0,0.83 0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5L11,19h2v3.5c0,0.83 0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5L16,19h1c0.55,0 1,-0.45 1,-1L18,8L6,8v10zM3.5,8C2.67,8 2,8.67 2,9.5v7c0,0.83 0.67,1.5 1.5,1.5S5,17.33 5,16.5v-7C5,8.67 4.33,8 3.5,8zM20.5,8c-0.83,0 -1.5,0.67 -1.5,1.5v7c0,0.83 0.67,1.5 1.5,1.5s1.5,-0.67 1.5,-1.5v-7c0,-0.83 -0.67,-1.5 -1.5,-1.5zM15.53,2.16l1.3,-1.3c0.2,-0.2 0.2,-0.51 0,-0.71 -0.2,-0.2 -0.51,-0.2 -0.71,0l-1.48,1.48C13.85,1.23 12.95,1 12,1c-0.96,0 -1.86,0.23 -2.66,0.63L7.85,0.15c-0.2,-0.2 -0.51,-0.2 -0.71,0 -0.2,0.2 -0.2,0.51 0,0.71l1.31,1.31C6.97,3.26 6,5.01 6,7h12c0,-1.99 -0.97,-3.75 -2.47,-4.84zM10,5L9,5L9,4h1v1zM15,5h-1L14,4h1v1z"/>
+  </group>
+</vector>
diff --git a/android/app/src/main/res/drawable-hdpi/ic_update.png b/android/app/src/main/res/drawable-hdpi/ic_update.png
new file mode 100644
index 0000000000000000000000000000000000000000..43d78bdb293a268102f222a6a31940a38c527d72
GIT binary patch
literal 460
zcmV;-0W<!IP)<h;3K|Lk000e1NJLTq001Na001Ni1^@s6;Q*MJ0004#Nkl<Zc-rll
zv1$TA5QeW%!4zqNjZIQqk-{c~BliMop`cAH@(7lRu{4eEV5bj|I#mn-kr0Rosjo{V
zLIQSy7&iaHge=2>E4wRPxPcF3=62@8({oqPOL7PyE<kCE>rcSBOQAdP4o+GAP{MK{
zSb<xYLi^wee1J>v0KUav$k+Gaiew(ap6lCI0&B53zQD0-86Ug}{gBuCu4FRcMQk5(
zO~!>#TNx5jZW1Ffp<1Nm+Af6V$^iL+9f3uR(1L0!B{#P%QxN7+uqhN+5DIJx<-w65
zc@u#qxc+_m(%1dQ5MOz!%ic|0nU3-{FTnw*TDWCZ>a|pI9UY-5Yt*nP)L^-(j?j!P
zYFQL&vD_>bN`+FPR455TW45SbQK-UlV;!Ly_@o8TAZJl1M?D42sOkQ|7Qq?FDrYRy
z2&q?=dKXRiL|xjNzOq3P<wtBEE$CXA@47q+_1Vy&QX8^be;4QbR48#mJvMZp)CR29
z+l5fT{%oi#wYrjDTRr-0kP7J}QI4sVsTO+wA$|Z>v63M;=`no(0000<MNUMnLSTXy
CoXLLx

literal 0
HcmV?d00001

diff --git a/android/app/src/main/res/drawable-mdpi/ic_update.png b/android/app/src/main/res/drawable-mdpi/ic_update.png
new file mode 100644
index 0000000000000000000000000000000000000000..e424146397593ac15cb9f19e25e8bb776784ad58
GIT binary patch
literal 326
zcmV-M0lEH(P)<h;3K|Lk000e1NJLTq000;O000;W1^@s6;CDUv0003ENkl<Zc-rli
zp$Y;)7=%v{jVc<gmkqwe^?LxTNkkB|87vly7K=8+!4(BTA3)#0tkq%`#B~;Caf2s!
zdnXrk;Dg<t|DS<{-L<SVC4}gM3CM6?kZ_#=Gth|>kOM2Q1!wWn3G9FmvT*{6;2?sv
zmpyR;mNeRct7d#<O=@XsZi5F+=HQ|QTv!wAu}uP+BD|U=0X5JFNiD2t3rs;7xL^?y
zmosv<_36x&24EQBh=!a|vfl;NwT7`lz*yVY{{cT5Pz853bPWQ!TuYB?&|PqN+47(l
zA)v<@IqO7us@veG8I6e2kv*}VY+p015G6l}Z}aN`o@Q7gN?sBH@}<0iwN_iR=2~g%
Y2_XB5nnSWJ`2YX_07*qoM6N<$f-ZQ44FCWD

literal 0
HcmV?d00001

diff --git a/android/app/src/main/res/drawable-xhdpi/ic_update.png b/android/app/src/main/res/drawable-xhdpi/ic_update.png
new file mode 100644
index 0000000000000000000000000000000000000000..e10c3a90707297f85575d694314f21a9409d6aea
GIT binary patch
literal 595
zcmV-Z0<8UsP)<h;3K|Lk000e1NJLTq001xm001xu1^@s6R|5Hm0006SNkl<Zc-rlm
zK}!Nb6vs8GK#0OfOp!h7A@EpT>Z0I9kAjEr;CCp$g4dvfr@R$;=^Vsf1P>7eQgjia
zLc}5}Pe#)ldWUVA5q8_1*=Qd8!DimP_y4WCtTP1y|2YUDGk&PywDAh)8FUB=Iaogj
zIspwq3n~ESLD%Ffj#vozdkM6LTI85N#kChsE`VDQtDqY+atzu89e^Im&lrLBK^qqH
zm!M_U&jE$FCHCV=xp@SjSM<pN0R5KMRh!=iy%Fa@*KVmY9|1j(-^V?zr2?SI7-`U}
z2{NacH8H2bj5lSQPk`PT6E&P`O#x_OPK_C-wGuJ`b~)zggWLm+rvQvGhxgF$$pkQo
z`(eri=z9Rrmt{T(Is=`%ELt-d(DD6hr$Gf!%rX`N?Rcb+rB4idr=6OwGjGfSj)#eN
z5yl<`<_%xBYd*s%KEV6mQvmES;LK(008|7G;t~Mjg1L$vfU2N~ApyV;%vCjj2G9T+
zKm%w14WI!e0hBleKJYBaYk&y$VxwdSfc_$UWeT(<?g!e;IQ0^@yC=xv$@2vFtA<1X
z1A9);L)Pt0{m29JBWas@Xq3mZ{T}{@g%@`?-^0(m7~(vwl~=X#FAL12EIBDbPT3D9
z7aBkVXn;QsP!yO;T5^(toT489qM#SXSeKL6Wpe16s9z3&bNE7{(Xrk>%x%=c9GaW+
h<7xJ+8#(_fJ^{GJoI{C0X}|yg002ovPDHLkV1n!t0cZdK

literal 0
HcmV?d00001

diff --git a/android/app/src/main/res/drawable-xxhdpi/ic_update.png b/android/app/src/main/res/drawable-xxhdpi/ic_update.png
new file mode 100644
index 0000000000000000000000000000000000000000..fd75de1a80cde216b141828c2007457f1bc18594
GIT binary patch
literal 805
zcmV+=1KRwFP)<h;3K|Lk000e1NJLTq002k;002k`1^@s6RqeA!0008)Nkl<Zc-rlp
zJ!lkB5Xbjo5RJhENp;ncaL8e5F@b<ZNOzbjs30Z?X~Zt1xF!}C!hwWzdacG(UXddZ
zR1i{G3I_&K3C2c|#4iL99RH7dl4aeuAF`XBx6U8_aK+5NnIHG|KHjj7BNDL{5uMA!
z8fg`Nm%3`hr&757S$GHj1>d$2&<-8xX_AmMoR_ZaKd}+eMfkI;iD&R>L+p9@GJH*2
zy)H+D^B%6)y3H<mAU#)*;4|<ocnkhUW_^V>;aT+#G{CuF`;FQQsRJKUe0_vp=L(Jo
z(sxQupYjCf1bmN@R|D>`9ZnCtLFwtS)sRs914>`_ZG|&O$ER7_;1uC6K8>gw^&9Ot
zpJa!wJinX0TB~Ripht#Aw_P#y7=Y@oylq3wLtEgK;GY=)QfroM0JIX&sQQw4Q@b4l
zP}`N)35Z*<0ni?0r#&0CSJo<V26Tl1plQy478n3p;0&nF08pJXpb`CNSC$@;(*Tiu
zKRgTY9sMOuog(bQHMrLkx60riwCbs;SJ%3$Ywze@3P}QL8j5LI0H|e%YbFI}Op`aM
z$`z2REg(+yG?oOQT8x6Y0Sc?9mge^QYnw3y)C!4h3LpU_fCP{L5<mh-00|%gB!C2v
z01`j~NB{{S0VIF~(D4FV3t42HF`)I3*tH}8g$-jaG6u955<8a!ph5VZVF5K<S!4{T
zNakTt)ze^7XJg~=Th9U?;3*3Z4ySajZmC|zlRkbPfUm+!@C|s#C#JywP{XILAzky5
z?qMLSGyE9_fM&Q4Ic#JIN3C6OxC=#&!q=%gwmTo8v1K|M^Zn!H2zm25R;@K^>*!2h
zghnTP@+KnW_2pr<NB{{S0VIF~kN^@u0_eX4q?<hmX>`~pXE-G1z{!iK`}_@)_5<?v
z1M)WW1gK2@4>3`*%GH3pD*4Z7t80~=JP8d|;1}=@-Q+8HGD6;@jwPL|u2FIFDl~Tz
j?*E6pewFKpL{{lHoe&_f%lZ}100000NkvXXu0mjfUb11W

literal 0
HcmV?d00001

diff --git a/android/app/src/main/res/layout/fragment_bot.xml b/android/app/src/main/res/layout/fragment_bot.xml
index d530ae6..abf2be5 100644
--- a/android/app/src/main/res/layout/fragment_bot.xml
+++ b/android/app/src/main/res/layout/fragment_bot.xml
@@ -7,8 +7,15 @@
 
     <!-- TODO: Update blank fragment layout -->
     <TextView
+        android:id="@+id/tv_hello"
         android:layout_width="match_parent"
         android:layout_height="match_parent"
         android:text="Bot fragment" />
 
+    <Button
+        android:id="@+id/btn"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="tombol"/>
+
 </FrameLayout>
\ No newline at end of file
diff --git a/android/app/src/main/res/layout/fragment_chat_bot.xml b/android/app/src/main/res/layout/fragment_chat_bot.xml
index ba28517..037c738 100644
--- a/android/app/src/main/res/layout/fragment_chat_bot.xml
+++ b/android/app/src/main/res/layout/fragment_chat_bot.xml
@@ -7,6 +7,7 @@
 
     <!-- TODO: Update blank fragment layout -->
     <TextView
+        android:id="@+id/tv_hello"
         android:layout_width="match_parent"
         android:layout_height="match_parent"
         android:text="@string/hello_blank_fragment" />
diff --git a/android/app/src/main/res/values-v21/strings.xml b/android/app/src/main/res/values-v21/strings.xml
new file mode 100644
index 0000000..7710771
--- /dev/null
+++ b/android/app/src/main/res/values-v21/strings.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+    <string name="notification_channel_description">Notifikasi dari chat</string>
+</resources>
\ No newline at end of file
diff --git a/android/app/src/main/res/values/strings.xml b/android/app/src/main/res/values/strings.xml
index ba5a5b4..a34e93c 100644
--- a/android/app/src/main/res/values/strings.xml
+++ b/android/app/src/main/res/values/strings.xml
@@ -25,5 +25,21 @@
     <string name="navigation_profile">Profile</string>
     <string name="navigation_home">Home</string>
     <string name="navigation_bot">Bot</string>
+
+    <!-- Notification ID -->
+    <string name="default_notification_channel_id">NOTIF_MANTAP_CHATMAN</string>
+    <string name="default_notification_channel_name" translatable="true">Message</string>
+    <string name="notification_channel_description">Notifikasi dari chat</string>
+
+
+    <string name="notification_title">You\'ve been notified!</string>
+    <string name="notification_text">This is your notification text.</string>
+    <string name="update">Update Notification</string>
+    <string name="notify_me">Notify Me!</string>
+    <string name="update_me">Update Me!</string>
+    <string name="cancel_me">Cancel Me!</string>
+    <string name="notification_updated">Notification Updated!</string>
+    <string name="notification_channel_name">Mascot Notification</string>
+
 </resources>
 
diff --git a/android/build.gradle b/android/build.gradle
index a031681..dc659fc 100644
--- a/android/build.gradle
+++ b/android/build.gradle
@@ -8,7 +8,7 @@ buildscript {
     }
     dependencies {
         classpath 'com.android.tools.build:gradle:3.3.1'
-        classpath 'com.google.gms:google-services:4.0.1'
+        classpath 'com.google.gms:google-services:4.2.0'
         // NOTE: Do not place your application dependencies here; they belong
         // in the individual module build.gradle files
     }
-- 
GitLab