9
0
mirror of https://gitee.com/shuto/customCamera.git synced 2026-05-02 00:07:24 +08:00

Mise en place de la structure du projet pour en faire un plugin phonegap.

This commit is contained in:
Christophe Boucaut
2014-10-31 16:31:03 +01:00
parent 3887dd7090
commit aff441f62f
26 changed files with 0 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.geneanet.testcustomcamera"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="14" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".CameraView"
android:label="@string/title_activity_camera_view"
android:screenOrientation="fullSensor">
</activity>
</application>
<uses-permission android:name="android.permission.CAMERA" />
</manifest>