質問編集履歴

1

コードの追加

2017/06/21 05:13

投稿

daidaidada
daidaidada

スコア13

test CHANGED
File without changes
test CHANGED
@@ -60,4 +60,90 @@
60
60
 
61
61
  at java.lang.Thread.run(Thread.java:761) 
62
62
 
63
- at com.google.android.apps.gsa.shared.util.concurrent.a.ad$1.run(SourceFile:85) 
63
+ at com.google.android.apps.gsa.shared.util.concurrent.a.ad$1.run(SourceFile:85)
64
+
65
+
66
+
67
+
68
+
69
+
70
+
71
+ androidManifest.xml
72
+
73
+ ```ここに言語を入力xml
74
+
75
+ <?xml version="1.0" encoding="utf-8"?>
76
+
77
+ <manifest xmlns:android="http://schemas.android.com/apk/res/android"
78
+
79
+ xmlns:tools="http://schemas.android.com/tools"
80
+
81
+ package="com.example.tominagataichi.fanp">
82
+
83
+ <uses-sdk android:minSdkVersion="15" android:targetSdkVersion="16"
84
+
85
+ tools:overrideLibrary="com.facebook" />
86
+
87
+ <uses-permission android:name="android.permission.INTERNET"/>
88
+
89
+ <application
90
+
91
+ android:allowBackup="true"
92
+
93
+ android:icon="@mipmap/ic_launcher"
94
+
95
+ android:label="@string/app_name"
96
+
97
+ android:supportsRtl="true"
98
+
99
+ android:theme="@style/AppTheme"
100
+
101
+ >
102
+
103
+ <activity android:name=".MainActivity">
104
+
105
+ <intent-filter>
106
+
107
+ <action android:name="android.intent.action.MAIN" />
108
+
109
+ <category android:name="android.intent.category.LAUNCHER" />
110
+
111
+ </intent-filter>
112
+
113
+ </activity>
114
+
115
+ <activity android:name="com.facebook.FacebookActivity"
116
+
117
+ android:configChanges=
118
+
119
+ "keyboard|keyboardHidden|screenLayout|screenSize|orientation"
120
+
121
+ android:theme="@android:style/Theme.Translucent.NoTitleBar"
122
+
123
+ android:label="@string/app_name"
124
+
125
+ tools:replace="android:theme" />
126
+
127
+ <meta-data
128
+
129
+ android:name="com.facebook.sdk.ApplicationId"
130
+
131
+ android:value="@string/app_id"
132
+
133
+ tools:replace="android:value" />
134
+
135
+ </application>
136
+
137
+ </manifest>
138
+
139
+
140
+
141
+ ```
142
+
143
+ ![イメージ説明](ff28f3e235fd520f9dca4d0636a2d804.png)
144
+
145
+
146
+
147
+
148
+
149
+