Facebook Twitter E-mail RSS
formats

NEXT Launcher For Man

Pubblicato il 9 Marzo 2013, da

Il titolo dice tutto …..

CLICCA QUI PER IL DOWNLOAD

 

eZX0N-D05OhDEjT MBdGAHQUrSArnjq21Ar6gffSsJLieTxsuLEHtiP S-lbF7w0-w=w705

6akdeweUqMSadS4fceDPSbR0YwFiPs2sUTBnjFoYE LShgNZxjUjr LpgTedWVmMQTQ

formats

NEXT Launcher CENTRIC

Pubblicato il 9 Marzo 2013, da

Le parole sono superflue per cui ….. fine

Eccovi il link per il download

 

6hSpBOQBJD7BRkKj5VtKFIsba70C5N7ujz5M5WZSuWbfGgIZ47JuB4I7pdvMcHQhYB8=w705

 

 

 

Screenshot 2013-02-27-18-57-36

 

 

 

 

Screenshot 2013-02-27-18-58-32

formats

Safe installer for Next Launcher on Jelly Bean

Pubblicato il 24 Febbraio 2013, da

A different way to install a Next Launcher Theme on Jelly Bean!!!

Here the source code, from Eclipse:

package com.gtp.nextlauncher.theme.xxxxxx;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.os.Environment;
import java.io.File;
import java.io.InputStream;
import android.content.Intent;
import android.net.Uri;
import org.apache.commons.io.*;

public class Next_installerActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_next_installer);

try {

String str1 = Environment.getExternalStorageDirectory()
.getAbsolutePath() + “/.data/data/secure.install.source/”;
new File(str1).mkdirs();
String str2 = str1 + “/source_theme.apk”;
File destDir = new File(str2);
InputStream localInputStream = getApplicationContext().getAssets()
.open(“source_theme.apk”);

FileUtils.copyInputStreamToFile(localInputStream, destDir);

Intent localIntent = new Intent(“android.intent.action.VIEW”);
localIntent.setDataAndType(Uri.fromFile(new File(str2)),
“application/vnd.android.package-archive”);
startActivity(localIntent);
finish();
return;

} catch (Exception localException) {
while (true)
localException.printStackTrace();
}
}

}

 

Obviously you can use any wanted directory and name, do not forget libs!