-
Notifications
You must be signed in to change notification settings - Fork 31
/
AndroidManifest.xml
36 lines (29 loc) · 1.04 KB
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<manifest package="jp.satorufujiwara.kotlin"
xmlns:android="http://schemas.android.com/apk/res/android"
>
<uses-permission android:name="android.permission.INTERNET" />
<application
android:name=".KotlinApp"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
>
<!-- Glide -->
<meta-data
android:name="jp.satorufujiwara.kotlin.AppGlideModule"
android:value="GlideModule" />
<!-- fabric -->
<meta-data
android:name="io.fabric.ApiKey"
android:value="" />
<activity
android:name=".ui.main.MainActivity"
>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>