My favorites | Sign in
Project Home Downloads Wiki Issues Source
Checkout   Browse   Changes    
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?xml version="1.0" encoding="utf-8"?>
<!--
/* * G2Android * Copyright (c) 2009 Anthony Dahanne * This program is
free software; you can redistribute it and/or modify * it under the
terms of the GNU General Public License as published by * the Free
Software Foundation; either version 2 of the License, or * (at your
option) any later version. * * This program is distributed in the hope
that it will be useful, but * WITHOUT ANY WARRANTY; without even the
implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR
PURPOSE. See the GNU General Public License * for more details. * *
You should have received a copy of the GNU General Public License
along * with this program; if not, write to the Free Software
Foundation, Inc., * 59 Temple Place, Suite 330, Boston, MA 02111-1307
USA */
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.dahanne.android.g2android" android:versionCode="15" android:versionName="1.6.3">
<application android:icon="@drawable/icon" android:label="@string/app_name" android:name="G2AndroidApplication">
<activity android:name=".activity.Start" 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=".activity.Settings" android:label="@string/settings_title" />
<activity android:name=".activity.About" android:label="@string/about_title" android:theme="@android:style/Theme.Dialog" />
<activity android:name=".activity.ShowAlbums" android:label="@string/show_albums_title" />
<activity android:name=".activity.ShowGallery" android:label="@string/show_gallery_title" android:configChanges="keyboardHidden|orientation" />
<activity android:name=".activity.FullImage" android:label="@string/full_image_title" android:theme="@android:style/Theme.NoTitleBar.Fullscreen" />
<activity android:name=".activity.FirstTime" android:label="@string/firsttime_title" />
<activity android:name=".activity.ChooseSubAlbumName" android:label="@string/choose_subalbum_name" android:theme="@android:style/Theme.Dialog" />
<activity android:name=".activity.ChoosePhotoNumber" android:label="@string/choose_photo_number_title" android:theme="@android:style/Theme.Dialog" />
<activity android:name=".activity.UploadPhoto" android:label="@string/upload_photo_title" >
<intent-filter>
<action android:name="android.intent.action.SEND" />
<action android:name="android.intent.action.SEND_MULTIPLE" />
<category
android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
</intent-filter>
</activity>

</application>
<uses-permission android:name="android.permission.INTERNET" />
<uses-sdk android:minSdkVersion="3" />

<uses-permission android:name="android.permission.CAMERA"></uses-permission>
</manifest>

Change log

r109 by anthony.dahanne on Jan 16, 2011   Diff
last version, 1.6.3 : urging users to
switch to ReGalAndroid
Go to: 
Project members, sign in to write a code review

Older revisions

r103 by anthony.dahanne on Oct 3, 2010   Diff
versi1.6.2 : critical bug fix for
cache paths #75
r102 by anthony.dahanne on Oct 2, 2010   Diff
version 1.6.1
r90 by anthony.dahanne on Aug 25, 2010   Diff
g2android  release 1.6.0 : fixed
issues #19, #45, #46, #48, #49, #57
All revisions of this file

File info

Size: 2945 bytes, 48 lines
Powered by Google Project Hosting