Skip to content

Commit a3ab222

Browse files
author
Shushant
committed
Updated version code
1 parent 884173f commit a3ab222

File tree

1 file changed

+7
-13
lines changed

1 file changed

+7
-13
lines changed

Diff for: AndroidManifest.xml

+7-13
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
<?xml version="1.0" encoding="utf-8"?>
22

3-
<manifest
4-
xmlns:android="http://schemas.android.com/apk/res/android"
3+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
54
package="org.opendroidphp"
6-
android:versionCode="16000"
7-
android:versionName="1.6.0">
5+
android:versionCode="17000"
6+
android:versionName="1.7.0">
87

98
<uses-sdk
109
android:maxSdkVersion="19"
@@ -19,14 +18,14 @@
1918
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
2019

2120
<application
22-
android:name="org.opendroidphp.app.BaseApplication"
21+
android:name=".app.AppController"
2322
android:allowBackup="true"
2423
android:icon="@drawable/ic_launcher"
2524
android:label="@string/app_name"
2625
android:theme="@style/Theme.DroidPHP">
2726

2827
<activity
29-
android:name="org.opendroidphp.app.HomeActivity"
28+
android:name=".app.ui.ActivityConsole"
3029
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
3130
android:label="@string/app_name">
3231
<intent-filter>
@@ -38,15 +37,9 @@
3837
</activity>
3938

4039
<activity
41-
android:name="org.opendroidphp.app.Preferences"
40+
android:name=".app.ui.SettingActivity"
4241
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
4342
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" />
5043

5144
<service
5245
android:name="org.opendroidphp.app.services.ServerService"
@@ -56,6 +49,7 @@
5649
<receiver android:name="org.opendroidphp.app.services.OnBootReceiver">
5750
<intent-filter>
5851
<action android:name="android.intent.action.BOOT_COMPLETED" />
52+
<action android:name="android.intent.action.PACKAGE_REMOVED" />
5953

6054
<category android:name="android.intent.category.HOME" />
6155
</intent-filter>

0 commit comments

Comments
 (0)