Я создаю базовое приложение, в котором оно может действовать как номеронабиратель (оно не сможет совершать звонки).
Так что в AndroidManifest.xml я получаю эту ошибку "class" или "interface" ожидаемый.
Вот код в файле 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"
package="com.example.falsephone">
<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"
tools:ignore="GoogleAppIndexingWarning">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" /> <!-- Problem in this line -->
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.DIAL" /> <!-- Problem in this line -->
<category android:name="android.intent.catogory.DEFAULT"/>
</intent-filter>
</activity>
</application>
</manifest>
и файл MainActivity.java
package com.example.falsephone;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
public class MainActivity extends AppCompatActivity
{
@Override
protected void onCreate ( Bundle savedInstanceState )
{
super.onCreate( savedInstanceState );
setContentView( R.layout.activity_main );
}
}