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

Side by Side Diff: chromecast/android/AndroidManifest.xml

Issue 1191373010: Chromecast: fix Android lint warnings, which are now build errors. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Created 5 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 <!--
3 Copyright 2015 The Chromium Authors. All rights reserved. Use of this
4 source code is governed by a BSD-style license that can be found in the
5 LICENSE file.
6 -->
7
8 <!--
9 This is a dummy manifest which is required by lint for determining min/target
10 SDK version.
11 -->
12 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
13 package="dummy.package">
14
15 <uses-sdk android:minSdkVersion="21" android:targetSdkVersion="22" />
16
17 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698