|
1 | 1 | <?xml version="1.0" encoding="utf-8"?>
|
2 | 2 |
|
3 |
| -<manifest |
4 |
| - xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 | +<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
5 | 4 | package="org.opendroidphp"
|
6 |
| - android:versionCode="16000" |
7 |
| - android:versionName="1.6.0"> |
| 5 | + android:versionCode="17000" |
| 6 | + android:versionName="1.7.0"> |
8 | 7 |
|
9 | 8 | <uses-sdk
|
10 | 9 | android:maxSdkVersion="19"
|
|
19 | 18 | <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
20 | 19 |
|
21 | 20 | <application
|
22 |
| - android:name="org.opendroidphp.app.BaseApplication" |
| 21 | + android:name=".app.AppController" |
23 | 22 | android:allowBackup="true"
|
24 | 23 | android:icon="@drawable/ic_launcher"
|
25 | 24 | android:label="@string/app_name"
|
26 | 25 | android:theme="@style/Theme.DroidPHP">
|
27 | 26 |
|
28 | 27 | <activity
|
29 |
| - android:name="org.opendroidphp.app.HomeActivity" |
| 28 | + android:name=".app.ui.ActivityConsole" |
30 | 29 | android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
|
31 | 30 | android:label="@string/app_name">
|
32 | 31 | <intent-filter>
|
|
38 | 37 | </activity>
|
39 | 38 |
|
40 | 39 | <activity
|
41 |
| - android:name="org.opendroidphp.app.Preferences" |
| 40 | + android:name=".app.ui.SettingActivity" |
42 | 41 | android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
|
43 | 42 | android:label="@string/settings" />
|
44 |
| - <activity |
45 |
| - android:name="org.opendroidphp.app.SQLShellActivity" |
46 |
| - android:label="SQL Shell" /> |
47 |
| - <activity |
48 |
| - android:name="org.opendroidphp.app.ExtensionActivity" |
49 |
| - android:label="Extensions" /> |
50 | 43 |
|
51 | 44 | <service
|
52 | 45 | android:name="org.opendroidphp.app.services.ServerService"
|
|
56 | 49 | <receiver android:name="org.opendroidphp.app.services.OnBootReceiver">
|
57 | 50 | <intent-filter>
|
58 | 51 | <action android:name="android.intent.action.BOOT_COMPLETED" />
|
| 52 | + <action android:name="android.intent.action.PACKAGE_REMOVED" /> |
59 | 53 |
|
60 | 54 | <category android:name="android.intent.category.HOME" />
|
61 | 55 | </intent-filter>
|
|
0 commit comments