Я случайно что-то изменил в файле манифестов. Я удалил абзац, в котором были meta_Data и что-то с помощью disturce. Я не могу восстановить его, поэтому Android Studio не запускает приложение на телефоне. Я думаю вот почему. Если есть другая причина или решение для кого-то, я был бы счастлив. Спасибо.
эта ошибка:
Installation did not succeed. The application could not be installed: INSTALL_PARSE_FAILED_UNEXPECTED_EXCEPTION Installation failed due to: 'null'
> <?xml version="1.0" encoding="utf-8"?> <manifest
> xmlns:android="http://schemas.android.com/apk/res/android"
> package="com.lee.app1_new">
>
> <uses-permission android:name="android.permission.INTERNET" />
> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
>
> <application
> android:allowBackup="true"
> android:icon="@mipmap/ic_launcher"
> android:label="@string/app_name"
> android:roundIcon="@mipmap/ic_launcher_round"
> android:supportsRtl="true"
> android:theme="@style/AppTheme">
>
>
> <activity android:name=".MainActivity">
> <intent-filter>
> <action android:name="android.intent.action.MAIN" />
>
> <category android:name="android.intent.category.LAUNCHER" />
> </intent-filter>
> </activity>
> <activity android:name=".newRecipe" />
> <activity android:name=".category" />
> <activity android:name=".recipe_cake" />
> <activity android:name=".full_recipe_cake" />
> <activity android:name=".add_recipe" />
> <activity android:name=".my_recipes" />
> </ap
plication>
</manifest>