diff options
Diffstat (limited to 'client/Piztor/AndroidManifest.xml')
-rw-r--r-- | client/Piztor/AndroidManifest.xml | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/client/Piztor/AndroidManifest.xml b/client/Piztor/AndroidManifest.xml index 63cb8ff..b18d8e2 100644 --- a/client/Piztor/AndroidManifest.xml +++ b/client/Piztor/AndroidManifest.xml @@ -12,9 +12,9 @@ android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" - android:theme="@style/AppTheme" > + android:theme="@android:style/Theme.Black.NoTitleBar" > <activity - android:name="com.macaroon.piztor.Main" + android:name="com.macaroon.piztor.InitAct" android:label="@string/app_name" > <intent-filter> <action android:name="android.intent.action.MAIN" /> @@ -23,14 +23,20 @@ </intent-filter> </activity> <activity - android:name="com.macaroon.piztor.InitAct" - android:label="@string/title_activity_init" > - <intent-filter> - <action android:name="android.intent.action.MAIN" /> - - <category android:name="android.intent.category.LAUNCHER" /> - </intent-filter> + android:name="com.macaroon.piztor.Login" + android:label="@string/title_activity_login" > + </activity> + <activity + android:name="com.macaroon.piztor.Main" + android:label="@string/title_activity_main" > + </activity> + <activity + android:name="com.macaroon.piztor.Setting" + android:label="@string/title_activity_setting" > </activity> </application> + <uses-permission android:name="android.permission.INTERNET" /> + <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> + </manifest> |