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

Side by Side Diff: platform_tools/android/examples/hello_skia_app/AndroidManifest.xml

Issue 16336004: create simple skia app for android using jni (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: remove binary files Created 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | platform_tools/android/examples/hello_skia_app/README » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="com.example"
4 android:versionCode="1"
5 android:versionName="1.0">
6 <uses-sdk android:minSdkVersion="15" />
7 <application android:label="@string/app_name" android:icon="@drawable/ic_lau ncher" android:debuggable="true">
8 <activity android:name="HelloSkiaActivity"
9 android:label="@string/app_name"
10 android:theme="@android:style/Theme.Black.NoTitleBar">
11 <intent-filter>
12 <action android:name="android.intent.action.MAIN" />
13 <category android:name="android.intent.category.LAUNCHER" />
14 </intent-filter>
15 </activity>
16 </application>
17 </manifest>
OLDNEW
« no previous file with comments | « no previous file | platform_tools/android/examples/hello_skia_app/README » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698