Skip to content

Commit cba0cb6

Browse files
author
cyBerta
committed
names including package structure
1 parent 53cba56 commit cba0cb6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

apk/AndroidManifest.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
android:label="@string/app_name"
1414
android:name="com.android.python27.ScriptApplication">
1515

16-
<activity android:name=".ScriptActivity"
16+
<activity android:name="com.android.python27.ScriptActivity"
1717
android:configChanges="keyboardHidden|orientation"
1818
android:theme="@android:style/Theme.Translucent.NoTitleBar">
1919

@@ -29,19 +29,19 @@
2929

3030
</activity>
3131

32-
<service android:name="ScriptService">
32+
<service android:name="com.android.python27.ScriptService">
3333
<intent-filter>
3434
<action android:name="com.android.python27.ScriptService" />
3535
</intent-filter>
3636
</service>
3737

38-
<service android:name="BackgroundScriptService">
38+
<service android:name="com.android.python27.BackgroundScriptService">
3939
<intent-filter>
4040
<action android:name="com.android.python27.BackgroundScriptService" />
4141
</intent-filter>
4242
</service>
4343

44-
<service android:name=".RpcServerService" />
44+
<service android:name="com.android.python27.RpcServerService" />
4545

4646
<activity android:configChanges="keyboardHidden|orientation"
4747
android:name="com.googlecode.android_scripting.activity.FutureActivity"
@@ -52,7 +52,7 @@
5252
android:name="com.android.python27.DialogActivity"/>
5353

5454
<activity
55-
android:name=".RpcServerLauncher"
55+
android:name="com.android.python27.RpcServerLauncher"
5656
android:taskAffinity=""
5757
android:theme="@android:style/Theme.Translucent.NoTitleBar">
5858
<intent-filter>

0 commit comments

Comments
 (0)