GUIDE HOW TO PORT SOCIALIFE TO WORK ON ALL DEVICES FOR DEV
Here is guide for you to port Socialife, this guide is for new Socialife, just little different with old Socialife
Step 1 :
- Decompile Socialife using apktool with framework from Xperia 2013 Devices
- Open Android_manifest using notepad++ then remove this line and save
Code:
<uses-library android:name="com.sony.device" android:required="true" />
Step 2 :
- Go to folder smali\com\sony\nfx\app\sfrc\scp
- Open c.smali using notepad++ then find this line
Code:
sget-object v3, Landroid/os/Build;->MODEL:Ljava/lang/String;
Replace with this line and save
Step 3 :
New Socialife doesn't support ICS ROM so you need to change sdk version from Android_manifest or apktool.yml
Code:
minSdkVersion: '[COLOR="Red"]16[/COLOR]'
targetSdkVersion: '17'
Change to this number
Code:
minSdkVersion: '[COLOR="Red"]14[/COLOR]'
targetSdkVersion: '17'
Save all change, then recompile
Don't forget to sign and zipalign again
That's it, Enjoy!!! :laugh: :victory: