64 lines
2.7 KiB
XML
64 lines
2.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
|
|
|
<application
|
|
android:name=".app.SodaLiveApp"
|
|
android:allowBackup="true"
|
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
|
android:fullBackupContent="@xml/backup_rules"
|
|
android:hardwareAccelerated="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:largeHeap="true"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/Theme.SodaLive"
|
|
android:usesCleartextTraffic="true"
|
|
tools:targetApi="31">
|
|
<activity
|
|
android:name=".splash.SplashActivity"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:name=".main.MainActivity" />
|
|
<activity android:name=".user.login.LoginActivity" />
|
|
<activity android:name=".user.signup.SignUpActivity" />
|
|
<activity android:name=".settings.terms.TermsActivity" />
|
|
<activity android:name=".user.find_password.FindPasswordActivity" />
|
|
<activity android:name=".mypage.can.status.CanStatusActivity" />
|
|
<activity android:name=".mypage.can.charge.CanChargeActivity" />
|
|
<activity android:name=".mypage.can.payment.CanPaymentActivity" />
|
|
|
|
<activity
|
|
android:name="com.google.android.gms.oss.licenses.OssLicensesMenuActivity"
|
|
android:theme="@style/Theme.AppCompat.DayNight" />
|
|
<activity
|
|
android:name="com.google.android.gms.oss.licenses.OssLicensesActivity"
|
|
android:theme="@style/Theme.AppCompat.DayNight" />
|
|
|
|
<!-- [START firebase_service] -->
|
|
<service
|
|
android:name=".fcm.SodaFirebaseMessagingService"
|
|
android:exported="false">
|
|
<intent-filter>
|
|
<action android:name="com.google.firebase.MESSAGING_EVENT" />
|
|
</intent-filter>
|
|
</service>
|
|
<!-- [END firebase_service] -->
|
|
|
|
<!-- [START fcm_default_channel] -->
|
|
<meta-data
|
|
android:name="com.google.firebase.messaging.default_notification_channel_id"
|
|
android:value="@string/default_notification_channel_id" />
|
|
<!-- [END fcm_default_channel] -->
|
|
</application>
|
|
</manifest>
|