Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(634)

Side by Side Diff: samples/github/android/GithubMock/app/src/main/AndroidManifest.xml

Issue 2035023003: Remove service-compiler related code. (Closed) Base URL: git@github.com:dartino/sdk.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698