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

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

Issue 2384803002: [Remoting Android] Export CreditsActivity (Closed)
Patch Set: Created 4 years, 2 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"
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 android:name="org.chromium.chromoting.Desktop" 44 android:name="org.chromium.chromoting.Desktop"
45 android:exported="false" 45 android:exported="false"
46 android:windowSoftInputMode="adjustResize"/> 46 android:windowSoftInputMode="adjustResize"/>
47 <activity 47 <activity
48 android:name="org.chromium.chromoting.help.HelpActivity" 48 android:name="org.chromium.chromoting.help.HelpActivity"
49 android:configChanges="orientation|screenSize" 49 android:configChanges="orientation|screenSize"
50 android:exported="false" 50 android:exported="false"
51 android:uiOptions="splitActionBarWhenNarrow"/> 51 android:uiOptions="splitActionBarWhenNarrow"/>
52 <activity 52 <activity
53 android:name="org.chromium.chromoting.help.CreditsActivity" 53 android:name="org.chromium.chromoting.help.CreditsActivity"
54 android:exported="false"/> 54 android:exported="true"/>
55 </application> 55 </application>
56 </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