Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
I finally have some time this evening to try what I wanted to do earlier. I'm going to see if I can re-write some changes to the LG Motion root method (systembackuptest.apk). I will post back with results.
http://androidforums.com/spectrum-a...20-bootloader-pwnage-tool-lg-spectrum-4g.html what about this I heard the spectrum 2 and this phone have the same bootloader and they unlocked there bootloader with this so I'm just throwing it out there
"ro.kernel.qemu=1"
<?xml version="1.0" encoding="utf-8"?>
<manifest android:sharedUserId="android.uid.system" android:versionCode="110" android:versionName="1.1.0.110" package="com.spritemobile.system.backup"
xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.SET_PREFERRED_APPLICATIONS" />
[B]<permission android:label="@string/permission_label" android:name="com.spritemobile.system.backup.USE_SERVICE" android:protectionLevel="signature" android:description="@string/permission_desc" />[/B]
<application android:label="@string/app_name" android:icon="@drawable/icon" android:debuggable="false">
[B]<service android:name="com.spritemobile.system.backup.SystemService" android:permission="com.spritemobile.system.backup.USE_SERVICE">[/B]
<intent-filter>
<action android:name="com.spritemobile.system.backup.ISystemService" />
</intent-filter>
</service>
</application>
</manifest>
<?xml version="1.0" encoding="utf-8"?>
<manifest android:versionCode="1" android:versionName="1.0" package="com.example.systembackuptest"
[B]<uses-permission android:name="com.spritemobile.system.backup.USE_SERVICE" /> [/B]
xmlns:android="http://schemas.android.com/apk/res/android">
<application android:theme="@style/AppTheme" android:label="@string/app_name" android:icon="@drawable/ic_launcher">
<activity android:label="@string/title_activity_main" android:name=".MainActivity" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
public void onStart() {
super.onStart();
[B] Intent LaunchSysServ = new Intent("com.spritemobile.system.backup.SystemService");
startService(LaunchSysServ);
Intent intent = new Intent();
intent.setAction("com.spritemobile.system.backup.ISystemService");
bindService(intent, connection, BIND_AUTO_CREATE);[/B]
}

<uses-permission android:name="com.spritemobile.system.backup.USE_SERVICE" />
[2013-02-17 00:10:17 - SystemBackupTest] Uploading SystemBackupTest.apk onto device 'LG-MS870-2aa127c'
[2013-02-17 00:10:17 - SystemBackupTest] Installing SystemBackupTest.apk...
[2013-02-17 00:10:19 - SystemBackupTest] Success!
[2013-02-17 00:10:19 - SystemBackupTest] Starting activity com.example.systembackuptest.MainActivity on device LG-MS870-2aa127c
[2013-02-17 00:10:20 - SystemBackupTest] ActivityManager: Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=com.example.systembackuptest/.MainActivity }
Thank you for that. I tore it apart and they do have different permissions. The older version doesn't have:
It would seem that SpriteMobile added a new permission on purpose.Code:<uses-permission android:name="com.spritemobile.system.backup.USE_SERVICE" />
I tried adding all the perms to the manifest and I still get stuck...
Code:[2013-02-17 00:10:17 - SystemBackupTest] Uploading SystemBackupTest.apk onto device 'LG-MS870-2aa127c' [2013-02-17 00:10:17 - SystemBackupTest] Installing SystemBackupTest.apk... [2013-02-17 00:10:19 - SystemBackupTest] Success! [2013-02-17 00:10:19 - SystemBackupTest] Starting activity com.example.systembackuptest.MainActivity on device LG-MS870-2aa127c [2013-02-17 00:10:20 - SystemBackupTest] ActivityManager: Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=com.example.systembackuptest/.MainActivity }
Thank you for that. I tore it apart and they do have different permissions. The older version doesn't have:
It would seem that SpriteMobile added a new permission on purpose.Code:<uses-permission android:name="com.spritemobile.system.backup.USE_SERVICE" />
I tried adding all the perms to the manifest and I still get stuck...
Code:[2013-02-17 00:10:17 - SystemBackupTest] Uploading SystemBackupTest.apk onto device 'LG-MS870-2aa127c' [2013-02-17 00:10:17 - SystemBackupTest] Installing SystemBackupTest.apk... [2013-02-17 00:10:19 - SystemBackupTest] Success! [2013-02-17 00:10:19 - SystemBackupTest] Starting activity com.example.systembackuptest.MainActivity on device LG-MS870-2aa127c [2013-02-17 00:10:20 - SystemBackupTest] ActivityManager: Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=com.example.systembackuptest/.MainActivity }
.class public final Lcom/spritemobile/system/backup/Manifest$permission;
.super Ljava/lang/Object;
.source "Manifest.java"
# annotations
.annotation system Ldalvik/annotation/EnclosingClass;
value = Lcom/spritemobile/system/backup/Manifest;
.end annotation
.annotation system Ldalvik/annotation/InnerClass;
accessFlags = 0x19
name = "permission"
.end annotation
# static fields
.field public static final USE_SERVICE:Ljava/lang/String; = "com.spritemobile.system.backup.USE_SERVICE"
# direct methods
.method public constructor <init>()V
.locals 0
.prologue
.line 11
invoke-direct/range {p0 .. p0}, Ljava/lang/Object;-><init>()V
return-void
.end method
package com.spritemobile.system.backup;
public final class Manifest
{
public static final class permission
{
public static final String USE_SERVICE = "com.spritemobile.system.backup.USE_SERVICE";
}
}
Good find.Issac, this is a method developed by bin4ry on xda. Maybe it can help you.
http://forum.xda-developers.com/showpost.php?p=31963526&postcount=532

Good find.
Just to add to that... in the link below is the original script in case you need it. The link Mmazz posted is supposed to be a fix for the runme.bat which always fails in the original.
http://forum.xda-developers.com/showthread.php?t=1886460
We tried the original script by bin4ry and did not work, but have not tried it with this fix.

I don't know anything about this, just stumbled onto it...
***Unlock Root***
---Official site
Downloady---UnlockRoot/UnlockPhone/UnlockRom---Android Root
---On XDA
http://forum.xda-developers.com/showthread.php?t=1436426
---On Youtube
Unlock Root (Android) - YouTube
Maybe that's why they also offer a bootloader unlock on their site.from what i read int hat thread it looks like you have to have an unlocked bootloader

Maybe that's why they also offer a bootloader unlock on their site.
Not that I expect any of this to work since these are universal methods.

What about if we use a back up already made by the backup apk in the spirit and tweak it that when you restore it can get temp root
Does this make sense???
Not that this helps us... or maybe it does, but check this out.
http://androidforums.com/5550376-post436.html

IndeedI think he's hinting for us to buy him one ha![]()