質問編集履歴
1
Mnifestの追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -8,8 +8,34 @@
|
|
8
8
|
なぜこうなってしまうのか、解決法ご存知の方いらっしゃいましたらよろしくお願いいたします。
|
9
9
|
|
10
10
|
### 発生している問題・エラーメッセージ
|
11
|
+
```AndroidManifest
|
12
|
+
<?xml version="1.0" encoding="utf-8"?>
|
13
|
+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
14
|
+
package="com.example.android.instagramclone">
|
11
15
|
|
16
|
+
<application
|
17
|
+
android:allowBackup="true"
|
18
|
+
android:icon="@mipmap/ic_launcher"
|
19
|
+
android:label="@string/app_name"
|
20
|
+
android:roundIcon="@mipmap/ic_launcher_round"
|
21
|
+
android:supportsRtl="true"
|
22
|
+
android:theme="@style/AppTheme">
|
23
|
+
<activity android:name=".HomeActivity">
|
24
|
+
<intent-filter>
|
25
|
+
<action android:name="android.intent.action.MAIN" />
|
26
|
+
|
27
|
+
<category android:name="android.intent.category.LAUNCHER" />
|
28
|
+
</intent-filter>
|
29
|
+
</activity>
|
30
|
+
<activity android:name=".LikesActivity"></activity>
|
31
|
+
<activity android:name=".ProfileActivity"></activity>
|
32
|
+
<activity android:name=".SearchActivity"></activity>
|
33
|
+
<activity android:name=".ShareActivity"></activity>
|
34
|
+
</application>
|
35
|
+
|
36
|
+
</manifest>
|
12
37
|
```
|
38
|
+
```
|
13
39
|
2018-12-11 23:19:20.119 2240-2399/? E/ActivityManager: Sending non-protected broadcast com.fujitsu.mobile_phone.net.wifi.LOST_STREAM_AP from system 2240:system/1000 pkg android
|
14
40
|
java.lang.Throwable
|
15
41
|
at com.android.server.am.ActivityManagerService.checkBroadcastFromSystem(ActivityManagerService.java:18234)
|