1<?xml version="1.0" encoding="utf-8"?> 2<manifest xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:tools="http://schemas.android.com/tools"> 4 5 <uses-permission android:name="android.permission.READ_CONTACTS" /> 6 <uses-permission android:name="android.permission.WRITE_CONTACTS" /> 7 8 <application 9 android:name=".MyApplication" 10 android:allowBackup="true" 11 android:icon="@mipmap/ic_launcher" 12 android:label="@string/app_name" 13 android:supportsRtl="true" 14 android:taskAffinity="" 15 android:theme="@style/AppTheme" 16 tools:targetApi="33"> 17 <activity 18 android:name=".main.MainActivity" 19 android:exported="true"> 20 <intent-filter> 21 <action android:name="android.intent.action.MAIN" /> 22 23 <category android:name="android.intent.category.LAUNCHER" /> 24 </intent-filter> 25 26 <meta-data 27 android:name="android.app.lib_name" 28 android:value="" /> 29 </activity> 30 <activity 31 android:name=".result.ResultActivity" 32 android:exported="false"> 33 <intent-filter> 34 <action android:name="android.intent.action.DEFAULT" /> 35 </intent-filter> 36 </activity> 37 </application> 38 39</manifest> 40