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

Unified Diff: blimp/client/app/android/AndroidManifest.xml.jinja2

Issue 2624903006: Remove all blimp client code. (Closed)
Patch Set: Update buildbot configuration Created 3 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « blimp/client/app/BUILD.gn ('k') | blimp/client/app/android/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/client/app/android/AndroidManifest.xml.jinja2
diff --git a/blimp/client/app/android/AndroidManifest.xml.jinja2 b/blimp/client/app/android/AndroidManifest.xml.jinja2
deleted file mode 100644
index 6da192a9084cc72393b19e6a619e21a588560b73..0000000000000000000000000000000000000000
--- a/blimp/client/app/android/AndroidManifest.xml.jinja2
+++ /dev/null
@@ -1,59 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-
-<!-- Copyright 2015 The Chromium Authors. All rights reserved.
- Use of this source code is governed by a BSD-style license that can be
- found in the LICENSE file. -->
-
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="{{manifest_package}}">
- <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="21" />
- <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
- <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
- <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
- <uses-permission android:name="android.permission.INTERNET"/>
- <uses-permission android:name="android.permission.GET_ACCOUNTS"/>
- <uses-permission android:name="android.permission.READ_SYNC_SETTINGS"/>
- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
- <uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS"/>
- <application android:name="org.chromium.blimp.app.BlimpApplication"
- android:label="Blimp"
- android:icon="@mipmap/app_icon">
- <activity android:name="org.chromium.blimp.app.BlimpRendererActivity"
- android:launchMode="singleTask"
- android:theme="@style/Theme.AppCompat.Light.NoActionBar"
- android:configChanges="orientation|keyboardHidden|keyboard|screenSize"
- android:windowSoftInputMode="adjustNothing"
- android:hardwareAccelerated="true">
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.DEFAULT" />
- <category android:name="android.intent.category.LAUNCHER" />
- <category android:name="android.intent.category.BROWSABLE" />
- <category android:name="android.intent.category.APP_BROWSER" />
- </intent-filter>
- <intent-filter>
- <action android:name="android.intent.action.VIEW" />
- <category android:name="android.intent.category.DEFAULT" />
- <category android:name="android.intent.category.BROWSABLE" />
- <data android:scheme="http" />
- <data android:scheme="https" />
- </intent-filter>
- </activity>
- <activity android:name="org.chromium.blimp.app.settings.Preferences"
- android:theme="@style/Theme.AppCompat.Light.DarkActionBar" />
- <activity android:name="org.chromium.blimp.app.BrowserRestartActivity"
- android:launchMode="singleInstance"
- android:exported="false"
- android:theme="@android:style/Theme.Translucent.NoTitleBar"
- android:excludeFromRecents="true"
- android:process=":browser_restart_process">
- </activity>
- <activity android:name="org.chromium.blimp.core.settings.MockPreferences"
- android:launchMode="singleTask"
- android:theme="@style/Theme.AppCompat.Light">
- </activity>
-
- <meta-data android:name="com.google.android.gms.version"
- android:value="@integer/google_play_services_version" />
- </application>
-</manifest>
« no previous file with comments | « blimp/client/app/BUILD.gn ('k') | blimp/client/app/android/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698