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