source: dispositivos_moviles/TibisayMovil/AndroidManifest.xml @ 08c45bd

Last change on this file since 08c45bd was 08c45bd, checked in by Jose Ruiz <joseruiz@…>, 11 years ago

Cambios de diseño en barra de titulo y menu

  • Property mode set to 100644
File size: 947 bytes
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3    package="ve.gob.cenditel.tibisaymovil"
4    android:versionCode="1"
5    android:versionName="1.0" >
6
7    <uses-sdk
8        android:minSdkVersion="10"
9        android:targetSdkVersion="14" />
10
11    <application
12        android:allowBackup="true"
13        android:icon="@drawable/ic_launcher"
14        android:label="@string/app_name"
15        android:theme="@style/tibisayTheme" >
16        <activity
17            android:name="ve.gob.cenditel.tibisaymovil.TibisayMovilActivity"
18            android:label="@string/app_name" >
19            <intent-filter>
20                <action android:name="android.intent.action.MAIN" />
21
22                <category android:name="android.intent.category.LAUNCHER" />
23            </intent-filter>
24        </activity>
25        <activity android:name="KeyChainActivity"></activity>
26    </application>
27
28</manifest>
Note: See TracBrowser for help on using the repository browser.