fix run error

This commit is contained in:
reyniersbram 2023-04-06 21:21:40 +02:00
parent 46824f4498
commit 1765bfd20c
3 changed files with 4 additions and 1 deletions

View file

@ -11,6 +11,7 @@ plugins {
// Firebase // Firebase
id 'com.google.gms.google-services' id 'com.google.gms.google-services'
id 'com.google.firebase.crashlytics'
} }
android { android {

View file

@ -12,7 +12,7 @@
android:theme="@style/Theme.Studeez" android:theme="@style/Theme.Studeez"
tools:targetApi="31"> tools:targetApi="31">
<activity <activity
android:name=".MainActivity" android:name=".activities.MainActivity"
android:exported="true" android:exported="true"
android:label="@string/app_name" android:label="@string/app_name"
android:theme="@style/Theme.Studeez"> android:theme="@style/Theme.Studeez">

View file

@ -9,6 +9,8 @@ buildscript {
dependencies { dependencies {
classpath 'com.google.gms:google-services:4.3.15' classpath 'com.google.gms:google-services:4.3.15'
classpath 'com.android.tools.build:gradle:7.2.0'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.4'
} }
}// 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 {