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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | platform_tools/android/examples/hello_skia_app/README » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: platform_tools/android/examples/hello_skia_app/AndroidManifest.xml
diff --git a/platform_tools/android/examples/hello_skia_app/AndroidManifest.xml b/platform_tools/android/examples/hello_skia_app/AndroidManifest.xml
new file mode 100644
index 0000000000000000000000000000000000000000..1fc187f581738dd6488f1e06e328c23509902f8a
--- /dev/null
+++ b/platform_tools/android/examples/hello_skia_app/AndroidManifest.xml
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.example"
+ android:versionCode="1"
+ android:versionName="1.0">
+ <uses-sdk android:minSdkVersion="15" />
+ <application android:label="@string/app_name" android:icon="@drawable/ic_launcher" android:debuggable="true">
+ <activity android:name="HelloSkiaActivity"
+ android:label="@string/app_name"
+ android:theme="@android:style/Theme.Black.NoTitleBar">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+ </application>
+</manifest>
« 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