| 1 | 1 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,55 @@ |
| 1 |
+<?xml version="1.0" encoding="utf-8"?><!-- |
|
| 2 |
+ ~ Copyright (c) 2023 Samson Achiaga |
|
| 3 |
+ ~ |
|
| 4 |
+ ~ Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 5 |
+ ~ you may not use this file except in compliance with the License. |
|
| 6 |
+ ~ You may obtain a copy of the License at |
|
| 7 |
+ ~ |
|
| 8 |
+ ~ http://www.apache.org/licenses/LICENSE-2.0 |
|
| 9 |
+ ~ |
|
| 10 |
+ ~ Unless required by applicable law or agreed to in writing, software |
|
| 11 |
+ ~ distributed under the License is distributed on an "AS IS" BASIS, |
|
| 12 |
+ ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 13 |
+ ~ See the License for the specific language governing permissions and |
|
| 14 |
+ ~ limitations under the License. |
|
| 15 |
+ --> |
|
| 16 |
+ |
|
| 17 |
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"> |
|
| 18 |
+ |
|
| 19 |
+ <uses-permission android:name="android.permission.POST_NOTIFICATIONS" /> |
|
| 20 |
+ <uses-permission android:name="android.permission.RECORD_AUDIO" /> |
|
| 21 |
+ <uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM" /> |
|
| 22 |
+ <uses-permission android:name="android.permission.VIBRATE" /> |
|
| 23 |
+ |
|
| 24 |
+ <application |
|
| 25 |
+ android:name=".AudioNotesApp" |
|
| 26 |
+ android:allowBackup="true" |
|
| 27 |
+ android:icon="@mipmap/ic_logo" |
|
| 28 |
+ android:label="@string/app_name" |
|
| 29 |
+ android:roundIcon="@mipmap/ic_logo_round" |
|
| 30 |
+ android:supportsRtl="true" |
|
| 31 |
+ android:theme="@style/Theme.AudioNote"> |
|
| 32 |
+ <activity |
|
| 33 |
+ android:name=".ui.main.MainActivity" |
|
| 34 |
+ android:exported="true"> |
|
| 35 |
+ <intent-filter> |
|
| 36 |
+ <action android:name="android.intent.action.MAIN" /> |
|
| 37 |
+ |
|
| 38 |
+ <category android:name="android.intent.category.LAUNCHER" /> |
|
| 39 |
+ </intent-filter> |
|
| 40 |
+ </activity> |
|
| 41 |
+ <receiver android:name=".ui.AlertReceiver" /> |
|
| 42 |
+ |
|
| 43 |
+ <provider |
|
| 44 |
+ android:name="androidx.core.content.FileProvider" |
|
| 45 |
+ android:authorities="com.certified.audionote.provider" |
|
| 46 |
+ android:exported="false" |
|
| 47 |
+ android:grantUriPermissions="true"> |
|
| 48 |
+ <meta-data |
|
| 49 |
+ android:name="android.support.FILE_PROVIDER_PATHS" |
|
| 50 |
+ android:resource="@xml/file_paths"> |
|
| 51 |
+ </meta-data> |
|
| 52 |
+ </provider> |
|
| 53 |
+ </application> |
|
| 54 |
+ |
|
| 55 |
+</manifest> |
|
| 0 | 56 |
\ No newline at end of file |