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

Side by Side Diff: remoting/android/java/AndroidManifest.xml.jinja2

Issue 2272883003: [remoting android] Explicitly add 'exported' attribute in the manifest. (Closed)
Patch Set: Created 4 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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="{{ APK_PACKAGE_NAME }}"> 3 package="{{ APK_PACKAGE_NAME }}">
4 <uses-sdk android:minSdkVersion="14" 4 <uses-sdk android:minSdkVersion="14"
5 android:targetSdkVersion="23"/> 5 android:targetSdkVersion="23"/>
6 <uses-permission android:name="android.permission.GET_ACCOUNTS"/> 6 <uses-permission android:name="android.permission.GET_ACCOUNTS"/>
7 <uses-permission android:name="android.permission.INTERNET"/> 7 <uses-permission android:name="android.permission.INTERNET"/>
8 8
9 <application android:label="@string/product_name_android" 9 <application android:label="@string/product_name_android"
10 android:name="org.chromium.chromoting.RemotingApplication" 10 android:name="org.chromium.chromoting.RemotingApplication"
11 android:icon="@mipmap/logo_remote_desktop_launcher" 11 android:icon="@mipmap/logo_remote_desktop_launcher"
12 android:theme="@style/BaseTheme" 12 android:theme="@style/BaseTheme"
13 android:allowBackup="false"> 13 android:allowBackup="false">
14 <meta-data 14 <meta-data
15 android:name="com.google.android.gms.version" 15 android:name="com.google.android.gms.version"
16 android:value="@integer/google_play_services_version"/> 16 android:value="@integer/google_play_services_version"/>
17 <activity android:name="org.chromium.chromoting.Chromoting" 17 <activity
18 android:configChanges="orientation|screenSize" 18 android:name="org.chromium.chromoting.Chromoting"
19 android:theme="@style/BaseTheme.NavigationDrawer" 19 android:configChanges="orientation|screenSize"
20 android:launchMode="singleTask"> 20 android:exported="true"
21 android:theme="@style/BaseTheme.NavigationDrawer"
22 android:launchMode="singleTask">
21 <intent-filter> 23 <intent-filter>
22 <action android:name="android.intent.action.MAIN"/> 24 <action android:name="android.intent.action.MAIN"/>
23 <category android:name="android.intent.category.LAUNCHER"/> 25 <category android:name="android.intent.category.LAUNCHER"/>
24 </intent-filter> 26 </intent-filter>
25 </activity> 27 </activity>
26 <activity 28 <activity
27 android:name="org.chromium.chromoting.ThirdPartyTokenFetcher$OAuthRe directActivity" 29 android:name="org.chromium.chromoting.ThirdPartyTokenFetcher$OAuthRe directActivity"
28 android:enabled="false" 30 android:enabled="false"
31 android:exported="true"
29 android:noHistory="true"> 32 android:noHistory="true">
30 <!-- TODO(kevinp): suppress once crbug.com/501593 is fixed. --> 33 <!-- TODO(kevinp): suppress once crbug.com/501593 is fixed. -->
31 <!--suppress AppIndexingError --> 34 <!--suppress AppIndexingError -->
32 <intent-filter> 35 <intent-filter>
33 <action android:name="android.intent.action.VIEW"/> 36 <action android:name="android.intent.action.VIEW"/>
34 <category android:name="android.intent.category.DEFAULT"/> 37 <category android:name="android.intent.category.DEFAULT"/>
35 <category android:name="android.intent.category.BROWSABLE"/> 38 <category android:name="android.intent.category.BROWSABLE"/>
36 <data android:scheme="{{ APK_PACKAGE_NAME }}"/> 39 <data android:scheme="{{ APK_PACKAGE_NAME }}"/>
37 <data android:path="/oauthredirect/"/> 40 <data android:path="/oauthredirect/"/>
38 </intent-filter> 41 </intent-filter>
39 </activity> 42 </activity>
40 <activity android:name="org.chromium.chromoting.Desktop" 43 <activity
41 android:windowSoftInputMode="adjustResize"/> 44 android:name="org.chromium.chromoting.Desktop"
42 <activity android:name="org.chromium.chromoting.help.HelpActivity" 45 android:exported="false"
43 android:configChanges="orientation|screenSize" 46 android:windowSoftInputMode="adjustResize"/>
44 android:uiOptions="splitActionBarWhenNarrow"> 47 <activity
45 </activity> 48 android:name="org.chromium.chromoting.help.HelpActivity"
46 <activity android:name="org.chromium.chromoting.help.CreditsActivity"/> 49 android:configChanges="orientation|screenSize"
50 android:exported="false"
51 android:uiOptions="splitActionBarWhenNarrow"/>
52 <activity
53 android:name="org.chromium.chromoting.help.CreditsActivity"
54 android:exported="false"/>
47 </application> 55 </application>
48 </manifest> 56 </manifest>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698