~humpolec-team/humpolec/UbuntuInstaller-refactor

« back to all changes in this revision

Viewing changes to AndroidManifest.xml

  • Committer: Ondrej Kubik
  • Date: 2013-12-12 02:02:35 UTC
  • Revision ID: ondrej.kubik@canonical.com-20131212020235-ipkk7w5yh248anxr
New UI with two views
added progress bars for download and install
added uninstall
several usecases improvement

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<?xml version="1.0" encoding="utf-8"?>
2
2
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3
 
    package="com.canonical.ubuntuinstaller"
 
3
    package="com.canonical.ubuntu.installer"
4
4
    android:versionCode="1"
5
5
    android:versionName="1.0" >
6
6
 
28
28
        android:icon="@drawable/ic_launcher"
29
29
        android:label="@string/app_name"
30
30
        android:screenOrientation="portrait"
31
 
         android:theme="@android:style/Theme.Holo" >
 
31
        android:theme="@android:style/Theme.Holo" >
32
32
        <activity
33
 
            android:name="com.canonical.ubuntuinstaller.MainActivity"
 
33
            android:name=".InstallActivity"
34
34
            android:screenOrientation="portrait"
35
35
            android:label="@string/app_name" >
36
36
            <intent-filter>
39
39
                <category android:name="android.intent.category.LAUNCHER" />
40
40
            </intent-filter>
41
41
        </activity>
42
 
        <service android:name="com.canonical.ubuntuinstaller.UbuntuInstallService">
 
42
        <activity
 
43
            android:name=".LaunchActivity"
 
44
            android:screenOrientation="portrait"
 
45
            android:label="@string/app_name">
 
46
        </activity>
 
47
        
 
48
        <service android:name="com.canonical.ubuntu.installer.UbuntuInstallService">
43
49
            <intent-filter>
44
50
                <action android:name="com.canonical.ubuntuinstaller.UbuntuInstallService.GET_CHANNEL_LIST" />
45
51
                <action android:name="com.canonical.ubuntuinstaller.UbuntuInstallService.DOWNLOAD_RELEASE" />