OLD | NEW |
| (Empty) |
1 <?xml version="1.0" encoding="utf-8"?> | |
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
3 package="com.google.dartino.githubmock" > | |
4 <uses-permission android:name="android.permission.INTERNET" /> | |
5 | |
6 <application | |
7 android:allowBackup="true" | |
8 android:icon="@mipmap/ic_launcher" | |
9 android:label="@string/app_name" | |
10 android:theme="@style/AppTheme" > | |
11 | |
12 <service | |
13 android:name=".GithubMockServer" | |
14 android:exported="true" > | |
15 <intent-filter> | |
16 <action android:name="com.google.dartino.githubmock.action.ensur
eServer" /> | |
17 </intent-filter> | |
18 </service> | |
19 | |
20 </application> | |
21 | |
22 </manifest> | |
OLD | NEW |