xml
1コード 2 3<?xml version="1.0" encoding="utf-8"?> 4<manifest xmlns:android="http://schemas.android.com/apk/res/android" 5 package="com.example.myqrapplication"> 6 <applicationdn 7 android:allowBackup="true" 8 android:icon="@mipmap/ic_launcher" 9 android:label="@string/app_name" 10 android:roundIcon="@mipmap/ic_launcher_round" 11 android:supportsRtl="true" 12 android:theme="@style/AppTheme"> 13 <activity android:name=".CameraActivity" android:label="@string⁄app_name"> 14 <intent-filter> 15 <action android:name="android.intent.action.MAIN" /> 16 <category android:name="android.intent.category.LAUNCHER" /> 17 </intent-filter> 18 </activity> 19 </applicationdn> 20</manifest>
error running app Default Activity not found
の解決法として
これを参考にして以下を追加しましたが結果はその下のエラー文が出ました。
xml
1コード 2 <intent-filter> 3 <action android:name="android.intent.action.MAIN" /> 4 <category android:name="android.intent.category.LAUNCHER" /> 5 </intent-filter>
コード 16:21: AAPT: error: unexpected element <applicationdn> found in <manifest>.
続いてキャッシュ解放も試みましたが、解決できませんでした。
どうしたら解決できるか分かる方がいましたら教えていただけますでしょうか。よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/08 06:21